kolton / d2bot-with-kolbot

d2bot game manager by D3STROY3R with kolbot libs by kolton for d2bs
345 stars 332 forks source link

Follower dies and stalls. Follower runs into big mobs #1004

Open Deanoz1 opened 5 years ago

Deanoz1 commented 5 years ago

Im having 2 issues currently.

  1. The follower dies every now and then. I have disabled chicken however when the follower dies it does not respawn and return to town and reenter the tp. What can i do to fix this.

  2. The follower is lower level (15 levels less than leader) and is running into mobs before the leader has reached it and thus dieing. Is there a setting to delay this or to stay at a minimum distance when seals are hit in act 4.

Followers paste. // Paladin config file

/* Brief instructions:

function LoadConfig() { /* Sequence config

5noop commented 5 years ago
1. The follower dies every now and then. I have disabled chicken however when the follower dies it does not respawn and return to town and reenter the tp. What can i do to fix this.

You can't without rewriting the Diablohelper script or modifying toolsthread.js. There is no easy fix in either case.

2\. The follower is lower level (15 levels less than leader) and is running into mobs before the leader has reached it and thus dieing. Is there a setting to delay this or to stay at a minimum distance when seals are hit in act 4.

You can use this:

Config.Dodge = true; // Move away from monsters that get too close. Don't use with short-ranged attacks like Poison Dagger.
Config.DodgeRange = 15; // Distance to keep from monsters.
Config.DodgeHP = 85; // Dodge only if HP percent is less than or equal to Config.DodgeHP. 100 = always dodge.

They only put it in the sorc config but it's actually available for every character.