Jump to content

Help with sound!


DzMGZXL

Recommended Posts

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

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
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

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...