19.02.2018, 12:51
Quote:
You dont even exclude weapons that dont fire at OPWS? dude check for weaponid if its not a firearm (weapon that can shoot bullets) return 0;
|
Код:
switch(weaponid) { case 1..8,10..18,33,35..45:return 0; }
Код:
if (weaponid < 22 || weaponid > 38) return 0;