diff options
Diffstat (limited to 'npc/004-2')
-rw-r--r-- | npc/004-2/bug.txt | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/npc/004-2/bug.txt b/npc/004-2/bug.txt index 4c100bf87..479fa948d 100644 --- a/npc/004-2/bug.txt +++ b/npc/004-2/bug.txt @@ -9,6 +9,23 @@ mesc "→ "+l("Canyon - Safe Route"); mesc "↓ "+l("Canyon - Dangerous Route"); close; + +OnInit: + .sex = G_OTHER; + .distance = 3; + end; +} + +004-2,81,23,0 script Sign#TempBugfix NPC_SWORDS_SIGN,{ + if (countitem(DesertTablet)) goto L_Tablet; + mesc l("Impossible to read."); + close; + +L_Tablet: + mes l("The %s shines with a strange light...", getitemlink(DesertTablet)); + next; + closeclientdialog; + cwarp "001-3", 117, 135; close; OnInit: |