summaryrefslogtreecommitdiff
path: root/npc/functions/siege.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/functions/siege.txt')
-rw-r--r--npc/functions/siege.txt5
1 files changed, 1 insertions, 4 deletions
diff --git a/npc/functions/siege.txt b/npc/functions/siege.txt
index 6a68450f7..10fa4736f 100644
--- a/npc/functions/siege.txt
+++ b/npc/functions/siege.txt
@@ -132,18 +132,15 @@ function script siege_selectmob {
/////////////////////////////////////////////////////////////
// Prepare a siege with optional announce
-// siege_setup ( map{, announce} )
+// siege_setup ( map )
function script siege_setup {
.@m$=getarg(0);
- .@msg$=getarg(1, "");
addmapmask .@m$, MASK_MATTACK;
changemusic .@m$, any("mythica.ogg", "eric_matyas_ghouls.ogg", "misuse.ogg", "Arabesque.ogg");
disablenpc("Mana Stone");
pvpon(.@m$);
setmapflag(.@m$,mf_bexp,rand(120,140)); // 20~40% EXP UP on siege maps
- if (.@msg$ != "")
- kamibroadcast(col(.@msg$,1));
return;
}