Quote:
Originally Posted by Hostile";p="
I also noticed alot of GLA comments in the createctate.ini. Another question is why does the weapon ini state a phrase for some ranges like Legolas bow but a numeral for others like Golems weapon?
I found no reference to the "named" ranges anywhere.
|
I believe this is because the words or phrases are actually defined in a header file.
Code:
#ifndef blah
#define blah 5
#endif
Then you would be able to to use blah instead of 5. So you could use this in multiple spots and then change all of them by simply changing blah's value in the header file (.h). This is C code btw.