30.11.2013, 14:56
PRONTO MANO! AGORA SУ COLOCAR EM SEU GM E PRONTO SEJA FFELIZ KK
pawn Код:
if(strcmp(cmd, "/dararma", true) == 0)//COMANDO
{
if(IsPlayerConnected(playerid))
{
tmp = strtok(cmdtext, idx);
if(!strlen(tmp))
{
SendClientMessage(playerid, COLOR_GRAD2, "USE: /dararma [id] [arma id(ex. 24 = Eagle)] [muniзгo]");
return 1;
}
new playa;
new gun;
new ammo;
playa = ReturnUser(tmp);
tmp = strtok(cmdtext, idx);
gun = strval(tmp);
if(!strlen(tmp))
{
SendClientMessage(playerid, COLOR_GRAD1, "USE: /dararma [id] [arma id] [muniзгo]");
return 1;
}
if(gun < 1 || gun > 46 || gun==38 || gun==35 || gun==37 || gun==44 || gun==45 || gun==9 || gun==26 || gun==27 || gun==28 || gun==32)//DEFINE O ID DAS ARMAS QUE SГO PROIBIDAS (MINIGUN,ETC)
{ SendClientMessage(playerid, COLOR_GRAD1, " ID Proibido!"); return 1; }
tmp = strtok(cmdtext, idx);
ammo = strval(tmp);
if(ammo <1||ammo > 999)//NUMERO MINIMO E MAXIMO DE MUNЗГO QUE VOCК PODE DAR
{ SendClientMessage(playerid, COLOR_GRAD1, " O minimo de muniзгo й 1 e o mбximo й 999!"); return 1; }
if(PlayerInfo[playerid][pAdmin] < 1)//admin lvl 1 + que pode setar esse comando
{
SendClientMessage(playerid, COLOR_GREY," Vocк nгo tem autorizaзгo para usar este comando.");//SE NГO FOR ADMIN IRБ APARECER ESSA MENSAGEM
return 1;
}
if(IsPlayerConnected(playa))
{
if(playa != INVALID_PLAYER_ID)//INDENTIFICA SE O PLAYER ESTБ CONECTADO
{
GivePlayerWeapon(playa, gun, ammo);
}
}
}
return 1;
}