07.01.2019, 18:29
Quote:
Hi guys..
How to make that players can use collors in command.For example: /b Hey guys,my name is {F00000} GospodinX It need to print: Hey guys,my name is GospodinX Code:
YCMD:b(playerid,params[],help) { new text[100],string1[128]; if(sscanf(params, "s[100]", text)) return 1; format(string1, 105, " (( %s ))", text); SendClientMessageToAll(-1, string1); return 1; } |