summaryrefslogtreecommitdiff
path: root/npc/006-0/core.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/006-0/core.txt')
-rw-r--r--npc/006-0/core.txt16
1 files changed, 8 insertions, 8 deletions
diff --git a/npc/006-0/core.txt b/npc/006-0/core.txt
index 322023cb6..baa3478b7 100644
--- a/npc/006-0/core.txt
+++ b/npc/006-0/core.txt
@@ -6,15 +6,8 @@
end;
OnTouch:
- if (CRAZYPOINTS) goto L_Accept; // FIXME
- // Reject
- specialeffect(5000, SELF, getcharid(3));
- dispbottom l("The power which lies in Candor rejects your strength.");
- sleep2(3000);
- specialeffect(5002, SELF, getcharid(3));
- end;
+ if (CRAZYPOINTS < 1) goto L_Reject; // FIXME
-L_Accept:
specialeffect(5000, SELF, getcharid(3));
dispbottom l("The power which lies in Candor acknowledges your strength.");
sleep2(2500);
@@ -22,4 +15,11 @@ L_Accept:
sleep2(500);
specialeffect(5001, SELF, getcharid(3));
end;
+
+L_Reject:
+ specialeffect(5000, SELF, getcharid(3));
+ dispbottom l("The power which lies in Candor rejects your strength.");
+ sleep2(3000);
+ specialeffect(5002, SELF, getcharid(3));
+ end;
}