Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Finally FIXED the MH + Auto/FastPick #3199

Open
Oesterluca opened this issue Jul 13, 2024 · 1 comment
Open

Finally FIXED the MH + Auto/FastPick #3199

Oesterluca opened this issue Jul 13, 2024 · 1 comment

Comments

@Oesterluca
Copy link

Hey Guys,
just wanted to present you my final working result on the big issue for playing manual and using both MH and AutoPick/FastPick

Let me guide you:

  1. get the latest version of Kolbot!
  2. follow the path and insert your char config (soreceress.xxx.js) here: d2bs\kolbot\libs\manualplay\config
  3. Open your char config and set line 26: Scripts.UserAddon = true;
  4. Set Config.FastPick = true;
  5. follow the path d2bs\kolbot and open your default.dbj
  6. line 48 to line 60 will be this:

// SoloPlay runs in it's own thread - check to ensure it exists in the files
if (getScript("D2BotSoloPlay.dbj") && FileTools.exists("libs/SoloPlay/SoloPlay.js")) {
load("libs/SoloPlay/SoloPlay.js");
getScript(true).stop(); // kill this thread
return true;
}

// map mode runs in it's own thread
if (getScript("d2botmap.dbj")) {
load("libs/manualplay/main.js");
getScript(true).stop(); // kill this thread
return true;

  1. mark the lines and exchange them for this and save the file:

// SoloPlay runs in it's own thread - check to ensure it exists in the files
if (getScript("D2BotSoloPlay.dbj") && FileTools.exists("libs/SoloPlay/SoloPlay.js")) {
load("libs/SoloPlay/SoloPlay.js");
getScript(true).stop(); // kill this thread
return true;
}

// Blanc
if (getScript("d2botblank.dbj")) {
load("libs/manualplay/main.js");
}

// map mode runs in it's own thread
if (getScript("d2botmap.dbj")) {
load("libs/manualplay/main.js");
getScript(true).stop(); // kill this thread
return true;
}

  1. Change your Entry Script to: D2BotBlank.dbj

If there are any issues, hit me up :)
Its working perfect for me!

Basicly its just, if u use EntryScript Blank, the new lines in the default.dbj force it to load the manualplay Config which includes the MH, the Useraddon does the rest by activating the fastpick. :)

@theBGuy
Copy link

theBGuy commented Jul 22, 2024

First off the code you are using isn't part of this repo, it's from blizzhackers/kolbot so you're not even in the right place. Second, this isn't even something to fix. It's been available for a long time to use mapmode with fastpick enabled. All you do is set Config.ManualPlayPick

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants