I need to auto-spawn though, so the gold will appear again after say, 6 hours. Its for my welcome room. I want to give the player some gold to start.
 
CharacterCreation shows they get 1000 gold to start
This can be changed-but this is a back item so it can't be to heavy so they can move :)
PackItem(new RedBook("a book", m.Name, 20, true));
PackItem(new Gold(1000)); // Starting gold can be customized here
PackItem(new Candle());
 
add xmlspawner and set it to spawn gold, I'm not entirely sure how to set the amount off the top of my head.
but you can set it to have a min/max respawn time. and if you set it to movable you can drop the xmlspawner inside a chest and it will spawn gold in the chest
 
Back