17.08.2010, 09:29
pawn Код:
forward AQinfoBox(playerid,text[]);
public AQinfoBox(playerid,text[])
{
TextDrawShowForPlayer(playerid,JoinInfo);
TextDrawSetString(JoinInfo, text);
return 1;
}
public OnPlayerConnect(playerid)
{
format(str, sizeof(str), "Ty for joining here! %s.",gPlayerName);
CallRemoteFunction("AQinfoBox", "is",playerid,str);
return 1;
}