diff options
Diffstat (limited to 'npc/023-3-1/logic.txt')
-rw-r--r-- | npc/023-3-1/logic.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/npc/023-3-1/logic.txt b/npc/023-3-1/logic.txt index 15f1e80de..a4bba6acc 100644 --- a/npc/023-3-1/logic.txt +++ b/npc/023-3-1/logic.txt @@ -16,7 +16,7 @@ OnTouch: // Cheater Detected if (.@n < 15) { warp "Save", 0, 0; - percentheal -100, -100; + die(); end; } if (.@q < 3) { @@ -41,7 +41,7 @@ OnTouch: // Cheater Detected if (.@n < 15) { warp "Save", 0, 0; - percentheal -100, -100; + die(); end; } if (.@n == 15) { @@ -59,7 +59,7 @@ OnTouch: .@q=getq(FrostiaQuest_Homunculus); if (.@q < 2) { dispbottom l("Error, cheater detected"); - percentheal -100, -100; + die(); end; } .@q=getq3(FrostiaQuest_Homunculus); @@ -90,7 +90,7 @@ OnTouch: .@q=getq(FrostiaQuest_Homunculus); if (.@q < 2) { dispbottom l("Error, cheater detected"); - percentheal -100, -100; + die(); end; } .@n$=instance_npcname(.name$); |