diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-06-22 09:41:49 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-06-22 09:41:49 -0300 |
commit | 78de6b7b7632923396899ddf38cc72238925dae1 (patch) | |
tree | 39965ff03f995bbfb1932981e3c7d8b6880368db /npc/001-1/eventmaster.txt | |
parent | 2cd832ea08834f56c81b18e664a8d58b36679fc2 (diff) | |
download | serverdata-78de6b7b7632923396899ddf38cc72238925dae1.tar.gz serverdata-78de6b7b7632923396899ddf38cc72238925dae1.tar.bz2 serverdata-78de6b7b7632923396899ddf38cc72238925dae1.tar.xz serverdata-78de6b7b7632923396899ddf38cc72238925dae1.zip |
Block @spawn on Aeros again, upgrade eventmaster, portal and soul menhir :c_:
Now you can configure if you'll use West, East, or whole aeros Island, and spawn
accordingly using the Event Master. Hooray!
Diffstat (limited to 'npc/001-1/eventmaster.txt')
-rw-r--r-- | npc/001-1/eventmaster.txt | 29 |
1 files changed, 28 insertions, 1 deletions
diff --git a/npc/001-1/eventmaster.txt b/npc/001-1/eventmaster.txt index 45583235c..1959c62e6 100644 --- a/npc/001-1/eventmaster.txt +++ b/npc/001-1/eventmaster.txt @@ -8,13 +8,26 @@ 001-1,250,20,0 script Mana Being#001-1 NPC_ALIGE_OUTSIDE_BARREL,{ function spawner { // (memo, ID, amount) // First argument is a memorand for Script Writers, usually name. It must be present, but can have whatever value you want. (Unused) - areamonster("001-1", 171, 0, 339, 158, strmobinfo(1, getarg(1)), getarg(1), getarg(2), "Mana Being#001-1::OnAerosMobDeath"); + + // [0] East [1] West [2] Full + switch($@AEROS_SPWN) { + case 1: + areamonster("001-1", 20, 20, 140, 140, strmobinfo(1, getarg(1)), getarg(1), getarg(2), "Mana Being#001-1::OnAerosMobDeath"); + break; + case 2: + areamonster("001-1", 20, 20, 340, 160, strmobinfo(1, getarg(1)), getarg(1), getarg(2), "Mana Being#001-1::OnAerosMobDeath"); + break; + default: + areamonster("001-1", 171, 0, 339, 158, strmobinfo(1, getarg(1)), getarg(1), getarg(2), "Mana Being#001-1::OnAerosMobDeath"); + break; + } } .@curmobc=mobcount("001-1", "OnAerosMobDeath"); if (!is_gm()) goto L_Unauthorized; @log_spawns=0; + @log_mode=$@AEROS_SPWN; @log_ratio=$coinsrate; mesn; @@ -31,6 +44,7 @@ L_Menu: rif(countitem(StrangeCoin) >= 10, "Drop a Toothbrush! (10x Coins)"),L_Drop, rif(countitem(StrangeCoin) >= 10, "Drop a Bronze Gift (10x Coins)"), L_Bgif, rif(countitem(StrangeCoin) >= 10, "Drop a Silver Gift (10x Coins)"), L_Sgif, + "Reconfigure spawn/warp points",L_Conf, "Adjust coins drop rate",L_Rate; L_Unauthorized: @@ -41,6 +55,7 @@ L_Unauthorized: L_Close: if (@log_spawns > 0) logmes "spawned "+str(@log_spawns)+" beigns at Aeros.", LOGMES_ATCOMMAND; if (@log_ratio != $coinsrate) logmes "set aeros ratio from "+str(@log_ratio)+" to "+str($coinsrate), LOGMES_ATCOMMAND; + if (@log_mode == $@AEROS_SPWN) logmes "configured aeros spawn area to "+str($@AEROS_SPWN), LOGMES_ATCOMMAND; close; L_Spawn: @@ -730,6 +745,18 @@ L_EventHandler: } close; +L_Conf: + mes ""; + mesn; + mesq l("Current Spawn Mode: "+$@AEROS_SPWN); + next; + select + l("[0] East Aeros"), + l("[1] West Aeros"), + l("[2] Full Aeros"); + $@AEROS_SPWN=@menu-1; + goto L_Menu; + OnAerosMobDeath: if ($coinsrate < 0) end; // A level 100 monster can have a 4% drop bonus against a level 0 monster. |