summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2018-08-09 15:00:37 -0300
committerJesusaves <cpntb1@ymail.com>2018-08-09 15:00:37 -0300
commit4202ad408c8c0180974b76e569407e7a39f9d6c8 (patch)
tree524cb2d57665f32dc7d1c66ddb8c8d7e59642989
parente009fd5ccbed1835cc1a60d389b791c04568d615 (diff)
downloadserverdata-4202ad408c8c0180974b76e569407e7a39f9d6c8.tar.gz
serverdata-4202ad408c8c0180974b76e569407e7a39f9d6c8.tar.bz2
serverdata-4202ad408c8c0180974b76e569407e7a39f9d6c8.tar.xz
serverdata-4202ad408c8c0180974b76e569407e7a39f9d6c8.zip
Attempt to fix Mana Stone
-rw-r--r--npc/011-1/manastone.txt5
1 files changed, 4 insertions, 1 deletions
diff --git a/npc/011-1/manastone.txt b/npc/011-1/manastone.txt
index 543acbc4a..df39a6409 100644
--- a/npc/011-1/manastone.txt
+++ b/npc/011-1/manastone.txt
@@ -65,7 +65,10 @@ L_LevelUp:
if (!MAGIC_LVL) mes l("Magic Power is granted to you, but you die from it.");
if (MAGIC_LVL) mes l("More Magic Power is granted to you, but you die from it.");
MAGIC_LVL = MAGIC_LVL+1;
- getexp readparam(NextBaseExp)*getbattleflag(death_penalty_base)/1000, readparam(NextJobExp)*getbattleflag(death_penalty_job)/1000;
+ // Magic Numbers work better
+ getexp readparam(NextBaseExp)*771/1000, readparam(NextJobExp)*500/1000;
+ // Non-magic numbers work bad
+ //getexp readparam(NextBaseExp)*getbattleflag(death_penalty_base)/1000, readparam(NextJobExp)*getbattleflag(death_penalty_job)/1000;
percentheal -100, -100;
close;