Lalalu Posted August 5, 2019 Share Posted August 5, 2019 Hola, quisiera saber si existe algún método para detectar el arma que tiene un jugador, pero no la que este esté usando al momento, solamente para detectar si la tiene? Link to comment
aka Blue Posted August 5, 2019 Share Posted August 5, 2019 Haz esto: function hasWeapon( jugador, idarma ) local armas = getPedWeapons( jugador ) if #armas > 0 then for i=1, #armas do if armas[i] == idarma then return true end end end return false end 1 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