Advertisement
Guest User

Scripts for RTM Tools

a guest
Jan 21st, 2014
259
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.07 KB | None | 0 0
  1. Just public shit:
  2. public static uint ProcessID;
  3. public static uint[] processIDs;
  4. public static string snresult;
  5. private static string usage;
  6. public static string Info;
  7. public static PS3TMAPI.ConnectStatus connectStatus;
  8. public static string Status;
  9. public static string MemStatus;
  10.  
  11. Name Changer(all cods):
  12. byte[] buffer = Encoding.ASCII.GetBytes(textBox1.Text); Array.Resize(ref buffer, buffer.Length + 1); PS3TMAPI.ProcessSetMemory(0, PS3TMAPI.UnitType.PPU, ProcessID, 0, 0x[offset], buffer);
  13.  
  14. Main offset adding script:
  15. byte[] [name of mod here] = new byte[] { 0x00 }; PS3TMAPI.ProcessSetMemory(0, PS3TMAPI.UnitType.PPU, ProcessID, 0, OFFSET HERE, [name of mod here]);
  16.  
  17. Connect PS3:
  18. PS3TMAPI.InitTargetComms(); PS3TMAPI.Connect(0, null); PS3TMAPI.GetProcessList(0, out processIDs); ulong uProcess = processIDs[0]; ProcessID = Convert.ToUInt32(uProcess);
  19.  
  20. Attach PS3:
  21. PS3TMAPI.ProcessAttach(0, PS3TMAPI.UnitType.PPU, ProcessID); PS3TMAPI.ProcessContinue(0, ProcessID);
  22.  
  23. Have fun!! Follow the tutorial exactly for your first rtm tool and it should work at the first try!!!
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement