summaryrefslogtreecommitdiff
path: root/npc/006-0
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2021-08-03 13:21:57 -0300
committerJesusaves <cpntb1@ymail.com>2021-08-03 13:21:57 -0300
commit0c9c16b6f3fe8a0ad1310330a021b3d82ae301ce (patch)
treee39250a236273a844e8d8cb06a6d534eac377f4a /npc/006-0
parent7f5159b8d7dcc91022931509b9de776992f2b9ef (diff)
downloadserverdata-0c9c16b6f3fe8a0ad1310330a021b3d82ae301ce.tar.gz
serverdata-0c9c16b6f3fe8a0ad1310330a021b3d82ae301ce.tar.bz2
serverdata-0c9c16b6f3fe8a0ad1310330a021b3d82ae301ce.tar.xz
serverdata-0c9c16b6f3fe8a0ad1310330a021b3d82ae301ce.zip
Groata's Grotto.
Diffstat (limited to 'npc/006-0')
-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;
}