23.12.2013, 17:31
SendClientMessage has 3 arguments: playerid, color, const message[]
what you need is a formated message
example from wiki: https://sampwiki.blast.hk/wiki/Format
what you need is a formated message
example from wiki: https://sampwiki.blast.hk/wiki/Format
PHP код:
new string[64];
format(string,sizeof(string),"Your score is: %d",GetPlayerScore(playerid));
SendClientMessage(playerid,0xFFFFFFAA,string);