Advertisement
CybEl

code

Jun 11th, 2018
23,848
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. //you learn nothing from copy and pasting, write it on your own and follow the tut!
  2.  
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. using System.Threading;
  9.  
  10. namespace DEMO
  11. {
  12. class Program
  13. {
  14. public static int Base = 0x004E4DBC;
  15. public static int Health = 0xF4;
  16.  
  17.  
  18. static void Main(string[] args)
  19. {
  20. VAMemory vam = new VAMemory("ac_client");
  21.  
  22. int LocalPlayer = vam.ReadInt32((IntPtr)Base);
  23.  
  24. while(true)
  25. {
  26. int address = LocalPlayer + Health;
  27. vam.WriteInt32((IntPtr)address, 9999);
  28.  
  29.  
  30. Thread.Sleep(100);
  31.  
  32.  
  33. }
  34.  
  35.  
  36.  
  37. }
  38. }
  39. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement