- script OnNPCKillEvent -1,{
OnNPCKillEvent:
if(killedrid!=<MONSTER ID HERE>)end;
getitem 673,1;
end;
}
if you want to use more then one monster id:
setarray .monsterids[0],<monster id here>,<monster id here>,...;
OnNPCKillEvent:
for(set .@i, 0; .@i<getarraysize(.monsterids);set.@i,.@i+1)
{
if(killedrid==.monsterids[.@i])
{
getitem 673,1;
end;
}
}
end;
didn't tested but should work I think.