diff options
Diffstat (limited to 'npc/functions/mobpoint.txt')
-rw-r--r-- | npc/functions/mobpoint.txt | 5 |
1 files changed, 4 insertions, 1 deletions
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: |