C crypticarsenal New Member Joined Nov 24, 2013 Messages 28 Reaction score 0 Oct 10, 2014 #1 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?
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?
O Out Active Member Joined Jun 2, 2012 Messages 2,972 Reaction score 13 Oct 12, 2014 #2 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); }
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); }