How would I make a script which adds gold to my character each day to simulate payment. I tried having a look at all the shop mods but I couldn't figure out a way to do it.
How would I make a script which adds gold to my character each day to simulate payment. I tried having a look at all the shop mods but I couldn't figure out a way to do it.
Use the global variable Day and a short variable in your script to check it
like this
short currentday
if ( currentday != Day )
player->additem "gold_001" 100
endif
set currentday to Day