summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--npc/functions/mobpoint.txt9
1 files changed, 6 insertions, 3 deletions
diff --git a/npc/functions/mobpoint.txt b/npc/functions/mobpoint.txt
index 8605f40ba..1c1883a6f 100644
--- a/npc/functions/mobpoint.txt
+++ b/npc/functions/mobpoint.txt
@@ -15,9 +15,12 @@ function script mobpoint {
return;
//if (killedrid < 1002) goto L_Return;
- // You get MobLv + 10% as MobPoints.
- // So a level 100 monster gives you 110 MobPt.
- .@addval=strmobinfo(3,killedrid)*11/10;
+ // You get MobLv + 20% as MobPoints.
+ // So a level 100 monster gives you 120 MobPt. Slimes gives no bonus.
+ if (compare("slime", strtolower(strmobinfo(1, killedrid))))
+ .@addval=strmobinfo(3,killedrid);
+ else
+ .@addval=strmobinfo(3,killedrid)*12/10;
Mobpt = Mobpt + .@addval;
return;