M
Moxxy
Hello all,
When the bot enters low mana mode it wont enter the portal immediately. Here is the fix for it so you wont stand there and die.
In MarsBrandMeph.d2i change one walkto call in function movetoportal() from this:
case "heal":
walkto(5132, 5091);
walkto(5143, 5088);
if (esp) mbm_FastCast(ENERGYSHIELD);
walkto(5149, 5082);
if (asp != "none") mbm_FastCast(asp);
walkto(5153, 5076);
break;
to this:
case "heal":
walkto(5132, 5091);
walkto(5143, 5088);
if (esp) mbm_FastCast(ENERGYSHIELD);
walkto(5149, 5082);
if (asp != "none") mbm_FastCast(asp);
walkto(5156, 5070); // <-- fixxed here by Moxxy
break;
then also in function mbm_TakePortal() comment out the me.move call, from this:
print("Entering portal...");
me.move(portal.x, portal.y);
for (var x = 0; x < 5 && calcrange(portal.x, portal.y) >= PortalMinDist; x++) {
delay(100);
}
to this:
print("Entering portal...");
// me.move(portal.x, portal.y); // <-- fixxed by Moxxy
for (var x = 0; x < 5 && calcrange(portal.x, portal.y) >= PortalMinDist; x++) {
delay(100);
}
When the bot enters low mana mode it wont enter the portal immediately. Here is the fix for it so you wont stand there and die.
In MarsBrandMeph.d2i change one walkto call in function movetoportal() from this:
case "heal":
walkto(5132, 5091);
walkto(5143, 5088);
if (esp) mbm_FastCast(ENERGYSHIELD);
walkto(5149, 5082);
if (asp != "none") mbm_FastCast(asp);
walkto(5153, 5076);
break;
to this:
case "heal":
walkto(5132, 5091);
walkto(5143, 5088);
if (esp) mbm_FastCast(ENERGYSHIELD);
walkto(5149, 5082);
if (asp != "none") mbm_FastCast(asp);
walkto(5156, 5070); // <-- fixxed here by Moxxy
break;
then also in function mbm_TakePortal() comment out the me.move call, from this:
print("Entering portal...");
me.move(portal.x, portal.y);
for (var x = 0; x < 5 && calcrange(portal.x, portal.y) >= PortalMinDist; x++) {
delay(100);
}
to this:
print("Entering portal...");
// me.move(portal.x, portal.y); // <-- fixxed by Moxxy
for (var x = 0; x < 5 && calcrange(portal.x, portal.y) >= PortalMinDist; x++) {
delay(100);
}