Hey. I was wondering if there’s a way to do fast diablo but also clear champions/specials on the way, but not normals like the normal diablo script. It’s, from my experience, the fastest experience gain is to do seal rushes + champions in chaos sanc.
did you see noah’s autochaos?
solo bot or team?
Solo. I’ll check it out.
Can you run that solo? Seems to say you need a sorc barb and paladin.
There’s eight calls to the method Attack.clear
in ...\d2bs\kolbot\libs\bots\Diablo.js
. Change the second argument in all of them, from 0
to Config.ClearType
. For example, the first one becomes return Attack.clear(40, Config.ClearType, name, this.sort);
.
In Notepad++, you can press Ctrl+H, click the regular expression radiobutton, put Attack.clear\(([[:digit:]]+), 0
and Attack.clear\(\1, Config.ClearType
in the search and replace text boxes respectively, click the replace all button and check that the green message says 8 occurences were replaced.
There’s two if (Attack.checkMonster(monster)) {
. Add a test for the monsters spectype, so that they become if (Attack.checkMonster(monster) && (!Config.ClearType || monster.spectype & Config.ClearType)) {
.
If you’re using Notepad++ to replace this too, don’t forget to put it back in normal search mode first.
Set Config.ClearType = 15;
in the config file, or whatever the sum of special monster types become from the list at Config.ClearType description is unclear · Issue #2040 · kolton/d2bot-with-kolbot · GitHub, and run normal diablo with or without starting from the entrance.