Jump to content

Solved.


Bean666

Recommended Posts

How can i make this sound repeat endless?

addEvent("soundin",true) 
addEventHandler("soundin", getRootElement(), 
function () 
sound = playSound("sound/music.mp3", false) 
if isElement(sound) then 
setSoundVolume(sound, 0.2) 
end 
end 
) 

Edited by Guest
Link to comment
function onSoundStopped() 
    playSound( sound ) 
    end 
addEventHandler ( "onClientSoundStopped", getRootElement(), onSoundStopped ) 

tried this , only got errors when sound ends.

[expected string at argument 1 , got sound ]

EDIT: OK thanks! never noticed that earlier

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