diff options
-rw-r--r-- | npc/004-2/mirio.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/npc/004-2/mirio.txt b/npc/004-2/mirio.txt index ae087b009..4c149eb4f 100644 --- a/npc/004-2/mirio.txt +++ b/npc/004-2/mirio.txt @@ -157,7 +157,7 @@ function running { .@r = getq3(HalinarzoQuest_Speed); @pachua = 0; mesn; - mesq l("...And stop! You took %s this time!", FuzzyTime(.@t)); + mesq l("...And stop! You took %s this time!", FuzzyTime(.@to)); if (.@t < 15) { mesc l("That's obviously impossible, so I'll voiding your result!"); close; @@ -202,16 +202,16 @@ function retry { .@s = 40 + (.@q * 5); if (readparam2(bAgi) < .@s) slow(.@s); mesn; - mesq l("To retry, I will charge you %d GP or %d %s for each attempt made. You'll have less time to finish as well.", .@p, .@q, getitemlink(.alt)); + mesq l("To retry, I will charge you %d GP or %d %s for each attempt made. You'll have less time to finish as well.", .@p, .@q * 2, getitemlink(.alt)); next; select l("Not now, thanks."), rif(Zeny >= .@p, l("I'll pay the GP.")), - rif(countitem(.alt) >= .@q, l("I'll give you the item.")); + rif(countitem(.alt) >= .@q * 2, l("I'll give you the item.")); mes ""; if (@menu == 1) close; if (@menu == 2) Zeny -= .@p; - if (@menu == 3) delitem .alt, .@q; + if (@menu == 3) delitem .alt, .@q * 2; start(); return; } |