You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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:
get the latest version of Kolbot!
follow the path and insert your char config (soreceress.xxx.js) here: d2bs\kolbot\libs\manualplay\config
Open your char config and set line 26: Scripts.UserAddon = true;
Set Config.FastPick = true;
follow the path d2bs\kolbot and open your default.dbj
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;
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;
}
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. :)
The text was updated successfully, but these errors were encountered:
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
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:
// 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;
// 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;
}
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. :)
The text was updated successfully, but these errors were encountered: