From 32be77b5b77db62f630543e78e25397a2f999cde Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Wed, 13 Jun 2018 00:10:14 -0300 Subject: Give a 10% bonus on Monster Points, so a Lv 100 Monster gives 110 MobPt. --- npc/functions/mobpoint.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'npc/functions/mobpoint.txt') diff --git a/npc/functions/mobpoint.txt b/npc/functions/mobpoint.txt index a9d69af05..f79996e6e 100644 --- a/npc/functions/mobpoint.txt +++ b/npc/functions/mobpoint.txt @@ -7,7 +7,10 @@ function script mobpoint { if (!MPQUEST) goto L_Return; //if (killedrid < 1002) goto L_Return; - Mobpt = Mobpt + strmobinfo(3,killedrid); + // You get MobLv + 10% as MobPoints. + // So a level 100 monster gives you 110 MobPt. + .@addval=atoi(strmobinfo(3,killedrid))*11/10; + Mobpt = Mobpt + .@addval; L_Return: -- cgit v1.2.3-60-g2f50