diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-01-15 19:58:01 +0000 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-01-15 19:58:01 +0000 |
commit | a0b0c554d4cdec963ae74615a291dac075d33229 (patch) | |
tree | fe6b1b3a2a47dae504f2a8dbf6e56c575e43c4eb /npc/015-3 | |
parent | 54b77f785404c4955cb49d74176eda10b6726520 (diff) | |
download | serverdata-a0b0c554d4cdec963ae74615a291dac075d33229.tar.gz serverdata-a0b0c554d4cdec963ae74615a291dac075d33229.tar.bz2 serverdata-a0b0c554d4cdec963ae74615a291dac075d33229.tar.xz serverdata-a0b0c554d4cdec963ae74615a291dac075d33229.zip |
Added Bat GHQ to Arkim
Diffstat (limited to 'npc/015-3')
-rw-r--r-- | npc/015-3/arkim.txt | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/npc/015-3/arkim.txt b/npc/015-3/arkim.txt index 274d9cd9b..6087333cc 100644 --- a/npc/015-3/arkim.txt +++ b/npc/015-3/arkim.txt @@ -52,7 +52,8 @@ L_Loop: Zeny=Zeny+70; break; case 3: - close; + goto L_Assign; + close; // Will never reach. break; case 4: goto L_Research; @@ -67,7 +68,8 @@ L_Timer: mesc l("You need at least level 20 to help."); mesn; mesq l("You've helped me plenty. Please come back in @@", FuzzyTime($@ARKIM_TIMER+(60*60*24),2,2)); - close; + goto L_Assign; + close; // Will never reach. // TODO L_Research: @@ -90,7 +92,8 @@ L_Research: switch (@menu) { case 1: mesq l("Good bye!"); - close; + goto L_Assign; + close; // Will never reach. break; case 2: mesq l("The @@ are specially dangerous, and archers love them.", getitemlink(CursedArrow)); @@ -139,6 +142,10 @@ L_Research: next; goto L_Research; +L_Assign: + GHQ_Assign(Bat, "Bat"); + end; + OnInit: .sex=G_MALE; .distance=5; |