diff options
author | Jesusaves <cpntb1@ymail.com> | 2022-02-04 15:40:47 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2022-02-04 15:40:47 -0300 |
commit | 25bc6e5ed161092630d8622c71689987eb54778e (patch) | |
tree | 11dbcb5275cbfb38d3d6583ab519b65823d9e51f /npc/004-2/mirio.txt | |
parent | eba87fde79daedc5721daeda218e0a96e3d3307d (diff) | |
download | serverdata-25bc6e5ed161092630d8622c71689987eb54778e.tar.gz serverdata-25bc6e5ed161092630d8622c71689987eb54778e.tar.bz2 serverdata-25bc6e5ed161092630d8622c71689987eb54778e.tar.xz serverdata-25bc6e5ed161092630d8622c71689987eb54778e.zip |
Live testing, except I have no idea how long it takes XD
Diffstat (limited to 'npc/004-2/mirio.txt')
-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; } |