02.09.2011, 09:04
hello,
im trying to make a paycheck. Its a bit diffrent then others, but the timer needs to repeat...
I used this:
gamemodeinit
Then the forward paychecktimer4
I have all the new blabla; stuff etc, no errors. But in what i need to change the I from the settimerex? So it just go to that forward...?
thnx
im trying to make a paycheck. Its a bit diffrent then others, but the timer needs to repeat...
I used this:
gamemodeinit
Код:
paychecktimer4 = SetTimerEx("paychecktimer1", 900000, true, "i");
Код:
public paychecktimer1(playerid)
{
paycheck[playerid] = 0;
paychecktimer3 = SetTimer("paychecktimer2", 300000, false);
SendClientMessageToAll(COLOR_RED, "[PAYCHECK] "green"You are now avaible to pick up your "white"Paycheck "green"at the LS city hall (Ask players) For playing 15 minutes Ultimate Stunts!");
SendClientMessageToAll(COLOR_RED, "[PAYCHECK] "green"Hurry! Because you have only "white"5 minutes to get it. "green"Type /paycheck at the place where it says that you need to do it.");
return 1;
}
thnx

