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

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

hakoo

New Member
Joined
Oct 30, 2014
Messages
14
Reaction score
0
//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:
pls need help which file should i edit to make it work?
 
Back
Top