uhh is there any way to tell me from what squares should i get the cords/
OutdatedRealmTrack
i'll include it in the tutorial in the next version, but it's just a 3x3 square with the portal in center, get the highest and lowest x and y values, with the exception of the bazaars, that's 3x3 and 5x5 with the baz portal being the center of the left/right-most column
im still confused where do i put the cords, i get cords from the realm that is closest to top left in top left corner of the 3x3 square and closest realm in bottom right in the bottom right corner of the 3x3 square?
Where do i put these cords?
Code:
private loop(cli: Client, initial: Boolean): void {
if (initial)
setTimeout(() => this.loop(cli, false), 17100);
else {
cli.findPath({ x: 113, y: 133 });
setTimeout(() => {
cli.findPath({ x: 104, y: 125 });
setTimeout(() => this.loop(cli, false), 90000);
}, 11000);
}
}
This thread is closed for replies.
