summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2021-01-16 15:32:50 -0300
committerJesusaves <cpntb1@ymail.com>2021-01-16 15:32:50 -0300
commit03fe725bc069af8a1139a845f99c793d77f8f5d6 (patch)
tree3cbf1b8b847e862dee9d3c6428530fe50ec9680a
parente7df63016068475155a4eb2f9640a30279251589 (diff)
downloadserverdata-03fe725bc069af8a1139a845f99c793d77f8f5d6.tar.gz
serverdata-03fe725bc069af8a1139a845f99c793d77f8f5d6.tar.bz2
serverdata-03fe725bc069af8a1139a845f99c793d77f8f5d6.tar.xz
serverdata-03fe725bc069af8a1139a845f99c793d77f8f5d6.zip
Fix exploit on Emma, lower advanced ratio to 450 GP/RP (it is 300 on std mode)
-rw-r--r--npc/027-0/emma.txt8
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;