As I mentioned in a previous post there is a strange bug with eduke32 and space characters.
Space characters from different character encoding cause errors. Replacing these space characters with Western (ISO-8859-1) character encoding it fixes those errors.
Thus to all of you con coders be careful when you hit SPACEBAR, first make sure you have Western (ISO-8859-1) character encoding and English. (ISO-8859-1 is a superset of ANSI/ASCII)
The same bug may happen with TAB. But haven't tested it yet. I'm trying to fix spaces and replace them with ANSI/ASCII character encoding spaces.
A very classic example of this stupid behavior of eduke32 is Blood Weapons addon by M210. There are so many errors there and all are related with wrong character encoding in space characters.
In the end the situation became very silly. There are so many errors with the space characters.
Here is the fixed EDUKE.con for Blood Weapons mod 1.02
BLWEAP_fix.zip
http://www.sendspace.com/file/3m6x6m
Here is the original EDUKE.con for you to compare:
EDUKE.rar
http://www.sendspace.com/file/ze9i2j
Don't do a text compare. Do a binary compare. The text is the same. The only thing that is changed is the space characters (now they are ANSI/ASCII).
The first errors appear in line 1028. If you check the fixed and the original EDUKE.con, the line 1028 in both of them is the same, but one or more space characters have different encoding. The same happens to other lines.