19.09.2011, 16:59
pawn Код:
CMD:stuff(playerid,params[])
{
new otherid;
if(strfind(params,"kick"))
{
if(sscanf(params,"'kick'd",otherid))
{
printf("kick: %d", otherid);
}
}
if(strfind(params,"ban"))
{
if(sscanf(params,"'ban'ds",otherid,params))
{
printf("ban: %d - %s", otherid,params);
}
}
return 1;
}