I want to give points for each mvp killed in desired map. Thanks in advance.
//================== Ragnarok======================
//==================Bossnia Points==================
- script Point_Bossnia -1,{
OnNPCKillEvent:
if ( getmonsterinfo( killedrid, MOB_MVPEXP ) && (strcharinfo(3) == "bossnia_01" || strcharinfo(3) == "bossnia_02" || strcharinfo(3) == "bossnia_03 || strcharinfo(3) == "bossnia_04")) {
set #BOSSNIAPOINTS, #BOSSNIAPOINTS + 1;
dispbottom "You gained "+ #BOSSNIAPOINTS +" Bossnia Points.";
end;
}
OnCheckPoint:
dispbottom "You currently have " + #BOSSNIAPOINTS + " Bossnia Points.";
end;
OnInit:
bindatcmd "bpoints", strnpcinfo(0) + "::OnCheckPoint";
end;
}