Jump to content

I need help again


mint3d

Recommended Posts

Posted

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

Posted

If you want to play it when spawn, why do you put playSound outside the function?

San Andreas Utopia RPG (SAUR) Owner & Developer.

560x95_FFFFFF_FF9900_000000_000000.png

Education is the most powerful weapon which you can use to change the world.

Posted
  
addEventHandler("onClientPlayerSpawn", root, 
function() 
JoinMusic = playSound("music/welcome.mp3") 
setTimer ( stopMusic, 5000, 1) 
end) 
function stopMusic() 
stopSound(JoinMusic) 
end 

Posted

Change 'root' to 'localPlayer' at addEventHandler.

San Andreas Utopia RPG (SAUR) Owner & Developer.

560x95_FFFFFF_FF9900_000000_000000.png

Education is the most powerful weapon which you can use to change the world.

Posted

You're welcome.

San Andreas Utopia RPG (SAUR) Owner & Developer.

560x95_FFFFFF_FF9900_000000_000000.png

Education is the most powerful weapon which you can use to change the world.

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