18.12.2009, 01:22
Hello!
How to make 3D the text over anybody when the player types/afk?
Here my command/afk:
And when entered this command that 3D the text disappeared
Please help who be
How to make 3D the text over anybody when the player types/afk?
Here my command/afk:
Код:
if (strcmp("/afk", cmdtext, true, 10) == 0) { GetPlayerName(playerid,playername,sizeof(playername)); format(string,sizeof(string),".:: %s (ID: %d) ушел в AFK! ::.",playername,playerid); SendClientMessageToAll(COLOR_ERROR, string); return 1; }
Код:
if (strcmp("/comeback", cmdtext, true, 10) == 0) { GetPlayerName(playerid,playername,sizeof(playername)); format(string,sizeof(string),".:: %s (ID: %d) вернулся из AFK! ::.",playername,playerid); SendClientMessageToAll(COLOR_YELLOW2, string); return 1; }