guild you explain in short what programs you used to find and edit the mem in the first place and how you did it .
would love to learn it but need a small tut
Join Date : Jan 2011
Location : somewhere In Ireland
Posts : 2,733
Array
Re: Resident Evil Operation Racoon City Trainer
Originally Posted by cornnatron
guild you explain in short what programs you used to find and edit the mem in the first place and how you did it .
would love to learn it but need a small tut
There is a tool called SimpleDump360 on the site - Use that to dump the physical ram 512mb
Then use hex editor to look for what you are looking for - Beware of pointers
Download the source code of this editor:
//Write current xp
/*readWriter.Position = 0;
//Pointer to the value = 8211EF4C5C242888000000030000000000000000
uint address = 0xDA1D0000 + (uint)(readWriter.SearchHexString("8211EF4C5C242888000000030000000000000000") - 0x4E);
//Write stat
byte[] value = BitConverter.GetBytes(int.Parse(currentXPNumericUpDown.Value.ToString()));
Array.Reverse(value);//reverse byte
WriteMemory(address, ISOLib.Conversions.Hex.ToHexString(value));
//Write Total ex earned
value = BitConverter.GetBytes(int.Parse(totalXPEarnedNumericUpDown.Value.ToString()));
Array.Reverse(value);//reverse byte
address -= 40; //Adjust addess for the next offset
WriteMemory(address, ISOLib.Conversions.Hex.ToHexString(value));
//Close Stream
*/
//REPLACE 0xDEAC0BAC with your ADDRESS and 000000FF WI|TH VALUES
WriteMemory(0xDEAC0BAC, "000000FF");//255 items
readWriter.Close();
I am sorry but that is as much as I can explain the rest is up to you and Google. If you find the pointer let me know please
Downloads : 69 || Uploads : 22 || Rep Power : 6983 || Posts : 2,733 || Thanks : 557 ||
Thanked 2,978 Times in 735 Posts
## If you don't Contribute || Help - Why should I Contribute || Help - Leechers Should not be helped ##
could you tell me how to use that because i am completely lost
did manage to get 3 complete dumps with different xp on screen (bought 2 weapons) but dont know how to find anything
or poke anything if i find something dont got a clue on what to enter and cant really find any proper info on it.
Join Date : Aug 2011
Location : Italy
Age : 42
Posts : 414
Array
Re: Resident Evil Operation Racoon City Trainer
Please PureIso can you explain how to calculate the pointer of a game, there's no tutorial for xbox out there only for pc,
and that's another way to do this.
Please just a basic tutorial it would be very helpful for all.
Thanx for your great works
And another question how can tool detect while the address is shifted if the ram contains more 8211EF4C5C242888000000030000000000000000 strings???