Quote:
Originally Posted by Naruto_Emilio
pawn Код:
if(!strcmp(cmdtext, "/b", true, 2))// Here it must be 2 cause there is not 3 words (Ex: /=> 1, b=> 2) { if(!cmdtext[2])return SendClientMessage(playerid, COLOR_ERRORRED, "USAGE: /b [ooc chat]");
new str[128]; GetPlayerName(playerid, str, sizeof(str)); format(str, sizeof(str), "(( %s: %s ))", str, cmdtext[3]); ProxDetector(10.0, playerid, str, COLOR_FADE1, COLOR_FADE2, COLOR_FADE3, COLOR_FADE4, COLOR_FADE5);
return 1; }
|
yeah but then if you have a command starting with
/b like
Example
/bike the command
/b will be run because you put it as
true, 2 that means anything starting with
/b will be recognized as the
/b command if you see what i mean
correct me if im wrong