Posts: 854
Threads: 154
Joined: Jun 2012
Reputation:
0
27.01.2013, 00:11
(
Последний раз редактировалось jakejohnsonusa; 27.01.2013 в 17:12.
)
How can I make a blank timer, that does nothing for 15000 miliseconds (15 seconds), to delay code?
Posts: 854
Threads: 154
Joined: Jun 2012
Reputation:
0
Yea thats what I was looking for... But I guess the SetTimer can work.
Thanks!
Posts: 854
Threads: 154
Joined: Jun 2012
Reputation:
0
Nope, timer didn't work. Is ther any easy way of just pausing the code where it is for 15 seconds and then continuing, the timer didn't work... It started and continued (not waited)...
Anyone know?
Thanks in advance!
Posts: 854
Threads: 154
Joined: Jun 2012
Reputation:
0
Thanks, I figured it out.
For people wondering,
Made a SetTimerEx and added a TimeUp variable, so that when the timer finished it set TimeUp to 1, and then I had the code after the timer started start if(TimerUp ==1).