helmiex How do I cheat?
Reputation: 0
Joined: 15 Mar 2011 Posts: 3
|
Posted: Tue Mar 15, 2011 11:18 pm Post subject: Script engine sleep() not working |
|
|
i've been trying to put delay function in my script but not working did i miss something here
This is my address 00D03FC4 and the value is 95 i want change to 100 with delay in 5 second. But when pressed inject Into current process and execute nothing happen
| Code: |
#define addresstochange 0x00D03FC4
int nValue = *(int*)addresstochange;
if(nValue < 100 ) {
sleep(5000)
*(int*)addresstochange = 100;
}
|
|
|