Just wanted to share this little pice of code with u guys/girls
It just opens all those Purses in ure bag automaticaly. Can be used as an aditional thread in ure grinding bot or standalone.
In this case it justs opens all Priest's Coinpurses but u can open any other to of corse.
Code:
List<Item> InvItems = getInvItems("Priest's Coinpurse");
foreach (Item InvItem in InvItems)
{
while(InvItem.count > 0)
{
Log("#items :" + InvItem.count);
InvItem.UseItem(true);
while(me.isGlobalCooldown)
{
Thread.Sleep(50);
}
}
}
It just opens all those Purses in ure bag automaticaly. Can be used as an aditional thread in ure grinding bot or standalone.
In this case it justs opens all Priest's Coinpurses but u can open any other to of corse.