diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-08-05 19:39:49 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-08-05 19:39:49 -0300 |
commit | 9314ac33c4b62874e20d124a18b5d62ab47956cb (patch) | |
tree | 4ce5503cf11145b0f8ec1963dcb3f4df9de68a68 /npc/commands | |
parent | 16a21c5a86e8a338c20205368f17a74669eec188 (diff) | |
download | serverdata-9314ac33c4b62874e20d124a18b5d62ab47956cb.tar.gz serverdata-9314ac33c4b62874e20d124a18b5d62ab47956cb.tar.bz2 serverdata-9314ac33c4b62874e20d124a18b5d62ab47956cb.tar.xz serverdata-9314ac33c4b62874e20d124a18b5d62ab47956cb.zip |
Reword recepcionist, @music update
Diffstat (limited to 'npc/commands')
-rw-r--r-- | npc/commands/music.txt | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/npc/commands/music.txt b/npc/commands/music.txt index e419487c8..410a24421 100644 --- a/npc/commands/music.txt +++ b/npc/commands/music.txt @@ -29,8 +29,8 @@ OnCall: if (.@m$ == "Not found") { //.@m$ = implode(.@atcmd_parameters$[0], " "); dispbottom "Invalid music key. Current accepted values are:"; - dispbottom "ship, city, ghoul, surreal, magic, forest, mythica, acid, misuse, prelude, sunrise, peace, peace2, toast, woodland2"; - dispbottom "unforgiving, deepcave, 8bit, action, hurns, fields, tulim, candor, lof, icecave, manacave, adventure, dance"; + dispbottom "ship, city, ghoul, surreal, magic, forest, mythica, acid, misuse, prelude, sunrise, peace, peace2, peace3, toast, woodland2"; + dispbottom "unforgiving, deepcave, 8bit, action, hurns, fields, tulim, candor, lof, icecave, manacave, adventure, dance, academy"; } else { changemusic .@map$, .@m$; } @@ -53,6 +53,7 @@ OnInit: htput(.hash, "sunrise", "tws_birds_in_the_sunrise.ogg"); htput(.hash, "peace", "peace.ogg"); htput(.hash, "peace2", "peace2.ogg"); + htput(.hash, "peace3", "peace3.ogg"); htput(.hash, "toast", "dragon_and_toast.ogg"); htput(.hash, "woodland2", "New_Woodlands.ogg"); htput(.hash, "unforgiving","Unforgiving_Lands.ogg"); @@ -68,4 +69,5 @@ OnInit: htput(.hash, "adventure", "tmw_adventure.ogg"); htput(.hash, "manacave", "tws_green_island.ogg"); htput(.hash, "dance", "dance_monster.ogg"); + htput(.hash, "academy", "academy_bells.ogg"); } |