i got it working
so you changed mov [rcx+18],#999999 to mov [Money],rcx
but when i tried to do this on another script i got an error
Code: Select all
[ENABLE]
//code from here to '[DISABLE]' will be used to enable the cheat
alloc(newmem,2048,Artisan.Neptunia.UI:DataContext:PopuplatoreInventory+66)
label(returnhere)
label(originalcode)
label(exit)
newmem: //this is allocated memory, you have read,write,execute access
//place your code here
originalcode:
mov [rcx+1C],#999999
movsxd rcx,dword ptr [rcx+1C]
mov [rax+1C],ecx
exit:
jmp returnhere
Artisan.Neptunia.UI:DataContext:PopuplatoreInventory+66:
jmp newmem
nop
nop
returnhere:
[DISABLE]
//code from here till the end of the code will be used to disable the cheat
dealloc(newmem)
Artisan.Neptunia.UI:DataContext:PopuplatoreInventory+66:
movsxd rcx,dword ptr [rcx+1C]
mov [rax+1C],ecx
//Alt: db 48 63 49 1C 89 48 1C
i changed it to
Code: Select all
[ENABLE]
//code from here to '[DISABLE]' will be used to enable the cheat
alloc(newmem,2048,Artisan.Neptunia.UI:DataContext:PopuplatoreInventory+66)
label(returnhere)
label(originalcode)
label(exit)
label(Gem)
registersymbol(Gem)
newmem: //this is allocated memory, you have read,write,execute access
//place your code here
originalcode:
mov [Gem],rcx
movsxd rcx,dword ptr [rcx+1C]
mov [rax+1C],ecx
exit:
jmp returnhere
Artisan.Neptunia.UI:DataContext:PopuplatoreInventory+66:
jmp newmem
nop
nop
returnhere:
[DISABLE]
//code from here till the end of the code will be used to disable the cheat
dealloc(newmem)
Artisan.Neptunia.UI:DataContext:PopuplatoreInventory+66:
movsxd rcx,dword ptr [rcx+1C]
mov [rax+1C],ecx
//Alt: db 48 63 49 1C 89 48 1C
Not all code is injectable.
(Error in line 7 (label(Gem)) :label Gem is not defined in the script)
Are you sure you want to edit it to this?
what is the problem