27.12.2010, 17:28
Hello, trying to make a cmd here but when i type /test it just skips the "USAGE: /test [param]" part, why?
pawn Код:
CMD:test(playerid, params[])
{
if(!strlen(params))
return SendClientMessage(playerid, COLOR_WHITE, "USAGE: /test [param]");
SendClientMessage(playerid, 0x123456FF, "This is a test message!");
return 1;
}