It's kind of like WoW, but you can build your "citites" being a commander or fight for them as a warrior. It's a really cool game.. I want to play Savage 2 though.. :P Looks so much cooler, but I heard that the beasts doesn't have leap there... Anyway, anyone know anything about any hacks at all for this?
, Please send me a PM/E-Mail. Thanks.Process p = Process.GetProcessesByName("processname")[0]; // replace it with the name of the needed process
ProcessMemoryReader m = new ProcessMemoryReader();
m.ReadProcess = p;
m.OpenProcess();
int bytes = 0;
byte[] b = new byte[1] { (byte)1 };
while (true)
{
Thread.Sleep(10);
m.WriteProcessMemory((IntPtr)0x00000000, b, out bytes); // replace it with the hex number you got from the UCE
}