//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?
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: