mario client

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

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey, Greasemonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

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

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

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

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्क्रिप्ट व्यवस्थापक एक्स्टेंशन इंस्टॉल करावे लागेल.

(माझ्याकडे आधीच युझर स्क्रिप्ट व्यवस्थापक आहे, मला इंस्टॉल करू द्या!)

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

(माझ्याकडे आधीच युझर स्टाईल व्यवस्थापक आहे, मला इंस्टॉल करू द्या!)

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