summaryrefslogtreecommitdiff
path: root/npc/commands/music.txt
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2018-03-19 17:37:53 -0300
committerJesusaves <cpntb1@ymail.com>2018-03-19 17:37:53 -0300
commiteb7e7a5e0699ef61cb8dcabc8f08feae1b8152bb (patch)
tree8ec512bd947e55f3e2e723d5908425875e07357b /npc/commands/music.txt
parent390e53e3cd37092a161fd400bb6a84cbe64093fb (diff)
downloadserverdata-eb7e7a5e0699ef61cb8dcabc8f08feae1b8152bb.tar.gz
serverdata-eb7e7a5e0699ef61cb8dcabc8f08feae1b8152bb.tar.bz2
serverdata-eb7e7a5e0699ef61cb8dcabc8f08feae1b8152bb.tar.xz
serverdata-eb7e7a5e0699ef61cb8dcabc8f08feae1b8152bb.zip
Music updates
Diffstat (limited to 'npc/commands/music.txt')
-rw-r--r--npc/commands/music.txt21
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");
}