10.03.2012, 14:37
That's odd... or is it supposed to be like this? I don't remember...
Anyway if that's disturbing you you can use a timer to delay the message.
Anyway if that's disturbing you you can use a timer to delay the message.
pawn Код:
public OnPlayerConnect(playerid)
{
SetTimerEx("TimerWelcome", 1500, false, "d", playerid);
return 1;
}
forward TimerWelcome(player);
public TimerWelcome(player)
{
SendClientMessage(player, -1, "Welcome to vernz's server!");
return 1;
}