Advertisement
BaSs_HaXoR

MW3 C# Stuph

Jul 7th, 2014
536
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.53 KB | None | 0 0
  1. -Credits to Sticky-
  2. C# Clone Player:
  3. public static void clonePlayer(Int32 client)
  4. {
  5.     RPC.Call(0x180F48, new Object[] { client << 16 });
  6. }
  7.  
  8.  
  9. C# Unlockall:
  10. public static void UnlockAll()
  11. {
  12.     PS3.SetMemory(0x1C1CFB0, new byte[] { 0x13, 0x02 });
  13.  
  14.     for (uint i = 0; i < 0x200; i += 2)
  15.     {
  16.         PS3.SetMemory(0x1C1C0B9 + i, new byte[] { 0x1E, 0xB8 });
  17.         PS3.SetMemory(0x1C1E0A5 + i, new byte[] { 0xFF });
  18.     }
  19.     for (uint i = 0; i < 0x1064; i++)
  20.         PS3.SetMemory(0x1C1CFF7 + i, new byte[] { 0x0A });
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement