14.03.2010, 00:57
Hello!
I am having a /b script, basically local ooc.
But after I created: /bomb, it appears:
(( LOCAL OOC: Christian_Hammer)) mb
my /b is:
I am having a /b script, basically local ooc.
But after I created: /bomb, it appears:
(( LOCAL OOC: Christian_Hammer)) mb
my /b is:
pawn Код:
if(!strcmp(cmdtext, "/b", true, 2))
{
if(!cmdtext[2])
SendClientMessage(playerid, 0xFF0000FF, "USAGE: /b [text]");
{
new string[128];
GetPlayerName(playerid, string, sizeof(string));
format(string, sizeof(string), "(( LOCAL OOC: %s)) %s", string, cmdtext[3]);
ProxDetector(30, playerid, string,COLOR_GRAD1,COLOR_GRAD2,COLOR_GRAD3,COLOR_GRAD4,COLOR_GRAD5);
}
return 1;
}