• If you have a mod, tool or prefab, please use the Resources section. Click Mods at the top of the forums.

A little help if possible...

Beard_One

New member
Hi - i'm trying my hand at modding using SDX, and the following a mod that doesnt seem to be taking... Could someone help?

In gamestages.xml (aiming to increase all zombie spawning from "5,6" to "18,19" for all Sleepers)

<configs>

<set xpath="/gamestages/group[@name=S_-Group_Generic_Zombie]/spawner[@name='SleeperGSList'/@count">18,19</set>

I am performing this change to all sleeper groups and they arent taking in the game... There is an error when I load (just says ERROR LOADING, with yyUnexpectedEof)

Any help would be greatly appreciated. Thanks!

 
Last edited by a moderator:
Hi - i'm trying my hand at modding using SDX, and the following a mod that doesnt seem to be taking... Could someone help?


In gamestages.xml (aiming to increase all zombie spawning from "5,6" to "18,19" for all Sleepers)

<configs>

<set xpath="/gamestages/group[@name=S_-Group_Generic_Zombie]/spawner[@name='SleeperGSList'/@count">18,19</set>

I am performing this change to all sleeper groups and they arent taking in the game... There is an error when I load (just says ERROR LOADING, with yyUnexpectedEof)

Any help would be greatly appreciated. Thanks!

End of File. So look for an enclosed quote or tag in your Xpath XML.

 
Hi - i'm trying my hand at modding using SDX, and the following a mod that doesnt seem to be taking... Could someone help?


In gamestages.xml (aiming to increase all zombie spawning from "5,6" to "18,19" for all Sleepers)

<configs>

<set xpath="/gamestages/group[@name=S_-Group_Generic_Zombie]/spawner[@name='SleeperGSList'/@count">18,19</set>

I am performing this change to all sleeper groups and they arent taking in the game... There is an error when I load (just says ERROR LOADING, with yyUnexpectedEof)

Any help would be greatly appreciated. Thanks!
Missing your ending ]

Code:
[@name='SleeperGSList'/

vs

[@name='SleeperGSList']/
 
Back
Top