diff options
Diffstat (limited to 'npc/018-6-2/main.txt')
-rw-r--r-- | npc/018-6-2/main.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/npc/018-6-2/main.txt b/npc/018-6-2/main.txt index d34deb632..0e1ebf7ce 100644 --- a/npc/018-6-2/main.txt +++ b/npc/018-6-2/main.txt @@ -76,13 +76,13 @@ OnTouch: // East hall not yet enabled, we must repeat if (!(.@q3 & 128)) { // Mark the west hall as complete (again) - addtimer("#01862_InstCtrl::OnLevel4", 100); + addtimer(100, "#01862_InstCtrl::OnLevel4"); setq3 LoFQuest_Barbara, .@q3|64; disablenpc instance_npcname(.name$, .@q2); warp BarbaraInstCheck(2), 90, 32; } else { // Quest is over! - setq3 LoFQuest_Barbara, 5; + setq3 LoFQuest_Barbara, 7; disablenpc instance_npcname(.name$, .@q2); enablenpc instance_npcname("#ToForgottenShrine", .@q2); warp BarbaraInstCheck(0), 90, 112; @@ -113,13 +113,13 @@ OnTouch: // West hall not yet enabled, we must repeat if (!(.@q3 & 64)) { // Mark the east hall as complete (again) - addtimer("#01862_InstCtrl::OnLevel4", 100); + addtimer(100, "#01862_InstCtrl::OnLevel4"); setq3 LoFQuest_Barbara, .@q3|128; disablenpc instance_npcname(.name$, .@q2); warp BarbaraInstCheck(2), 90, 32; } else { // Quest is over! - setq3 LoFQuest_Barbara, 5; + setq3 LoFQuest_Barbara, 7; disablenpc instance_npcname(.name$, .@q2); enablenpc instance_npcname("#ToForgottenShrine", .@q2); warp BarbaraInstCheck(0), 90, 112; |