Forum
CS2D General How to make or Add songs in CS2D?How to make or Add songs in CS2D?
9 replies 1
If you want to add an own sound or music, you need to place it in a folder sfx in yours cs2d.
After that come into the menu entites and choose env_sound.
in sound properties put a tick play everywhere (it that the sound was played everywhere).
In "sound file" find your music and choose.
If you have made all correctly, your music will be played.
It's easy!
Audacity.
Here, check it out!
http://media.io/
For beginning round
1
2
3
4
2
3
4
addhook("startround" , "start") function start(id,mode) parse("sv_sound \"folder/startround.wav\"") end
For ending round
1
2
3
4
2
3
4
addhook("endround" , "endsound") function endsound(mode) parse("sv_sound \"folder/end.wav\"") end
1
2
3
4
5
6
2
3
4
5
6
--MUSIC-- addhook("startround" , "start") function start(id,mode) parse("sv_sound \"folder/filename.filetype") end
its good:)
1