29.03.2013, 23:08
You have the player's ID already, why would you get their name from their ID and then do vice versa?
pawn Код:
public OnPlayerConnect(playerid)
{
new string[32];
format(string, sizeof(string), "ID: %i", playerid);
Attach3DTextLabelToPlayer(Create3DTextLabel(string, White, 30.0, 40.0, 50.0, 40.0, 0), playerid, 0.0, 0.0, 0.7);
return 1;
}