11.05.2011, 10:35
PHP код:
if(strcmp(cmd, "/quantidadedemunicao", true) == 0)
{
new valordaprof, ammo, armaid, cargo, giveplayerid;
tmp = strtok(cmdtext, idx);
if(!strlen(tmp)) return SendClientMessage(playerid, Color_White, "(AJUDA) Uso correto: /quantidadedemunicao [ID] [AMMO] [WEAPONID] [CARGO] ");
giveplayerid = strval(tmp);
tmp = strtok(cmdtext, idx);
if(!strlen(tmp)) return SendClientMessage(playerid, Color_White, "(AJUDA) Uso correto: /quantidadedemunicao [ID] [AMMO] [WEAPONID] [CARGO] ");
ammo = strval(tmp);
tmp = strtok(cmdtext, idx);
if(!strlen(tmp)) return SendClientMessage(playerid, Color_White, "(AJUDA) Uso correto: /quantidadedemunicao [ID] [AMMO] [WEAPONID] [CARGO] ");
armaid = strval(tmp);
tmp = strtok(cmdtext, idx);
if(!strlen(tmp)) return SendClientMessage(playerid, Color_White, "(AJUDA) Uso correto: /quantidadedemunicao [ID] [AMMO] [WEAPONID] [CARGO] ");
cargo = strval(tmp);
Rank[giveplayerid] = valordaprof;
GivePlayerWeapon(giveplayerid, ammo, armaid);
return 1;
}