Takethemoney wrote: ↑Tue Sep 26, 2017 7:34 am
Is there anyway you can add a script to set money back to like 0 or like 50 please?!?!?
67k I want to have all that money for the whole game.....
use the money pointer provided by CompactDisk's Table extension. it's on the first page, 4th post.
alternatively, edit the auto assembly script. open it and change this part:
// Ducats
cmp dword ptr [iEnableMMD],0
je _MonPR00 // Jump if feature is disabled
mov eax,#67000000 // Get minimum value (67000)
edit it, eg, to this:
// Ducats
cmp dword ptr [iEnableMMD],0
je _MonPR00 // Jump if feature is disabled
mov eax,#9000000 // Get minimum value (67000)
so the min. value of ducats'll be 9000, instead of 67000.
make sure you edit it before checking it.