mario client

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

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.

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

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