News:

*NEW* Current Version on STEAM16.793

Webchat:
Visit the chat



wait

Previous topic - Next topic

mich19

How to replace the command " wait " with glbasic

ex: wait 100

Kitty Hello

Code (glbasic) Select
FUNCTION wait: ms
LOCAL end_time
   end_time = GETTIMERALL() + ms
   WHILE GETTIMERALL() < end_time
      // HIBERNATE
   WEND
ENDFUNCTION