mario client

e for notime and star and such and f for noclipping and no falling have funnnnn

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         mario client
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  e for notime and star and such and f for noclipping and no falling have funnnnn
// @author       God
// @match        https://supermarioemulator.com/mario.php
// @icon         https://www.google.com/s2/favicons?domain=supermarioemulator.com
// @grant        none
// ==/UserScript==
document.addEventListener("keypress", function(e) {
    if (e.which == 101) {
        console.log("e key pressed!")
        window.xhttp = mario.star=1;
        window.xhttp = notime=1;
        window.xhttp = mario.nofall=0;
        window.xhttp = mario.nocollide=0;
    }
});

document.addEventListener("keypress", function(f) {
    if (f.which == 102) {
        console.log("f key pressed!")
        window.xhttp = mario.star=1;
        window.xhttp = notime=1;
        window.xhttp = mario.nofall=1;
        window.xhttp = mario.nocollide=1;
    }
});

document.addEventListener("keypress", function(g) {
    if (g.which == 103) {
        console.log("g key pressed!")
        window.xhttp = mario.star=1;
        window.xhttp = notime=1;
        window.xhttp = mario.gravity-=0.1;
    }
});

document.addEventListener("keypress", function(h) {
    if (h.which == 104) {
        console.log("h key pressed!")
        window.xhttp = mario.star=1;
        window.xhttp = notime=1;
        window.xhttp = mario.gravity+=0.1;
    }
});