Quote:
Originally Posted by Nimrod
In a timer, regularly check the player's speed and add it to a variable, but also check if their speed was higher than the varibale.
like:
pawn Код:
Timer() { if(PlayerSpeed > SpeedVariable) { SpeedVariable = PlayerSpeed; } if(PlayerSpeed > 60) { Failed = true; } }
|
Under what callback does that go?