21.12.2011, 20:46
Fail?
pawn Код:
public OnPlayerConnect(playerid)
{
new rope[30],nAme[24];//There's a chance he already has "string" and or "name"; So he'll get errors...
GetPlayerName(playerid,nAme,sizeof(nAme));
format(rope,sizeof(rope),"Join: %s",nAme);
TextDrawSetString(joinmsg,rope);
TextDrawShowForAll(joinmsg);
return 1;
}