nightmare3 How do I cheat?
Reputation: 0
Joined: 14 Mar 2019 Posts: 3 Location: KSA
|
Posted: Thu Dec 14, 2023 2:06 pm Post subject: need help with scripts |
|
|
ok i have update my pcsx2 to ver 1.7 nightly.
most my code has to be rewrite to pointer style and i have done it.
like this :PS2Mem+36D1B0
now i want to make scripts change the value of address :PS2Mem+36D1B0 to some thing specific.
so:
infinity MP in battles
address :PS2Mem+A72E7C
[ENABLE]: 00000000
[DISABLE]: FF FF 63 24
change the code manual or script is ok.
i tried like this:
Code: | [ENABLE]
alloc(newmem,512)
label(infinityMP)
registersymbol(infinityMP)
newmem:
PS2Mem+A72E7C:
infinityMP:
dq 00000000
[DISABLE]
//code from here till the end of the code will be used to disable the cheat
newmem:
PS2Mem+A72E7C:
infinityMP:
dq 2463FFFF
unregistersymbol(infinityMP)
unregistersymbol(infinityMP) |
the problem is changing the address value is not allow all the time. read only sometimes.
i have read about full access command but do not know how to made it here.
|
|