24.05.2012, 22:30
pawn Код:
command(help, playerid, params[])
{
new cat[128];
new defaultinteger;
if(sscanf(params, "s[128]D(default)", cat))
{
SendClientMessage(playerid, 0x66666666, "Usage: /drop [Category]");
SendClientMessage(playerid, 0x66666666, "Categories: Clothes");
return 1;
}
else
{
if(strfind("Clothes", cat, true) != -1)
{
//
}
}
return 1;
}