all monsters
- script monsterdrop -1,{
OnNPCKillEvent:
if(rand(100) <= 9){//9%
getitem(502,1);//item id is the 502
}
end;
}
only in lhz_dun03
- script monsterdrop -1,{
OnNPCKillEvent:
if(strcharinfo(3) == "lhz_dun03"){//map name lhz_dun03
if(rand(100) <= 9){//9%
getitem(502,1);//item id is the 502
}
}
end;
}