New script - gota.io

7/29/2023, 8:52:32 PM

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(Tôi đã có Trình quản lý tập lệnh người dùng, hãy cài đặt nó!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name        New script - gota.io
// @namespace   Violentmonkey Scripts
// @match       https://gota.io/web/
// @grant       none
// @version     1.0
// @author      -
// @description 7/29/2023, 8:52:32 PM
// ==/UserScript==


let intervalId = null;

function processKeyPress() {
  const playerName = document.querySelector("#context-name").innerText;

  // Mostrar el nombre del jugador en la consola
  console.log("Nombre del jugador:", playerName);

  document.querySelector("#menu-pu_pr").click();
}

document.addEventListener("keydown", function(event) {
  if (event.key === "Y" || event.key === "y") {
    if (!intervalId) {
      
      intervalId = setInterval(processKeyPress, 1000); // Repetir cada 1000 ms (1 segundo)
    } else {
      // Detener el proceso si ya está en ejecución
      clearInterval(intervalId);
      intervalId = null;
    }
  }
});