09.07.2015, 08:13
hello, I have this code
its working perfectly when there is only 1 member on server but when there are 2+ members it sends the message to random message, I don't know whats the problem, this is also happening with other commands also with my textdraws
Код:
CMD:changecolor(playerid, params[])
{
SetPlayerColor(playerid, RandomColors[random(200)]);
new msg[175];
format(msg, sizeof (msg), "{%06x}You have successfully changed your color to this message's color", GetPlayerColor(playerid) >>> 8);
SendClientMessage(playerid, -1, msg);
return 1;
}


