diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-04-07 14:36:37 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-04-07 14:36:37 -0300 |
commit | e6e6ee8b7510c0270d29c9628b48b8d40367649f (patch) | |
tree | ab97247ffa6d0798f83cfadb52b0d6de5ea7f6f2 /npc/003-1/lieutenantdausen.txt | |
parent | 9a1a3cf60b9b86f67e8c572e7af1f64575294cee (diff) | |
download | serverdata-e6e6ee8b7510c0270d29c9628b48b8d40367649f.tar.gz serverdata-e6e6ee8b7510c0270d29c9628b48b8d40367649f.tar.bz2 serverdata-e6e6ee8b7510c0270d29c9628b48b8d40367649f.tar.xz serverdata-e6e6ee8b7510c0270d29c9628b48b8d40367649f.zip |
Custom Dialogs for Yuna and Biscop
Diffstat (limited to 'npc/003-1/lieutenantdausen.txt')
-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; |