21-11-2024, 22:31
the two scripts below will help quickly move between villages
just enter the script into your quickbar and set a hotkey. keys are much faster than click click click
Village Right
Village Left
just enter the script into your quickbar and set a hotkey. keys are much faster than click click click
Village Right
Code:
javascript:const buttons = document.querySelectorAll('.icon.header.arr_right');
buttons.forEach(button => button.click());
Village Left
Code:
javascript:const leftButtons = document.querySelectorAll('.icon.header.arr_left');
leftButtons.forEach(button => button.click());