30 Oct 12, 01:34AM
Does anyone have a simple script that play music in-game.
The Assault your Ears script is too advanced for me.
The Assault your Ears script is too advanced for me.
Music Script?
|
30 Oct 12, 01:34AM
Does anyone have a simple script that play music in-game.
The Assault your Ears script is too advanced for me.
30 Oct 12, 02:11AM
Why don't you play music through itunes or your web browser?
30 Oct 12, 08:46PM
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.
31 Oct 12, 12:39AM
Thanks.
01 Nov 12, 12:37PM
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] |
« Next Oldest | Next Newest »
|