Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Threading;
- namespace DEMO
- {
- class Program
- {
- public static int Base = 0x004E4DBC;
- public static int Health = 0xF4;
- static void Main(string[] args)
- {
- VAMemory vam = new VAMemory("ac_client");
- Console.WriteLine("Do you want max health? [Y/N]: ");
- string YesOrNo;
- YesOrNo = Console.ReadLine();
- if (YesOrNo == "Y")
- {
- int LocalPlayer = vam.ReadInt32((IntPtr)Base);
- while (true)
- {
- int address = LocalPlayer + Health;
- vam.WriteInt32((IntPtr)address, 9999);
- Thread.Sleep(10);
- }
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement