diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-05-26 18:22:25 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-05-26 18:22:25 -0300 |
commit | 341ad533e9fd76dae658f6b0b01adebc57bf7f05 (patch) | |
tree | 0d9e53b9515e775e9fa54a7c6143715504a3a13e /npc | |
parent | 2868ebdf5c5f64a78788dc02c52aa4284dcbefa2 (diff) | |
download | serverdata-341ad533e9fd76dae658f6b0b01adebc57bf7f05.tar.gz serverdata-341ad533e9fd76dae658f6b0b01adebc57bf7f05.tar.bz2 serverdata-341ad533e9fd76dae658f6b0b01adebc57bf7f05.tar.xz serverdata-341ad533e9fd76dae658f6b0b01adebc57bf7f05.zip |
Nylo - Replace the YES/NO with more clear YES IM DONE/NO I WANNA RETRY
Diffstat (limited to 'npc')
-rw-r--r-- | npc/005-1-1/main.txt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/npc/005-1-1/main.txt b/npc/005-1-1/main.txt index f7d1ab672..93db929e2 100644 --- a/npc/005-1-1/main.txt +++ b/npc/005-1-1/main.txt @@ -221,7 +221,11 @@ OnFinish: inventoryplace RoundLeatherShield, 1; mesc l("Complete Quest?"); mesc l("You won't be able to aim for a better record!"); - if (askyesno() == ASK_YES) { + menuint + l("Yes, I'm done with it."), ASK_YES, + l("No, I want to aim for a higher score."), ASK_NO; + mes ""; + if (@menuret == ASK_YES) { setq CandorQuest_Marggo, 1; Zeny=Zeny+300; getexp .@ratio*8/10, (.@ratio/3); |