Advertisement
CybEl

final code

Jun 18th, 2018
1,963
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Threading;
  7.  
  8. namespace DEMO
  9. {
  10. class Program
  11. {
  12. public static int Base = 0x004E4DBC;
  13. public static int Health = 0xF4;
  14.  
  15.  
  16. static void Main(string[] args)
  17. {
  18. VAMemory vam = new VAMemory("ac_client");
  19. Console.WriteLine("Do you want max health? [Y/N]: ");
  20. string YesOrNo;
  21. YesOrNo = Console.ReadLine();
  22.  
  23. if (YesOrNo == "Y")
  24. {
  25. int LocalPlayer = vam.ReadInt32((IntPtr)Base);
  26.  
  27. while (true)
  28. {
  29. int address = LocalPlayer + Health;
  30. vam.WriteInt32((IntPtr)address, 9999);
  31.  
  32.  
  33. Thread.Sleep(10);
  34. }
  35.  
  36.  
  37. }
  38.  
  39.  
  40.  
  41.  
  42. }
  43. }
  44. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement