intent

Black Ops 2 1.19 Smoke Color

Feb 28th, 2015
1,046
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. Black Ops 2 1.19 Smoke Color Offset
  2.  
  3. Credit for offset goes to xbold. Credit for making pastebin goes to Angry.
  4.  
  5. Offset Code: 0x009E50E0
  6.  
  7. How To Use:
  8.  
  9. int valueR = Convert.ToInt32(logInNumeric20.Value);
  10. int valueG = Convert.ToInt32(logInNumeric19.Value);
  11. int valueB = Convert.ToInt32(logInNumeric18.Value);
  12.  
  13. uint Red = 0x009E50E0;
  14. uint Green = 0x009E50E0 + 0x04;
  15. uint Blue = 0x009E50E0 + 0x08;
  16.  
  17. PS3.Extension.WriteFloat(Red, (float)valueR);
  18. PS3.Extension.WriteFloat(Green, (float)valueG);
  19. PS3.Extension.WriteFloat(Blue, (float)valueB);
Advertisement
Add Comment
Please, Sign In to add comment