[help] Taxi Job Timer
#1

Can someone give me a quick example of how I would set up a timer that when every one second passes, the amount a variable has increases by 25.
Reply
#2

Код:
//OnGameModeInit:
SetTimer("Timer",1000,true);
//Bottom
forward Timer();
public Timer()
{
Variable += 25;
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)