What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal
RebornBuddy Forums

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

сбор определенного лута / collecting certain item

hakoo

New Member
Joined
Oct 30, 2014
Messages
14
//Try to pickup drop from mob, if drop available
while (bestMob != null && !isAlive(bestMob) && isExists(bestMob) && bestMob.type == BotTypes.Npc && ((Npc)bestMob).dropAvailable && GetGroupStatus("autoexp") && isAlive())
{
if (me.dist(bestMob) > 3)
ComeTo(bestMob, 1);
PickupAllDrop(bestMob);
}

Чтобы собирал все кроме определенных вещей- что надо добавить / исправить? ( или авто удалял определенные вещи из сумкм)

That collected all but certain item that it is necessary to add / correct?
 
Last edited:
PHP:
foreach (var item in getAllInvItems())
{
if (item.name== "Хрень")
{
item.DeleteItem("Хрень", item.Count())
Thread.Sleep (300);
}
}
 
Благодарю )) не совсем верный кусок- но идею уловил и поправил
 
Last edited:
Back
Top