Answered How to use a sleep without freezing all the menu (process) ?

SlowModzHD

Veteran
Messages
16
Reaction score
5
Points
783
Yo all, someone knows how to use a sleep without freezing all the menu (all process in the thread) ?

Thanks alot if someone can help me..
 

SlowModzHD

Veteran
Messages
16
Reaction score
5
Points
783
write it in a different language like the one you know and then ill google translate it :grinning:
With the reverso translate: Know how to use how a sleep without sleeper all the options of the menu ?

And with the google translate : Do you know how to use a sleeper without sleep all the menu options
 

iRnZ

Veteran
Messages
32
Reaction score
18
Points
643
With the reverso translate: Know how to use how a sleep without sleeper all the options of the menu ?

And with the google translate : Do you know how to use a sleeper without sleep all the menu options
lol we want know u speak about SPRX or GSC that its and i know u talk about SPRX ;d
 

Joker

Veteran
Messages
52
Reaction score
24
Points
793
oh yeah about a SPRX, sorry I forgot that, I am so stupid :/
Think this is what you want:

Code:
#include <time.h>//You need this!
 
void wait(int seconds)//wait(2);//Credit to KYZA
{
clock_t endwait;
endwait = clock () + seconds * CLOCKS_PER_SEC ;
while (clock() < endwait) {}
}
 
Top