diff options
Diffstat (limited to 'npc/003-1-1')
-rw-r--r-- | npc/003-1-1/yetiking.txt | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/npc/003-1-1/yetiking.txt b/npc/003-1-1/yetiking.txt index bda956612..2382f87ac 100644 --- a/npc/003-1-1/yetiking.txt +++ b/npc/003-1-1/yetiking.txt @@ -38,15 +38,22 @@ OnTimer2000: OnTimer5000: if (getareausers("003-1-1", 5) < 2) { npctalk("A lone adventurer? Pft. I'm back to my slumber!"); - stopnpctimer; - setnpcdisplay .name$, NPC_SUMMONING_CIRC; - .inUse=0; } else { npctalk("You're courageous to summon me, I'll give you that."); areatimer 0, "003-1-1", 93, 20, 97, 25,3000, "#YetiKing::OnSummonTalk"; + stopnpctimer; } end; +// NPC timer is stopped before reaching here, if it reaches, it means you tried +// to do the quest alone. And this is a Co-Op quest with free player numbers. +// Therefore, we must return the Yeti King to his summon circle. +OnTimer7500: + setnpcdisplay .name$, NPC_SUMMONING_CIRC; + .inUse=0; + stopnpctimer; + end; + // You can only talk to him with SummonTalk. Only one player will summon. OnSummonTalk: .@q=getq(HurnscaldQuest_Celestia); |