diff options
-rw-r--r-- | npc/003-1-1/yetiking.txt | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/npc/003-1-1/yetiking.txt b/npc/003-1-1/yetiking.txt index 2382f87ac..948d3e79d 100644 --- a/npc/003-1-1/yetiking.txt +++ b/npc/003-1-1/yetiking.txt @@ -5,7 +5,9 @@ // Celestia Yeti King's quest. Designed so if you're with 4 players, all 4 can // summon the Yeti King, helping you while doing the quest by themselves. -// setnpcdisplay getarg(0), NPC_YETI_KING +// Notes: +// $@GM_OVERRIDE +// Only possible with @set command, overrides the co-op requeriment. 003-1-1,94,21,0 script #YetiKing NPC_SUMMONING_CIRC,{ @@ -36,7 +38,7 @@ OnTimer2000: end; OnTimer5000: - if (getareausers("003-1-1", 5) < 2) { + if (getareausers("003-1-1", 5) < 2 && !$@GM_OVERRIDE) { npctalk("A lone adventurer? Pft. I'm back to my slumber!"); } else { npctalk("You're courageous to summon me, I'll give you that."); |