mint3d Posted October 14, 2013 Posted October 14, 2013 Ok so i got the thing i want to do so that when onPlayerSpawn it plays a welcome song and only plays for 5 seconds would it be this its not working any help please? I just need to add timer i think and make a server side? JoinMusic = playSound("music/welcome.mp3") addEventHandler("onClientPlayerSpawn", root, function() if isElement(JoinMusic) then destroyElement(JoinMusic) end end) Skype: Jordan_Nymph
Castillo Posted October 14, 2013 Posted October 14, 2013 If you want to play it when spawn, why do you put playSound outside the function? San Andreas Utopia RPG (SAUR) Owner & Developer. Education is the most powerful weapon which you can use to change the world.
mint3d Posted October 14, 2013 Author Posted October 14, 2013 What do you mean? I want it to play a sound for a timer of only 5 seconds how may I go about doing this? Skype: Jordan_Nymph
Chopper Posted October 14, 2013 Posted October 14, 2013 addEventHandler("onClientPlayerSpawn", root, function() JoinMusic = playSound("music/welcome.mp3") setTimer ( stopMusic, 5000, 1) end) function stopMusic() stopSound(JoinMusic) end
mint3d Posted October 14, 2013 Author Posted October 14, 2013 Chopper i got a problem all hear it Skype: Jordan_Nymph
Castillo Posted October 14, 2013 Posted October 14, 2013 Change 'root' to 'localPlayer' at addEventHandler. San Andreas Utopia RPG (SAUR) Owner & Developer. Education is the most powerful weapon which you can use to change the world.
Castillo Posted October 14, 2013 Posted October 14, 2013 You're welcome. San Andreas Utopia RPG (SAUR) Owner & Developer. Education is the most powerful weapon which you can use to change the world.
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