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.
|
- (() =>
- {
- const moveButton: HTMLButtonElement = document.querySelector('button[name=move_region]');
- if (moveButton) {
- const localid = (document.querySelector('input[name=localid]') as HTMLInputElement).value;
- moveButton.addEventListener('click', (e) =>
- {
- moveButton.disabled = true;
- e.preventDefault();
- window.location.href = `/template-overall=none/page=change_region?localid=${localid}®ion_name=${urlParams['region']}&move_region=1`;
- });
- }
- })();
|