Halp!

TheCrayfish

Chieftain
Joined
Aug 18, 2011
Messages
7
Good day to you all. This is my first post on these forums, so if this is in the wrong place, don't hesitate to unleash a torrent of rage in my direction:D. My problem is this: Modbuddy is awesome, but apparently I'm not. Every time I try to use the "Build" option (because my mod-my horrible, horrible, properly-made but boring mod-is done), I get the exact same error message. I've even tried completely reinstalling CIV5. Here's the error message:
An unexpected token ")" was found at character position 68 in condition "'($(PackageMod)' != 'false' And '$(Configuration)' != 'Deploy Only')".



HELP ME!


EDIT: Please.
 
1) Stop ModBuddy
2) Open the file "C:\Program Files\Steam\SteamApps\common\sid meier's civilization v sdk\ModBuddy\Build\Civ5Mod.targets" (NOT the file given in the error message!)
3) The condition should read
Code:

('$(PackageMod)' != 'false' And '$(Configuration)' != 'Deploy Only')

ie the first two characters are swapped
4) Save the change
5) Restart ModBuddy, you will get an "updating dialog"

got the same error and this got it working. pulled it from here:

http://forums.2kgames.com/showthread.php?112785-Steam-has-finished-downloading-Civ-V-SDK
 
Thank you very much.

You're Welcome =)

my english is not very good what you mean by the two first character

Can you write me how it shoulb be read with correction?

PLEASE

okay, no problem.

right now the line that causes the error is:

'($(PackageMod)' != 'false' And '$(Configuration)' != 'Deploy Only')

The correct line is:

('$(PackageMod)' != 'false' And '$(Configuration)' != 'Deploy Only')

the term character is referring to any single letter or symbol on the line. The first two charters are swapped in the error line, it starts with these two characters: '(

The first two characters need to be switched to fix it. It should start: ('

You can just copy the 2nd line and paste it into the Civ5Mod.targets file, just make sure to replace the line between the opening " and closing "

Also your English is very good, the word "character" is used a lot in English, it can mean some very different things.
 
Back
Top Bottom