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.txt15
1 files changed, 14 insertions, 1 deletions
diff --git a/npc/006-0/core.txt b/npc/006-0/core.txt
index e12fb134f..3955a8513 100644
--- a/npc/006-0/core.txt
+++ b/npc/006-0/core.txt
@@ -6,7 +6,20 @@
end;
OnTouch:
- //warp "006-2", 49, 53;
+ if (is_staff()) goto L_Accept; // FIXME
+ // Reject
+ specialeffect(5000, SELF, .name$);
dispbottom l("The power which lies in Candor rejects your strength.");
+ sleep2(3000);
+ specialeffect(5002, SELF, .name$);
+ end;
+
+L_Accept:
+ specialeffect(5000, SELF, .name$);
+ dispbottom l("The power which lies in Candor acknowledges your strength.");
+ sleep2(2500);
+ warp "006-3", 49, 52;
+ sleep2(500);
+ specialeffect(5001, SELF, .name$);
end;
}