i want help with auto roll when i am in raid or a party
i have this code
the problem is when the other players dont roll fast i stay still and i dont hit the next monster
i have this code
Code:
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);
BlockClientDice(true);
while (true)
{
foreach (var item in me.getDiceItems())
{
item.Dice(true);
Thread.Sleep(200);
}
Thread.Sleep(100);
break;
}
}
Last edited: