DRW Posted April 26, 2015 Posted April 26, 2015 function propiedad() setWeaponProperty (36, "poor","damage", 0) end addEventHandler ("onResourceStart", getRootElement(),propiedad) I try to make the RPG to not be able to kill a player but only a vehicle, but it's not working, players still die...
WhoAmI Posted April 26, 2015 Posted April 26, 2015 https://wiki.multitheftauto.com/wiki/On ... ayerDamage On example you have what you want. You must change weapon ID only.
Mr.unpredictable. Posted April 26, 2015 Posted April 26, 2015 function propiedad() setWeaponProperty (36, "poor","damage", 0) end addEventHandler ("onResourceStart", getRootElement(),propiedad) I try to make the RPG to not be able to kill a player but only a vehicle, but it's not working, players still die... thgis will only make your weapon do less damage.
DRW Posted April 26, 2015 Author Posted April 26, 2015 function stopRPG ( attacker, weapon, bodypart ) if ( weapon == 36 ) then cancelEvent() end end addEventHandler ( "onClientPlayerDamage", getLocalPlayer(), stopRPG) Still not working
DRW Posted April 26, 2015 Author Posted April 26, 2015 Did you add it client side? Any errors? Client-sided and no errors.
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