summaryrefslogblamecommitdiff
path: root/npc/functions/mobpoint.txt
blob: a9d69af05cccd529e457691dd7ee577adde08059 (plain) (tree)
























                                                                               
// 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;
}