19.05.2014, 15:00
Try this
pawn Код:
forward OnPlayerLogin(playerid);
forward OnPlayerLoginAttempt(playerid);
public OnLoginAttempt(playerid)
{
.........
SetTimerEx("OnPlayerLogin", 100, false, "i", playerid);
return 1;
}
public OnPlayerLogin(playerid)
{
...........
return 1;
}