yohoho.io mods

Use keys 1-3 to change your stats, and more. You can actually spend these coins! Good luck shed_modz

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

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

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

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.

(Zateb bir user-style yöneticim var, yükleyeyim!)

// ==UserScript==
// @name         yohoho.io mods
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Use keys 1-3 to change your stats, and more. You can actually spend these coins! Good luck shed_modz
// @author       shed_modz_
// @match        yohoho.io
// @grant        none
// ==/UserScript==

var username = document.getElementById('username');
username.placeholder = "Made By shed_modz_";
username.maxlength = 99999;

//kills
var lastkillsa = document.getElementById('last-kills');
var bestkillsa = document.getElementById('best-kills');
var totalkillsa = document.getElementById('totalkills');

//score
var lastscorea = document.getElementById('last-score');
var bestscorea = document.getElementById('best-score');
var totalscorea = document.getElementById('total-score');

//time survived
var lastgametimea = document.getElementById('last-game-time');
var bestgametimea = document.getElementById('best-game-time');
var totalgametimea = document.getElementById('total-game-time');

//ui/other style...
var skinbtna = document.getElementById('skin-button');
var playbtna = document.getElementById('play-button');

var homepagebooty = document.getElementById('homepage-booty');

window.onbeforeunload = function() {
    localStorage.coinsOwned = 999999999;
    localStorage.playerXP = 50000;
    localStorage.gamesStarted = 19343;
    localStorage.abBotSkillLevel = 1;
    localStorage.lastGameTime = 134;
    localStorage.length = 500;
    localStorage.totalGameTime = 12349922;
    localStorage.totalKills = 105324;
    localStorage.totalScore = 6783632;
    localStorage.totalWins = 32967;
};
window.onload = function() {
    localStorage.getItem('coinsOwned');
    localStorage.getItem('playerXP');
    localStorage.getItem('length');
    localStorage.getItem('abBotSkillLevel');
};

window.addEventListener("keydown", mod, false);

function mod(i) {
    //kill stats
    if(i.keyCode === 49) {//key one
        var lastkills = window.prompt("Set your last kills to");
        lastkillsa.innerHTML = lastkills;
        var bestkills = window.prompt("Set your best kills to");
        bestkillsa.innerHTML = bestkills;
        var totalkills = window.prompt("Set your total kills to");
        totalkillsa.innerHTML = totalkills;
        localStorage.length = 100;
    }
    //score stats
    if(i.keyCode === 50){
        var lastscore = window.prompt("Set your last score/loot to");
        lastscorea.innerHTML = lastscore;
        var bestscore = window.prompt("Set your best score/loot to");
        bestscorea.innerHTML = bestscore;
        var totalscore = window.prompt("Set your best score/loot to");
        totalscorea.innerHTML = totalscore; 
    }
}