Posts: 13
Threads: 5
Joined: May 2015
Reputation:
0
I am read the guide to see how it set it up and I read other guide to set it up a different way and it seem that it is not work. The program is not loading the cheat at all. I am using this guide to simplify the process, https://www.youtube.com/watch?v=N43EGH4DeoA
And it still not working. I changed the folder to Cheats and Cheats-ws. It is just not loading the cheat at all. here the patch is what i set up.
Code: gametitle=Castlevania Curse of Darkness [SLUS 21168] (U) [3A446111]
//Infinite HP
patch=1,EE,00AEFAE8,extended,000003E7
//Infinite Gold
patch=1,EE,00AF8014,extended,0000FFFF
//Pickup Item For Max Quantity
patch=1,EE,0045CD58,extended,24100063
What did I did wrong?
Sponsored links
Posts: 8.030
Threads: 278
Joined: Feb 2009
Reputation:
344
Don't know if this is the problem but the codes that way,will not work correctly
Code: gametitle=Castlevania Curse of Darkness [SLUS 21168] (U) [3A446111]
//Infinite HP
patch=1,EE,10AEFAE8,extended,000003E7
//Infinite Gold
patch=1,EE,10AF8014,extended,0000FFFF
//Pickup Item For Max Quantity
patch=1,EE,2045CD58,extended,24100063
Posts: 13
Threads: 5
Joined: May 2015
Reputation:
0
05-28-2015, 01:41 AM
(This post was last modified: 05-28-2015, 02:33 AM by aquawho.)
(05-28-2015, 12:54 AM)vsub Wrote: Don't know if this is the problem but the codes that way,will not work correctly
Code: gametitle=Castlevania Curse of Darkness [SLUS 21168] (U) [3A446111]
//Infinite HP
patch=1,EE,10AEFAE8,extended,000003E7
//Infinite Gold
patch=1,EE,10AF8014,extended,0000FFFF
//Pickup Item For Max Quantity
patch=1,EE,2045CD58,extended,24100063
Can you explain in what way it that it won't work? It based on Codebreaker and I use PCSX2CE to do the job. That is the result they gave me.
Finally got it to working. I am using MutliConverter and it work very well. So perfect it is working as it should
Posts: 8.030
Threads: 278
Joined: Feb 2009
Reputation:
344
While using "extended",the first digit of the address determine how many addresses pcsx2 will write to.
0 - means 1
1 - means 2
2 - means 4
//Infinite HP
patch=1,EE,00AEFAE8,extended,000003E7 - here you are supposed to write to two addresses to get the 999 value
//Infinite Gold
patch=1,EE,00AF8014,extended,0000FFFF - here you are supposed to write to two addresses to get the 65535 value
//Pickup Item For Max Quantity
patch=1,EE,0045CD58,extended,24100063 - here you are supposed to write to four addresses to get that effect
Posts: 13
Threads: 5
Joined: May 2015
Reputation:
0
(05-28-2015, 05:40 AM)vsub Wrote: //Pickup Item For Max Quantity
patch=1,EE,0045CD58,extended,24100063 - here you are supposed to write to four addresses to get that effect
Oh I see. It what is it convert to that code. MultiConverter show that code as it is.
Code: //Pickup Item For Max Quantity
patch=1,EE,2045CD58,extended,24100063
This would explain why it is not working. So basically I have to change it to 0 to make it work with one line of code?
Posts: 8.030
Threads: 278
Joined: Feb 2009
Reputation:
344
This is your code(from the first post)
//Pickup Item For Max Quantity
patch=1,EE,0045CD58,extended,24100063
and it reacquires 2 not 0
|