summaryrefslogtreecommitdiff
path: root/npc/006-9/ctrl.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/006-9/ctrl.txt')
-rw-r--r--npc/006-9/ctrl.txt10
1 files changed, 9 insertions, 1 deletions
diff --git a/npc/006-9/ctrl.txt b/npc/006-9/ctrl.txt
index b533a6820..1a3861c6e 100644
--- a/npc/006-9/ctrl.txt
+++ b/npc/006-9/ctrl.txt
@@ -30,9 +30,17 @@ OnTouch:
if (Zeny < .price) close;
next;
mesc l("Begin?");
- if (askyesno() == ASK_NO || Zeny < .price) {
+ menuint
+ l("Yes"), ASK_YES,
+ l("No"), ASK_NO,
+ l("Scoreboards"), -1;
+ mes "";
+ if (@menuret == ASK_NO || Zeny < .price) {
closeclientdialog;
close;
+ } else if (@menuret < 0) {
+ HallOfBloodbath();
+ close;
}
Zeny-=.price;