diff options
Diffstat (limited to 'npc/config/magic.txt')
-rw-r--r-- | npc/config/magic.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/npc/config/magic.txt b/npc/config/magic.txt index 95f9eb1b8..f7b22d47c 100644 --- a/npc/config/magic.txt +++ b/npc/config/magic.txt @@ -19,10 +19,11 @@ function script GetManaExp { .@sk=getarg(0); .@pt=getarg(1); + .@bonus=rand(0,getskilllv(TMW2_SAGE)*3/2); if (LAST_SKILL == .@sk) end; LAST_SKILL=.@sk; - MAGIC_EXP=MAGIC_EXP+.@pt; + MAGIC_EXP=MAGIC_EXP+.@pt+.@bonus; end; } |