DzMGZXL Posted September 21, 2014 Share Posted September 21, 2014 Okay so i make script when player doesn't wear seatbelt beeps seatbeltwarning sound.But script doesn't work any help?Script is for Roleplay servers. function seatbeltWarning() if (getElementData(source, "seatbelt") == false) then local sound = playSound3D("seatbeltwar.wav", x, y, z) setSoundVolume(sound, 1) end addEventHandler ( "onClientPlayerSpawn", getLocalPlayer(), seatbeltWarning ) addEventHandler('onClientResourceStart', resourceRoot, seatbeltWarning) Link to comment
undefined Posted September 21, 2014 Share Posted September 21, 2014 Try it. function seatbeltWarning() if not getElementData(localPlayer, "seatbelt") then local sound = playSound3D("seatbeltwar.wav", x, y, z) -- Where is the x,y,z defined? setSoundVolume(sound, 1) end end addEventHandler("onClientPlayerSpawn", getLocalPlayer(), seatbeltWarning) addEventHandler("onClientResourceStart", resourceRoot, seatbeltWarning) Link to comment
DzMGZXL Posted September 21, 2014 Author Share Posted September 21, 2014 Try it. function seatbeltWarning() if not getElementData(localPlayer, "seatbelt") then local sound = playSound3D("seatbeltwar.wav", x, y, z) -- Where is the x,y,z defined? setSoundVolume(sound, 1) end end addEventHandler("onClientPlayerSpawn", getLocalPlayer(), seatbeltWarning) addEventHandler("onClientResourceStart", resourceRoot, seatbeltWarning) Doesn't work! Link to comment
undefined Posted September 21, 2014 Share Posted September 21, 2014 Is give error or warning on debugscript? Link to comment
#DRAGON!FIRE Posted September 21, 2014 Share Posted September 21, 2014 bro u put the positions and any Erros in debug ? 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