 |
Cheat Engine The Official Site of Cheat Engine
|
View previous topic :: View next topic |
Author |
Message |
martysama0134 How do I cheat?
Reputation: 0
Joined: 21 May 2012 Posts: 2
|
Posted: Mon May 21, 2012 6:03 am Post subject: [How-To]Final Fantasy VII/VIII/IX - All items One click |
|
|
Sorry, but I don't know if this is the right section!
Introduction:
The addresses used are for epsxe 7.1 (EU), but if you follow these videotutorials you can also have all the items independently of the platform/emulator or the version used! (you must only change the starting address!)
##Final Fantasy VII
Videotutorial: youtube . com / watch?v=6FWvMNSQOwc
Little explanation:
-Set 'value type' => 'Byte' and follow the video! I used some potion to change various addresses.
A item is composed of 6 bytes, example:
Code: | 00 00 01 63 01 08 (0000=potion, 0001=hi-potion)
xx // // // // // = nothing
// xx xx // // // = item id
// // // xx // // = item count
// // // // xx xx = other options |
My quick lua script used:
Code: | local mybaseadd=0x71BEEB
local i1=0x00
local i2=0x00
for i=0,318 do
if(i<=104)or(i>=128)then
if(i>255)then
i1=i-255
i2=0x1
writeBytes(mybaseadd+0x01,i1);
writeBytes(mybaseadd+0x02,i2);
else
writeBytes(mybaseadd+0x01,i);
writeBytes(mybaseadd+0x02,0x00);
end
writeBytes(mybaseadd+0x0003,0x63);
writeBytes(mybaseadd+0x0004,0x01,0x08);
mybaseadd=mybaseadd+0x0006
end
end--[[]]
|
PS: In the game exists more nameless (from 0x69 to 0x7f) items! You don't care if you don't have the inventory fully occupied!
##Final Fantasy VIII
Videotutorial: youtube . com / watch?v=rQ-uPtCkjWA
Little explanation:
-Set 'value type' => 'Byte' and follow the video! I just move some items (potion=1, nothing=0, potion+=2, ecc) to remove some useless addresses found
My quick lua script used:
Code: | local mybaseadd=0x62D0AC
for i=0,197 do
writeBytes(mybaseadd+(i*2),i+1);
writeBytes(mybaseadd+(i*2)+1,0xff);
end |
##Final Fantasy IX
Videotutorial: youtube . com / watch?v=Xkjc_wSQJo0
Little explanation:
-Set 'value type' => 'Byte' and follow the video! I just move some items (potion=EC, nothing=0, ecc) to remove some useless addresses found
My quick lua script used:
Code: | local mybaseadd=0x6404e4
for i=0,253 do
writeBytes(mybaseadd+(i*2),i);
writeBytes(mybaseadd+(i*2)+1,0x63);
end |
Enjoy!
martysama0134
|
|
Back to top |
|
 |
Pingo Grandmaster Cheater
Reputation: 8
Joined: 12 Jul 2007 Posts: 571
|
Posted: Mon May 21, 2012 7:17 am Post subject: |
|
|
Good job, probably should be moved to the tut section.
_________________
|
|
Back to top |
|
 |
ADevilSee How do I cheat?
Reputation: 1
Joined: 27 Dec 2013 Posts: 4
|
Posted: Fri Dec 27, 2013 4:02 pm Post subject: Thank you |
|
|
I would like to say thank you for the ff viii script.. I have adapted it to work with the steam version in another thread. So big thanks martysama0134 (p.s. I tried to post a link in the thread but it wouldnt allow me to post url.. all credit goes to you... very nice script)
|
|
Back to top |
|
 |
codebibi How do I cheat?
Reputation: 0
Joined: 19 Jan 2015 Posts: 1
|
Posted: Mon Jan 19, 2015 9:09 pm Post subject: |
|
|
can you explain more in detail please, i'm a begginer. I don't now how to do a script. I play on pSX emulator, and i does not understand to what corresponds the letter i and finally do we really need to make a sript for the cheat to work ? thanks again and sorry for my bad english
|
|
Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum
|
|