diff options
-rw-r--r-- | npc/021-1/logic.txt | 2 | ||||
-rw-r--r-- | npc/021-3/doors.txt | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/npc/021-1/logic.txt b/npc/021-1/logic.txt index 4bdbea71d..61b5ff8d4 100644 --- a/npc/021-1/logic.txt +++ b/npc/021-1/logic.txt @@ -6,6 +6,8 @@ // Cave logic 021-1,155,196,0 script #MainLogic NPC_NO_SPRITE,0,0,{ + .@q=getq(NivalisQuest_Cindy); + if (.@q < 4) end; if ($@CINDY_STATE > gettimetick(2) || $@CINDY_STATE == 0) goto L_Safe; if ($@CINDY_STATE % 2 == 0) goto L_Blocked; warp "021-2", 80, 102; diff --git a/npc/021-3/doors.txt b/npc/021-3/doors.txt index 012b95104..00ebfaaa5 100644 --- a/npc/021-3/doors.txt +++ b/npc/021-3/doors.txt @@ -16,6 +16,6 @@ L_Blocked: end; L_Safe: - dispbottom l("Are you crazy - the Yeti King could be there!"); + dispbottom l("There's no need to go in that Yeti infested den right now."); end; } |