Kolbot fastchaos help

06/28/2019 06:02 redvexchant1#1
How do i make my fastchaos bot go to the venom lord seal first(right seal) instead of vizier (left seal)

thanks!
10/30/2019 08:32 John Smith PVP#2
Quote:
this.openSeal(395);
this.openSeal(396);

if (this.vizLayout === 1) {
Pather.moveTo(7691, 5292);
} else {
Pather.moveTo(7695, 5316);
}

if (!this.getBoss(getLocaleString(2851))) {
throw new Error("Failed to kill Vizier");
}

this.openSeal(394);

if (this.seisLayout === 1) {
Pather.moveTo(7771, 5196);
} else {
Pather.moveTo(7798, 5186);
}

if (!this.getBoss(getLocaleString(2852))) {
throw new Error("Failed to kill de Seis");
}

this.openSeal(392);
this.openSeal(393);

if (this.infLayout === 1) {
delay(1);
} else {
Pather.moveTo(7928, 5295); // temp
}

if (!this.getBoss(getLocaleString(2853))) {
throw new Error("Failed to kill Infector");
}
Exchange colored boxes as you like the order your seals must be opened.
Put blue box before red one to start from Infector.