18.07.2017, 05:49
Hello guys, I have two timers:
__________________________________________
Please help me out of this question, thank you.
PHP код:
forward Timer1(playerid);
public Timer1(playerid)
{
SendClientMessage(playerid, -1, "...");
}
// Somewhere in the script.
foreach(new i: Player)
{
SetTimerEx("Timer1", 1000, true, "i", i);
}
PHP код:
forward Timer1();
public Timer1()
{
foreach(new i: Player)
{
SendClientMessage(playerid, -1, "...");
}
}
// Somewhere in the script.
SetTimer("Timer1", 1000, true);