22.05.2012, 06:49
Hey i have a problem, i have a code so i can see my (id) while i am chatting, but if i type something i will get 2 messages.
http://imageshack.us/f/201/samp007wo.png/
And the code:
http://imageshack.us/f/201/samp007wo.png/
And the code:
pawn Код:
public OnPlayerText(playerid, text[])
{
new textstring[128];
format(textstring, sizeof(textstring), "(%i) %s", playerid, text);
SendPlayerMessageToAll(playerid, textstring);
return 1;
}