diff options
Diffstat (limited to 'npc/027-0/emma.txt')
-rw-r--r-- | npc/027-0/emma.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/npc/027-0/emma.txt b/npc/027-0/emma.txt index 25124152a..a44aa570e 100644 --- a/npc/027-0/emma.txt +++ b/npc/027-0/emma.txt @@ -49,7 +49,7 @@ mesq l("Ara ara? You do not have enough money with you!"); close; } - Zeny-=.cost; + Zeny-=.cost*@menuret; addtimer2(60000, .name$+"::OnTick"); @emmatick=max(@emmatick, gettimetick(2)) + @menuret*60; @emmapro=false; @@ -63,7 +63,7 @@ L_Advanced: mesq l("I actually have a special class for those with perfect magical control like you."); next; mesq l("Do you need the extra credit?"); - mesc l("Cost: %d GP/min", .cost*25); + mesc l("Cost: %d GP/min", .cost*15); mesc l("Gain: %d RP/min", .gain*10); menuint l("I've changed my mind."), 0, @@ -79,12 +79,12 @@ L_Advanced: mesq l("Then I hope you can keep your grades high, hmm hmm!"); close; } - if (Zeny < .cost*@menuret*25) { + if (Zeny < .cost*@menuret*15) { mesn; mesq l("Ara ara? You do not have enough money with you!"); close; } - Zeny-=.cost*25; + Zeny-=.cost*@menuret*15; addtimer2(60000, .name$+"::OnTick"); if (!@emmapro) @emmatick=0; |