01.12.2012, 23:35
Create a player variable which saves called LastPayday. Use the following check under a timer which you should create that sets off every 10 to 20 seconds.
pawn Код:
new currentTickcount = tickcount();
if(currentTickcount - LastPayday[playerid] >= 3600000)
{
Payday();
LastPayday[playerid] = currentTickcount;
}