summaryrefslogtreecommitdiff
path: root/npc/functions/mobpoint.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/functions/mobpoint.txt')
-rw-r--r--npc/functions/mobpoint.txt8
1 files changed, 3 insertions, 5 deletions
diff --git a/npc/functions/mobpoint.txt b/npc/functions/mobpoint.txt
index 27cf31b72..9219f3b29 100644
--- a/npc/functions/mobpoint.txt
+++ b/npc/functions/mobpoint.txt
@@ -4,17 +4,14 @@
// Desc: Mob Points for Aidan & Ishi. You will gain MONSTER-LEVEL mob points.
function script mobpoint {
- if (!MPQUEST) goto L_Return;
+ if (!MPQUEST)
+ 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;
Mobpt = Mobpt + .@addval;
-
-
-L_Return:
- //set @value, 0;
return;
}
@@ -24,5 +21,6 @@ L_Return:
OnNPCKillEvent:
callfunc "mobpoint";
+ callfunc "SQuest_Hasan";
end;
}