- script MvPKill ,{
OnNPCKillEvent:
if( getmonsterinfo( killedrid,MOB_MVPEXP ) ){
set .Dice,rand(1,10000){ // 1 = 0,01%
if(.Dice <= .Chance){
getitem2 .PossibleItems[.RandItem],1,rand(.MinEnchant,.MaxEnchant),0,.RandEnchant1,.RandEnchant2,.RandEnchant3,.RandEnchant4;
}
}
}
end;
OnInit:
set .Chance,2; // Set the drop chance here
setarray .PossibleItems[0], ;//<- Put your items IDs here. I.E: .PossibleItems[0],123,124,125;
setarray .PossibleEnchants[0], ;//<- Put your enchants IDs here
set .MinEnchant,0; // Minimum possible enchant
set .MaxEnchant,20; // Max Possible enchant
set .RandItem,rand(.SizeItem);
set .RandEnchant1,rand(.SizeEnchants);
set .RandEnchant2,rand(.SizeEnchants);
set .RandEnchant3,rand(.SizeEnchants);
set .RandEnchant4,rand(.SizeEnchants);
set .SizeItem,getarraysize(.PossibleItems);
set .SizeEnchants,getarraysize(.PossibleEnchants);
end;
}
Haven't tested it tho, so let me know if anything goes wrong ?
Have in mind it will get you an item with enchants on the 4 slots.