(adsbygoogle = window.adsbygoogle || []).push({});What I Want: So, I'm working on a RTM Tool for Black Ops 2, and I want to have a name skipper in it. Problem: I can't figure out how to get a timer to wait for a number of seconds.
Here is the method I tried;
byte[] bytes = Encoding.ASCII.GetBytes(metroTextBox6.Text);
Array.Resize<byte>(ref bytes, bytes.Length + 1);
PS3.SetMemory(0x26c0658, bytes);
PS3.SetMemory(0x26c067f, bytes);
timer10.Interval += 2;
byte[] name1 = Encoding.ASCII.GetBytes(metroTextBox7.Text);
Array.Resize<byte>(ref name1, name1.Length + 1);
PS3.SetMemory(0x26c0658, name1);
PS3.SetMemory(0x26c067f, name1);
timer10.Interval += 2;
You're an idiot, it's a custom scripting language by Infinity Ward for the Call of Duty series. It's not at all C++ but it uses the You must login or register to view this content. (without explicit datatypes, memory management, etc).