A keybinding tool for defending quickly in NationStates.
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

13 rindas
529 B

  1. (() =>
  2. {
  3. const moveButton: HTMLButtonElement = document.querySelector('button[name=move_region]');
  4. if (moveButton) {
  5. const localid = (document.querySelector('input[name=localid]') as HTMLInputElement).value;
  6. moveButton.addEventListener('click', (e) =>
  7. {
  8. moveButton.disabled = true;
  9. e.preventDefault();
  10. window.location.href = `/template-overall=none/page=change_region?localid=${localid}&region_name=${urlParams['region']}&move_region=1`;
  11. });
  12. }
  13. })();