22.03.2012, 19:54
I also think there has to be an array.
Example:
It's like with playerobjects and globalobjects or not?...
Example:
pawn Код:
new PlayerText: eText[MAX_PLAYERS];
public OnPlayerConnect(playerid)
{
eText[playerid] = CreatePlayerTextDraw(playerid, "Welcome to my Server", 5.0, 200.0);
}
public OnPlayerSpawn(playerid)
{
PlayerTextDrawDestroy(playerid, eText[playerid]);
return 1;
}