summaryrefslogtreecommitdiff
path: root/npc/functions/mobpoint.txt
blob: 8853c080cc79faa9bc4e0cd14db380ab07335799 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// TMW2 Scripts
// Author: Crazyfefe
//         Jesusalva
// Desc:   Mob Points for Aidan & Ishi. You will gain MONSTER-LEVEL mob points.

function	script	mobpoint	{
    if (!MPQUEST) goto L_Return;
    //if (killedrid < 1002) goto L_Return;

    Mobpt = Mobpt + strmobinfo(3,killedrid);


L_Return:
    //set @value, 0;
    return;

}

000-0,0,0,0	script	#mobptsys	NPC_HIDDEN,{
    end;

OnNPCKillEvent:
    callfunc "mobpoint";
    end;
}