When i do /b ig, it says "Usage: /b [text] (local ooc chat) which its supposed to, but once i do "/b and type text" nothing shows up? Help?
Код:
CMD:b(playerid, params[])
{
new string[128];
if(sscanf(params, "s[128]", params)) return SendClientMessage(playerid, COLOR_WHITE, "Usage: /b [text] (Local OOC Chat)");
if(AntiAdv(playerid, params)) return 1;
format(string, sizeof(string), "(( Local OOC: %s: %s ))", NAMEGET(playerid), params);
NearMessageSender(playerid, 12, string, COLOR_FADE2,COLOR_FADE2,COLOR_FADE2,COLOR_FADE2,COLOR_FADE2);
return 1;
}