diff options
-rw-r--r-- | npc/015-2/guard.txt | 9 | ||||
-rw-r--r-- | npc/015-2/lordcave.txt | 3 |
2 files changed, 8 insertions, 4 deletions
diff --git a/npc/015-2/guard.txt b/npc/015-2/guard.txt index 6b3b679e4..6efe4c4b0 100644 --- a/npc/015-2/guard.txt +++ b/npc/015-2/guard.txt @@ -38,8 +38,10 @@ L_BanditLord: next; mesn strcharinfo(0); select - l("There was nobody on the Bandit Lord's room."), - l("I'm going, don't worry."); + l("I'm going, don't worry."), + l("There was nobody on the Bandit Lord's room."); + if (@menu == 1) + close; mes ""; mesn; mesq l("...Have you ever gone there yet?"); @@ -49,6 +51,9 @@ L_BanditLord: next; mesn; mesq l("In fact, Bryant is my brother, and he lives in a cave, and he probably have a high level quest too, but that's not important now."); + next; + mesn; + mesq l("Go kill the Bandit Lord!"); close; OnInit: diff --git a/npc/015-2/lordcave.txt b/npc/015-2/lordcave.txt index 34d70c4c4..5e403db98 100644 --- a/npc/015-2/lordcave.txt +++ b/npc/015-2/lordcave.txt @@ -2,12 +2,11 @@ // Author: // Jesusalva -015-2,94,255,0 script #BanditLordDen NPC_HIDDEN,0,0,{ +015-2,94,225,0 script #BanditLordDen NPC_HIDDEN,0,0,{ end; OnTouch: if (countitem(SilverKey) >= 1) goto L_Summon; - // Doesn't works for some reason: dispbottom l("This passage seems sealed. If I only had a @@...", getitemlink(SilverKey)); end; |