diff options
-rw-r--r-- | npc/003-1/lieutenantdausen.txt | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/npc/003-1/lieutenantdausen.txt b/npc/003-1/lieutenantdausen.txt index 4c537ead4..e8b424684 100644 --- a/npc/003-1/lieutenantdausen.txt +++ b/npc/003-1/lieutenantdausen.txt @@ -587,7 +587,12 @@ OnInit: end; } 003-2,41,37,0 script Guard Yuna NPC_GUARD2,{ - GuardHandler(9); + if (getq(TulimsharQuest_WaterForGuard) == 1) + { + CheckGuard(getarg(9)); + } else { + npctalkonce l("I like to sing."); + } end; OnInit: .sex = G_FEMALE; @@ -777,7 +782,12 @@ OnInit: .distance = 5; } 003-1,107,80,0 script Guard Biscop NPC_GUARD1,{ - GuardHandler(17); + if (getq(TulimsharQuest_WaterForGuard) == 1) + { + CheckGuard(getarg(17)); + } else { + npctalkonce l("No one is allowed past this point."); + } end; OnInit: .sex = G_OTHER; |