diff options
author | Jesusaves <cpntb1@ymail.com> | 2024-05-22 11:47:28 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2024-05-22 11:47:28 -0300 |
commit | 1f91a5c1513e1eb1b9b68c7205a0cb58d183d44f (patch) | |
tree | f507485397522847ac3682e9f4f223c2b2ff5425 | |
parent | 5640a6421b0150c8a83951f9920ba92d2d6f881e (diff) | |
download | serverdata-1f91a5c1513e1eb1b9b68c7205a0cb58d183d44f.tar.gz serverdata-1f91a5c1513e1eb1b9b68c7205a0cb58d183d44f.tar.bz2 serverdata-1f91a5c1513e1eb1b9b68c7205a0cb58d183d44f.tar.xz serverdata-1f91a5c1513e1eb1b9b68c7205a0cb58d183d44f.zip |
Fix CI, it shouldn't be THAT broken...
-rw-r--r-- | npc/017-1/town.txt | 2 | ||||
-rw-r--r-- | npc/config/inspector.txt | 16 |
2 files changed, 14 insertions, 4 deletions
diff --git a/npc/017-1/town.txt b/npc/017-1/town.txt index 86afaeecb..29ba3bf3f 100644 --- a/npc/017-1/town.txt +++ b/npc/017-1/town.txt @@ -9,7 +9,7 @@ OnTouch: EnterTown("LoF"); end; } -017-1,229,86,0 script #LocLoF2 NPC_HIDDEN,1,3,{ +017-1,229,86,0 script #LocLoF2 NPC_HIDDEN,1,3,{ OnTouch: EnterTown("LoF"); end; } diff --git a/npc/config/inspector.txt b/npc/config/inspector.txt index 969652584..f4cce9989 100644 --- a/npc/config/inspector.txt +++ b/npc/config/inspector.txt @@ -71,8 +71,18 @@ function script inspectorQuest { Axzell the Alchemist LoF alchemist */ - mes ""; - Exception("Oops, this is not yet implemented!", RB_SPEECH); - return; + mes ""; + if (.@npc$ == "Doug") { + mesn; + mesq l("I know nothing about the robberies, sorry."); + next; + mesn; + mesq l("Besides, this room is too dark, so I wouldn't be able to see anything."); + } else { + mesn; + mesq l("I know nothing about the robberies, sorry."); + Exception("Oops, this is not yet implemented!", RB_SPEECH); + } + close; } |