Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //you learn nothing from copy and pasting, write it on your own and follow the tut!
- 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");
- int LocalPlayer = vam.ReadInt32((IntPtr)Base);
- while(true)
- {
- int address = LocalPlayer + Health;
- vam.WriteInt32((IntPtr)address, 9999);
- Thread.Sleep(100);
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement