11.02.2012, 02:24
Sweet baby jesus, don't use 256, please!
pawn Код:
CMD:accept(playerid, params[])
{
if(isnull(params)) {
SendClientMessage(playerid,COLOR_GREY,"Usage: /accept [name]");
return SendClientMessage(playerid,COLOR_GREY,"Names: Job, Faction");
}
if(strcmp(params, "job", true) == 0)
{
//Do the rest of your code
}
else return 0; //They typed in something other than "Job"
}