papam77 Posted May 13, 2013 Share Posted May 13, 2013 Hello which function is for sound when i hit player ? If i shoot player with gun i need playsound. But not kill only shoot Only function please. Link to comment
PaiN^ Posted May 13, 2013 Share Posted May 13, 2013 I don't think there is a ready function for that . Use : 'onClientPlayerWeaponFire' playSound or playSound3D Link to comment
papam77 Posted May 13, 2013 Author Share Posted May 13, 2013 I don't think there is a ready function for that .Use : 'onClientPlayerWeaponFire' playSound or playSound3D But i need only if you hit player. Link to comment
WASSIm. Posted May 13, 2013 Share Posted May 13, 2013 (edited) addEventHandler("onClientPlayerWeaponFire", root, function (weapon, ammo, ammoInClip, hitX, hitY, hitZ, hitElement) if (weapon) and (getElementType(hitElement)=="player") then playSound3D("sounds/song.mp3", hitX, hitY, hitZ, true) end end ) Edited May 13, 2013 by Guest 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