diff options
Diffstat (limited to 'npc')
-rw-r--r-- | npc/001-7/homunculus.txt | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/npc/001-7/homunculus.txt b/npc/001-7/homunculus.txt index bd14db3a4..1f2b5ef02 100644 --- a/npc/001-7/homunculus.txt +++ b/npc/001-7/homunculus.txt @@ -13,7 +13,7 @@ OnTouch: .@q=getq(General_Narrator); .@q2=getq2(General_Narrator); // Cheater Detected - if (.@q < 13) { + if (.@q < 15) { warp "Save", 0, 0; percentheal -100, -100; return false; @@ -34,7 +34,7 @@ OnTouch: .@n=getq(General_Narrator); .@q=getq2(FrostiaQuest_Homunculus); // Cheater Detected - if (.@n < 13) { + if (.@n < 15) { warp "Save", 0, 0; percentheal -100, -100; return false; @@ -49,3 +49,17 @@ OnTouch: } // Okay, we're done with basic warps +001-7,50,112,0 script Abandoned Fountain#MKH NPC_NO_SPRITE,{ + .@q=getq2(FrostiaQuest_Homunculus); + mesn; + mesc l("Meh."); + if (!(.@q & .objID)) + setq2 FrostiaQuest_Homunculus, .@q|.objID; + close; +OnInit: + .objID=1; + .distance=3; + end; +} + + |