...huh. There's a special character there that looks like white space.
Code:
Despite going high tech, {self:PRONOUN}'s rig of equipment {self:possessive} fancy
Should be safe to just delete the white spaces between rig of equipment and {self
ossessive} fancy and then add a real whitespace with your own spacebar. That bit of code is only supposed to be a string so deleting the character shouldn't harm anything.
Its odd though. That line is not quite the same in my game and I don't think I've ever touched those lines. Weird. Granted it's been forever since I downloaded it but it doesn't look like it was ever changed if I'm reading github's history correctly.
te
if i delete the character (in java editor "?" is a "-"), i will get new error in other lines.
build-project:
[echo] nightgamesmod: C:\Users\...\Desktop\nightgamesmod-master1\nightgamesmod-master\build.xml
[javac] Compiling 1171 source files to C:\Users\...\Desktop\nightgamesmod-master1\nightgamesmod-master\build\classes
[javac] C:\Users\...\Desktop\nightgamesmod-master1\nightgamesmod-master\NightgamesMod\nightgames\characters\Character.java:150: error: cannot find symbol
[javac] protected CombatStats combatStats; //TODO: Finish class and implement - Constructors, clones, and being able to serialize members. - DSM
[javac] ^
[javac] symbol: class CombatStats
[javac] location: class Character
[javac] C:\Users\...\Desktop\nightgamesmod-master1\nightgamesmod-master\NightgamesMod\nightgames\characters\Character.java:219: error: cannot find symbol
[javac] public CombatStats getCombatStats() { return combatStats; } public void setCombatStats(CombatStats combatStats) { this.combatStats = combatStats; }
[javac] ^
[javac] symbol: class CombatStats
[javac] location: class Character
[javac] C:\Users\...\Desktop\nightgamesmod-master1\nightgamesmod-master\NightgamesMod\nightgames\characters\Character.java:219: error: cannot find symbol
[javac] public CombatStats getCombatStats() { return combatStats; } public void setCombatStats(CombatStats combatStats) { this.combatStats = combatStats; }
[javac] ^
[javac] symbol: class CombatStats
[javac] location: class Character
[javac] C:\Users\...\Desktop\nightgamesmod-master1\nightgamesmod-master\NightgamesMod\nightgames\characters\Character.java:212: error: cannot find symbol
[javac] this.combatStats = new CombatStats(); //TODO: Reading, writing, cloning?
[javac] ^
[javac] symbol: class CombatStats
[javac] location: class Character
[javac] 4 errors
CombatStats is the problem.
i use the DarkSinfulMage version with eclipse IDE. maybe is use a wrong JAVA version or i do something wrong? i use the build.xml in the main folder.