diff options
-rw-r--r-- | npc/commands/music.txt | 21 |
1 files changed, 13 insertions, 8 deletions
diff --git a/npc/commands/music.txt b/npc/commands/music.txt index 606b08ac7..2aa30d06b 100644 --- a/npc/commands/music.txt +++ b/npc/commands/music.txt @@ -1,8 +1,8 @@ // @music atcommand // changes the music for all players on the map // -// group lv: 2 -// group char lv: 99 +// group lv: 80 +// group char lv: 80 // log: True // // usage: @@ -31,16 +31,21 @@ OnCall: .@m$ = implode(.@atcmd_parameters$[0], " "); } - changemusic .@map$, .@m$ + ".ogg"; + changemusic .@map$, .@m$; end; OnInit: bindatcmd "music", "@music::OnCall", 80, 80, 1; .hash = htnew; // create hashtable - htput(.hash, "forest", "bartk - in the forest of the birches"); - htput(.hash, "adventure", "bartk - the adventure begins"); - htput(.hash, "fun", "eric matyas - ghoulish fun"); - htput(.hash, "surreal", "eric matyas - surreal place"); - htput(.hash, "ocean", "ezili - ocean sounds"); + htput(.hash, "forest", "bartk - in the forest of the birches.ogg"); + htput(.hash, "adventure", "bartk - the adventure begins.ogg"); + htput(.hash, "fun", "eric matyas - ghoulish fun.ogg"); + htput(.hash, "surreal", "eric matyas - surreal place.ogg"); + htput(.hash, "ocean", "ezili - ocean sounds.ogg"); + htput(.hash, "magic", "magick - real.ogg"); + htput(.hash, "forest2", "dariunas - the forest.ogg"); + htput(.hash, "mythica", "mythica.mp3"); + htput(.hash, "3b5", "3b5.ogg"); + htput(.hash, "misuse", "misuse.ogg"); } |