diff options
author | jesusalva <cpntb1@ymail.com> | 2018-03-07 16:49:51 -0300 |
---|---|---|
committer | jesusalva <cpntb1@ymail.com> | 2018-03-07 16:49:51 -0300 |
commit | 2ace59810cd286f1f7d70f97cd3091eba34e52ed (patch) | |
tree | 3a98131e301076825a561edf0646f8a4fdacc4cd /npc | |
parent | dc690d5f651f26498549b8d011ffa18433e826bb (diff) | |
download | serverdata-2ace59810cd286f1f7d70f97cd3091eba34e52ed.tar.gz serverdata-2ace59810cd286f1f7d70f97cd3091eba34e52ed.tar.bz2 serverdata-2ace59810cd286f1f7d70f97cd3091eba34e52ed.tar.xz serverdata-2ace59810cd286f1f7d70f97cd3091eba34e52ed.zip |
Simplify
Diffstat (limited to 'npc')
-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;
}
|