07.07.2011, 15:54
Hello guys,
I have a question on how to make payday per hour.
I use this script:
Dunno if this helps you guys.
Now my question is to have a payday every time the time is XX:00 (11:00, 12:00 etc.)
Thanks in advance!
Hipflop
I have a question on how to make payday per hour.
I use this script:
pawn Код:
// ------ Forwards
forward Realtime();
// ------ OnGameModeInit();
SetTimer("Realtime", 1000, 1);
// ------ Public RealTime
public Realtime()
{
new hour, minute, second;
gettime(hour, minute, second);
SetWorldTime(hour);
return 1;
}
Now my question is to have a payday every time the time is XX:00 (11:00, 12:00 etc.)
Thanks in advance!
Hipflop