What's new
  • Visit Rebornbuddy
  • Visit Resources
  • Visit API Documentation
  • Visit Downloads
  • Visit Portal
  • Visit Panda Profiles
  • Visit LLamamMagic

[Request] Item roll plug-in

crypticarsenal

New Member
Joined
Nov 24, 2013
Messages
28
Reaction score
0
Anyone have a plug-in they are willing to share that will roll only items you input and then pass on everything else? For instance on Hasla token farming?
 
Code:
List<uint> itemsToDice= new List<uint>() {id1, id2, id3, id4};
...........
onLootDice += handleLootDice;

............
void handleLootDice(Item item)
{
  if (itemsToDice.Contains(item.id)         
    item.Dice(true);
  else
    item.Dice(false);
}
 
Back
Top