Music Script?
#1
Does anyone have a simple script that play music in-game.
The Assault your Ears script is too advanced for me.
Thanks given by:
#2
Why don't you play music through itunes or your web browser?
Thanks given by:
#3
You could make binds and play your music that way..

Say for example you have Back In Black by AC/DC.

/bind 0 [music "Back_In_Black"]

I hope this somewhat helps. Other than that, V-Man's the guy to ask.

@Cho: That takes up more data than just playing the game alone, potentially causing lag.
Thanks given by:
#4
Thanks.
Thanks given by:
#5
Not what you're looking for but I'll post it anyway.
[cubescript]
playsound = [ sound $arg1 ]

playsong = []

tonecount = [ 0 ]

addsound = [
add2list playsong sleep
add2list playsong (* $tonecount 500)
add2list playsong "["
add2list playsong [playsound]
add2list playsong $arg1
add2list playsong "]"
add2list playsong ";"
tonecount = (+ $tonecount 1)
]

clearsong = [
playsong = []
]
[/cubescript]
Use it to compose your own music inside AC.
Use addsound to add a sound to the total song.
Use playsong to play your song once you're done adding.
To start again, you have to use clearsong or you'll be adding more sounds to your existing song.
I used this with a set of preset tones between A and Ab, but you can use whatever sounds you want.
Note that there is half a second between the start of each sound. This is because the tones I used were half a second long.
You can choose your own interval by modifying the line:
[cubescript]
add2list playsong (* $tonecount 500)
[/cubescript]
Thanks given by: