16.08.2010, 22:37
ok my idea didnt work this is what i tried:
and well it epicly failed, so how might i make a command like that with strtok?
pawn Код:
if(strcmp(cmd,"/setweapon",true)==0)
{
new giveplayerweapon,giveplayerammo;
tmp = strtok(cmdtext,idx);
if(!strlen(tmp))return SendClientMessage(playerid,0xFFF0000FF,"USAGE: /setweapon [PLAYERID] [WEAPONID]");
{
giveplayerid = strval(tmp);
giveplayerweapon = strval(tmp);
giveplayerammo = strval(tmp);
GivePlayerWeapon(giveplayerid,giveplayerweapon,giveplayerammo);
}
return 1;
}
and well it epicly failed, so how might i make a command like that with strtok?