blob: a9d69af05cccd529e457691dd7ee577adde08059 (
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;
}
|