diff options
Diffstat (limited to 'npc/commands/event.txt')
-rw-r--r-- | npc/commands/event.txt | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/npc/commands/event.txt b/npc/commands/event.txt index c3d21b329..f8641f83b 100644 --- a/npc/commands/event.txt +++ b/npc/commands/event.txt @@ -157,8 +157,18 @@ OnCall: dispbottom l("You are already at the Mana Plane of Existence."); else if (getmapname() == "boss" || getmapname() == "sec_pri" || getmapname() ~= "000-*") dispbottom l("The Mana Plane is currently out of reach."); - else - warp "001-1", 235, 26; + else { + .@gt=$@AEROS_SPWN; + if (.@gt == 2) + .@gt=rand(0,1); + switch (.@gt) { + case 0: + warp "001-1", 235, 26; break; + case 1: + warp "001-1", 23, 108; break; + } + specialeffect(63, AREA, getcharid(3)); + } end; OnInit: |