crap, someone wil Uscript knowledge answer plz?

  • Two Factor Authentication is now available on BeyondUnreal Forums. To configure it, visit your Profile and look for the "Two Step Verification" option on the left side. We can send codes via email (may be slower) or you can set up any TOTP Authenticator app on your phone (Authy, Google Authenticator, etc) to deliver codes. It is highly recommended that you configure this to keep your account safe.

Wild Weasel

New Member
Mar 20, 2001
636
0
0
Visit site
can someone please tell me wth is a 'tick'? i keep seeing it all ove the place. is it 1/10th of a second? or 1/100th of a second? im not sure and im getting groggy from staying up soo late....
 

Slick_Willy

Anyone Else Want Some?
a Tick is one game cycle or loop. It will be faster on fast machines and slower on slower machines. The only loop that conforms to a time is the Timer() funtion. ie:

funtion beginplay()
{
settimer(1.0,true);
}

funtion timer()
{
Do something here...
}


This timer function here will loop every 1.0 second. You can change the time in the settimer statement to change the delay.