summaryrefslogtreecommitdiff
path: root/npc/functions/mobpoint.txt
blob: 84b8f91c007989c2e37fa313e10ee378388ed2b6 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// TMW2 Scripts
// Author: Crazyfefe
//         Jesusalva
// Desc:   Mob Points for Aidan & Ishi. You will gain MONSTER-LEVEL mob points.

function	script	mobpoint	{
    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;
    return;

}

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

OnNPCKillEvent:
    // Remove undue Job exp
    // The check is probably correct, but setparam is not working =/
    if (strmobinfo(7, killedrid) == 0 && readparam(JobExp) > 0) {
        setparam(JobExp, readparam(JobExp)-1);
        if (is_admin())
            addtimer(200, "#mobptsys::OnDelJExp");
    }

    // call functions
    callfunc "mobpoint";
    callfunc "SQuest_Hasan";
    end;

OnDelJExp:
    setparam(JobExp, 100);
    dispbottom "Totally broken";
    end;
}