diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-06-22 23:05:34 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-06-22 23:05:34 -0300 |
commit | ec78c5c7134ca53b8eeea22e6975f9e515f69430 (patch) | |
tree | 098354b0cf9850d6a9a0562b0428402aaa794dcc /npc/functions/mobpoint.txt | |
parent | 55bd7b7d2eab6448d9515c0d2ac059f3ef281202 (diff) | |
download | serverdata-ec78c5c7134ca53b8eeea22e6975f9e515f69430.tar.gz serverdata-ec78c5c7134ca53b8eeea22e6975f9e515f69430.tar.bz2 serverdata-ec78c5c7134ca53b8eeea22e6975f9e515f69430.tar.xz serverdata-ec78c5c7134ca53b8eeea22e6975f9e515f69430.zip |
Hasan Autumn's Scorpion Killing Quest!! :inGame_N:
During autumn, you have 3 months to kill scorpions and get Hasan's money.
You can also donate to event. Rewards only claimable during Winter.
Diffstat (limited to 'npc/functions/mobpoint.txt')
-rw-r--r-- | npc/functions/mobpoint.txt | 8 |
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; } |