Infernal Wars - Forum
Commands Left/Right village switch for hotkey use - Printable Version

+- Infernal Wars - Forum (https://forum.infernal-wars.com)
+-- Forum: General (https://forum.infernal-wars.com/forumdisplay.php?fid=9)
+--- Forum: Scripts & Independent Tools (https://forum.infernal-wars.com/forumdisplay.php?fid=51)
+---- Forum: Approved Scripts (https://forum.infernal-wars.com/forumdisplay.php?fid=55)
+---- Thread: Commands Left/Right village switch for hotkey use (/showthread.php?tid=486)



Left/Right village switch for hotkey use - Carbon - 21-11-2024

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
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());