Post subject: Cheat Editor problem (PSXjin)
filwac
He/Him
Joined: 12/12/2009
Posts: 29
Location: Forever floating in a secret world
i can't access the cheat editor. it's grayed out. i can hit ctrl-c to open it but can't add anything. I'm trying to use the infinite ability stones everyone code for ff9. 50000990 0000 3008B2A 0063 i read something about using lua script to use gs codes. how would i do this? or enable the editor? I'm using PSXjin v2.0.2 svn0
Waiting takes too long
Warepire
He/Him
Editor
Joined: 3/2/2010
Posts: 2174
Location: A little to the left of nowhere (Sweden)
It doesn't work. You can't set memory addresses to values through RAM Search either. It's probably not implemented.
Lil_Gecko
He/Him
Player (94)
Joined: 4/7/2011
Posts: 520
Strange. The cheat editor works for me with CTRL+C. But you have to adapt the gameshark code. 50 means it's a multi-lines code. 0009 is the number of lines. 90 is the difference between 2 lines. 0000 is the difference of value between 2 lines. Finally 30 means it's a one byte line. 08B2A3 is the adress of the first line. 0063 is the value of the first line. (in hexa so 0x0063 = 99) That means you must enter 8B2A3 with value 99 8B333 with value 99 8B3C3 with value 99 and so on by adding 00090 to the adress. Or this lua script should work too :
while true do
for i=0,8 do
memory.writebyte(0x8b2a3+i*0x00090,99);
end;
emu.frameadvance();
end;
filwac
He/Him
Joined: 12/12/2009
Posts: 29
Location: Forever floating in a secret world
well the script didn't work. ambiguous syntax (function call x new statement) near '(' . i just did the hex adding 00090 to the address and got it. thanks for the help!
Waiting takes too long