el_motoblock Posted January 6, 2012 Share Posted January 6, 2012 if ( weapon == ряду определённых чисел "id оружия", идущих не по порядку ) как сделать такую проверку. хочу в своём хаде сделать так: при Стреляющем оружии показывался счёт патронов при кулаке и других, при которых можно дратся с пкм+enter показывался id стиля боя при бензопиле, парашюте, IR/NV очках ни чего не показывало Link to comment
StUNt71 Posted January 6, 2012 Share Posted January 6, 2012 if weapon == 23 or weapon == 24 or weapon == 25 then ... elseif weapon == 26 or weapon == 27 or weapon == 28 then ... end А такое не устраивает? Link to comment
Kenix Posted January 6, 2012 Share Posted January 6, 2012 Через таблицы лучше local t = { [5] = true, [6] = true --.... } if t[ getPedWeapon( localPlayer ) ] then -- ... end Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now