diff options
Diffstat (limited to 'npc/functions')
-rw-r--r-- | npc/functions/mobpoint.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/functions/mobpoint.txt b/npc/functions/mobpoint.txt index 113c38157..8853c080c 100644 --- a/npc/functions/mobpoint.txt +++ b/npc/functions/mobpoint.txt @@ -4,14 +4,14 @@ // Desc: Mob Points for Aidan & Ishi. You will gain MONSTER-LEVEL mob points.
function script mobpoint {
- if (MPQUEST < 1) goto L_Return;
+ if (!MPQUEST) goto L_Return;
//if (killedrid < 1002) goto L_Return;
Mobpt = Mobpt + strmobinfo(3,killedrid);
L_Return:
- set @value, 0;
+ //set @value, 0;
return;
}
|