Post: Help with C#
01-29-2015, 11:42 PM #1
Britis-
Bounty hunter
(adsbygoogle = window.adsbygoogle || []).push({}); Hello NGU, so I'm learning to make a RTM tool, and I have a doubt.
So basically this is
"the "main code thing"
Originally posted by another user
byte[] lol = new byte[] { 0x00 }; PS3TMAPI.ProcessSetMemory(0, PS3TMAPI.UnitType.PPU, ProcessID, 0, OFFSET HERE, lol);


And I was looking for some offsets and found that godmode is:
Originally posted by another user
0x0FCA41E

So to set it on, it would be ("FF for god mode"), ("00 to take it off")

Then my code look like this:
Originally posted by another user
byte[] Godmodeon = new byte[] { 0xFF }; PS3TMAPI.ProcessSetMemory(0, PS3TMAPI.UnitType.PPU, ProcessID, 0, 0x0FCA41E, Godmodeon);

And off:
Originally posted by another user
byte[] Godmodeoff = new byte[] { 0x00 }; PS3TMAPI.ProcessSetMemory(0, PS3TMAPI.UnitType.PPU, ProcessID, 0, 0x0FCA41E, Godmodeoff);


So I went to test it, but no sucess, if anyone could help me it would be awesome, thanks.
(adsbygoogle = window.adsbygoogle || []).push({});
01-29-2015, 11:49 PM #2
iTпDM
Vault dweller
why you not use iMCSx's PS3Lib v4.3 ?

like this :

this Code is working 100% God Mode
    
byte[] GodMode = new byte[] { 0xFF };
PS3.SetMemory(0x0FCA41E , GodMode);


you must use iMCSx's PS3Lib v4.3 for this

The following user thanked iTпDM for this useful post:

Britis-
01-29-2015, 11:59 PM #3
Britis-
Bounty hunter
Got it, thanks for you help manHappy
01-30-2015, 01:22 AM #4
One
At least I can fight
    
PS3API PS3 = new PS3API();

PS3.SetMemory(0x0FCA41E, new byte[] { 0xff });

The following user thanked One for this useful post:

Britis-
01-30-2015, 12:08 PM #5
iTпDM
Vault dweller
Originally posted by one View Post
    
PS3API PS3 = new PS3API();

PS3.SetMemory(0x0FCA41E, new byte[] { 0xff });


already posted it
01-30-2015, 05:00 PM #6
Geo
Don't Believe The Title
Originally posted by DM View Post
already posted it


The second way removes unnecessary lines from code, keeps it neater :p
01-30-2015, 05:55 PM #7
Britis-
Bounty hunter
If you have free time, could you guys add me on skype and asnwer a few questions i've got?

Skype: skon.zao

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo