New script - gota.io

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

Du musst eine Erweiterung wie Tampermonkey, Greasemonkey oder Violentmonkey installieren, um dieses Skript zu installieren.

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.

Sie müssten eine Skript Manager Erweiterung installieren damit sie dieses Skript installieren können

(Ich habe schon ein Skript Manager, Lass mich es installieren!)

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