IVI40A3Fusionz
Active Member
Full Credits to PCFreak It Was Originally Posted by Him On NGU!
If anyone has anything I should add, let me know.
So a few things you should NOT do in XML (PCFreaks generator).
•Do NOT attempt to put unlock or prestige codes as a menu, sub-menu, or menu item. They will NEVER WORK.
Setplayerdata CAN NOT run in game and I have yet to find a work around.
•Do not use the "&" symbol. It seems xml parsers (programs that read XML and process it) don't like the use of it. Just use the "and" word.
Heres what I got when using the symbol:
•Do NOT use double quotes in XML. My generator auto adds that, so if you put then in yourself, you will break the syntax in the CFG.
•Do not try using special characters in XML, as you can get weird errors from the parsing.
What NOT to do in a Mod Menu PERIOD:
•Do NOT attempt to put unlock or prestige codes as a menu, sub-menu, or menu item. They will NEVER WORK.
Setplayerdata CAN NOT run in game that why you need to modify it by adding disconnect.
•Do NOT use double quotes while setting a variable string, it breaks syntax. Example:
If anyone has anything I should add, let me know.
So a few things you should NOT do in XML (PCFreaks generator).
•Do NOT attempt to put unlock or prestige codes as a menu, sub-menu, or menu item. They will NEVER WORK.
Setplayerdata CAN NOT run in game and I have yet to find a work around.
•Do not use the "&" symbol. It seems xml parsers (programs that read XML and process it) don't like the use of it. Just use the "and" word.
Heres what I got when using the symbol:
Code:
xmlParseEntityRef: no name
•Do NOT use double quotes in XML. My generator auto adds that, so if you put then in yourself, you will break the syntax in the CFG.
•Do not try using special characters in XML, as you can get weird errors from the parsing.
What NOT to do in a Mod Menu PERIOD:
•Do NOT attempt to put unlock or prestige codes as a menu, sub-menu, or menu item. They will NEVER WORK.
Setplayerdata CAN NOT run in game that why you need to modify it by adding disconnect.
•Do NOT use double quotes while setting a variable string, it breaks syntax. Example:
Code:
set a "clantag "abcd" " <-- bad syntax on CFG even though this is not programming.