Advertisement
DeathRGH

Modern Warfare Remastered 1.07

Feb 17th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 1.46 KB | None | 0 0
  1. //default_mp.elf
  2.  
  3. 0xC83194 //fps || 80 78 10 01
  4. 0xFBC8B6 //fps string
  5.  
  6. 0x75CFBA0 // gEntity
  7. 0x2E0 //index
  8.  
  9. 0x75CFD70 //player health
  10.  
  11.  
  12.  
  13. 0x77429CC //playerState
  14. 0x5000 //index
  15.  
  16. 0x77429CF //client freeze (0x0F - frozen) || (0x00 - unfrozen)
  17. 0x7747322 //client name
  18.  
  19.  
  20.  
  21.  
  22.         #region Modern Warfare
  23.  
  24.             //MP
  25.             MWR_MP_1_07_clientIndex = 0x5000,
  26.             MWR_MP_1_07_playerstate = 0x77429CC - 0x400000,
  27.  
  28.             MWR_MP_1_07_client_freeze = MWR_MP_1_07_playerstate + 0x03, //(0x0F - frozen) || (0x00 - unfrozen)
  29.             MWR_MP_1_07_client_redBoxes = MWR_MP_1_07_playerstate + 0x10, //(0x10 - red boxes) || (0x08 - infrared) || (0x18 - both) || (0x00 - default)
  30.             MWR_MP_1_07_client_x = MWR_MP_1_07_playerstate + 0x2C,
  31.             MWR_MP_1_07_client_y = MWR_MP_1_07_playerstate + 0x30,
  32.             MWR_MP_1_07_client_z = MWR_MP_1_07_playerstate + 0x34,
  33.             MWR_MP_1_07_ammo1 = MWR_MP_1_07_playerstate + 0x42C,
  34.             MWR_MP_1_07_ammo2 = MWR_MP_1_07_playerstate + 0x444,
  35.             MWR_MP_1_07_ammo3 = MWR_MP_1_07_playerstate + 0x45C,
  36.             MWR_MP_1_07_ammo4 = MWR_MP_1_07_playerstate + 0x474,
  37.             MWR_MP_1_07_ammo5 = MWR_MP_1_07_playerstate + 0x48C,
  38.             MWR_MP_1_07_client_name = MWR_MP_1_07_playerstate + 0x4956,
  39.             MWR_MP_1_07_client_mFlag = MWR_MP_1_07_playerstate + 0x4BD4, //(0x00 - default) || (0x01 - noclip) || (0x02 - ufo) || (0x04 - freeze)
  40.  
  41.         #endregion
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement