kolton / d2bot-with-kolbot

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

any way for the follow bot when dies to not chicken #817

Open cloviskhan opened 5 years ago

cloviskhan commented 5 years ago

what to change so it continues 2 leech and not leave game or sit dead

mf022 commented 5 years ago

default lines 635-643 from Follower.js

        if (me.mode === 17) {
            while (!me.inTown) {
                me.revive();
                delay(1000);
            }

            Town.move("portalspot");
            say("I'm alive!");
        }

will allow your toon to revive.

Be sure that you have disabled the chicken part in char config

    Config.LifeChicken = 0; // Exit game if life is less or equal to designated percent.

be sure that you are using the limedrop-utf8 branch and in char config you have:

    Config.LocalChat.Enabled = true; // enable the LocalChat system
    Config.LocalChat.Mode = 2; // 0 = disabled, 1 = chat from 'say' (recommended), 2 = all chat (for manual play)
cloviskhan commented 5 years ago

what is limedrop-utf8 and my charconfig dont have that chat can i jus add that ?

mf022 commented 5 years ago

Did you downloaded the whole repository - https://github.com/kolton/d2bot-with-kolbot/?

in this case use the ...\branches\limedrop-utf8 folder. You find other version of D2Bot.exe there, and a lot of improvements. Update your char config. And do not try to update the D2Bot.exe(manager) via GUI message (that will break D2Bot.exe, D2BS.dll, D2BS.pdb, patch.json files).

For local chat there are many other changes that have to be added in the master(trunk) in order to work.