05.08.2018, 17:51
Testa ai
PHP код:
static SlotsArmas(armaid){
new slot;
switch(armaid){
case 0..1: slot = 0; // FIST
case 2..9: slot = 1; // ARMA BRANCA
case 10..15: slot = 10; // ARMAS SLAOQ
case 16..18: slot = 8; // EXPLOSIVOS
case 22..24: slot = 2; // PISTOLAS
case 25..27: slot = 3; // DOZES
case 28..29: slot = 4; // SUBS
case 30..31: slot = 5; // FUZIS
case 32: slot = 4; // SUBS
case 33..34: slot = 6; // SNIPERS
case 35..38: slot = 7; // BAZUCAS
case 39: slot = 8; // EXPLOSIVO
case 40: slot = 12; // DETONADOR
case 41..43: slot = 9; // SLAS
case 44..46: slot = 11; // VISГO
}
return slot;
}
static SlotVazios(playerid, idarma){
new Weapons[13][2];
for(new i = 0; i < 13; i++){
GetPlayerWeaponData(playerid, i, Weapons[i][0], Weapons[i][1]);
if(SlotsArmas(idarma) == i && (Weapons[i][0] != 0))
return true;
}
return false;
}
PHP код:
if(SlotVazios(playerid, idarma)) return SendClientMessage(playerid, -1, "[!] Vocк jб possui arma nesse slot!");