Greasy Fork is available in English.

Gota.io Features by Donut + Linesplit

Linesplit up, down, left and right • Diagonal linesplit with just one key • Hotkeys to show/hide skins, names, mass, food, chat, minimap, score panel, party panel and leaderboard • Auto respawn in Team Scrimmage • Leave a scrimmage match before it ends • You can change the keys as you wish

< Părere la script-ul Gota.io Features by Donut + Linesplit

Întrebare/comentariu

Deleted user 186174
§
Postat în: 16-05-2018

best script

// ==UserScript== // @name FFEC's Script // @namespace http://tampermonkey.net/ // @version 1.4.5 // @description Let's improve your Gota.io experience! // @author FFEC // @match http://gota.io/web/* // @grant GM_addStyle // @contributor Verseh, Superdoggy // @icon http://i.imgur.com/1K3g5EF.png // ==/UserScript==

function addStyleSheet(style){ var getHead = document.getElementsByTagName("HEAD")[0]; var cssNode = window.document.createElement( 'style' ); var elementStyle= getHead.appendChild(cssNode); elementStyle.innerHTML = style; return elementStyle; }

//Custom Font, Logo and Minimap addStyleSheet('@import url(https://fonts.googleapis.com/css?family=Ubuntu);');
GMaddStyle('* #logo {background-image: url("http://i.imgur.com/PIy1bq2.png");}'); GMaddStyle('* #minimap-canvas {background-image: url("http://i.imgur.com/6KeZJh7.png");}'); GMaddStyle('*{font-family: Ubuntu;}'); GMaddStyle('* .coordinates {font-family: Ubuntu;}'); GM_addStyle('* #leaderboard-panel {font-size: 24px;}');

var fillTextz = CanvasRenderingContext2D.prototype.fillText; CanvasRenderingContext2D.prototype.fillText = function(){ var argumentz = arguments; if(this.canvas.id == 'leaderboard-canvas'){ this.font = 'bold 15px Ubuntu'; } if(this.canvas.id == 'minimap-canvas'){ this.font = 'bold 15px Ubuntu'; } if(this.canvas.id == 'party-canvas'){ this.font = 'bold 15px Ubuntu'; } fillTextz.apply(this, arguments); };

//Custom Borders GMaddStyle('* .main-panel {border: solid 3px rgba(99, 97, 95, 0.5)}'); GMaddStyle('* .main-panel {border-radius: 5px}'); GMaddStyle('* .main-panel {box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.52)}'); GMaddStyle('* .gota-btn {border-radius: 15px}'); GMaddStyle('* .main-bottom-stats {border-radius: 5px}'); GMaddStyle('* #popup-party {border-radius: 5px}'); GMaddStyle('* #popup-party {border-width: 2px}'); GMaddStyle('* #popup-party {box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.25)}'); GMaddStyle('* #popup-login {border-radius: 5px}'); GMaddStyle('* #popup-login {border-width: 2px}'); GMaddStyle('* #popup-login {box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.25)}'); GMaddStyle('* .login-input {border-radius: 0px}'); GMaddStyle('* #chat-input {border-radius: 0 0 0px 0px}'); GMaddStyle('* .ui-pane {box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.52)}'); GMaddStyle('* #chat-container {border-radius: 5px 5px 0px 0px}'); GMaddStyle('* .main-bottom-stats {box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.52)}'); document.getElementById("leaderboard-panel").style.borderRadius = "5px"; document.getElementById("leaderboard-panel").style.borderWidth = "2px"; document.getElementById("leaderboard-panel").style.boxShadow = "0px 0px 0px black"; document.getElementById("score-panel").style.borderRadius = "5px"; document.getElementById("score-panel").style.borderWidth = "2px"; document.getElementById("score-panel").style.boxShadow = "0px 0px 0px black"; document.getElementById("minimap-panel").style.borderRadius = "5px"; document.getElementById("minimap-panel").style.borderWidth = "2px"; document.getElementById("minimap-panel").style.boxShadow = "0px 0px 0px black"; document.getElementById("party-panel").style.borderRadius = "5px"; document.getElementById("party-panel").style.borderWidth = "2px"; document.getElementById("party-panel").style.boxShadow = "0px 0px 0px black";

//Miscellaneous UI Changing code GMaddStyle('* #chat-panel {width: 300px}'); GMaddStyle('* #chat-panel {height: 195px}'); GMaddStyle('* #chat-input {font-weight: bold}'); GMaddStyle('* .stext {margin-top: 2px}'); GMaddStyle('* .stext {margin-bottom: 2px}'); GMaddStyle('* #name-box {font-weight: bold}'); GMaddStyle('* .server-row:hover {font-size: 16px}'); GMaddStyle('* .server-row:hover {font-weight: bold}'); GMaddStyle('* .server-row {transition: all 0.3s}'); GMaddStyle('* .gota-btn:hover {filter: hue-rotate(25deg)}'); GMaddStyle('* .gota-btn:hover {box-shadow: 0px 0px 0px rgba(10,10,10,10)}'); GMaddStyle('* .main-panel {background: #070707}'); GMaddStyle('* .bottom-btn {margin-bottom: 3px}'); GMaddStyle('* #main {width: 1025px; background-color: transparent; border: none;}'); GMaddStyle('* #main-content {width: 305px; height: 490px; margin-top: 80px;}'); GMaddStyle('* #main-side {height: 490px; margin-top: 80px;}'); GMaddStyle('* #main-left {margin-top: 80px; margin-right: 11px; margin-left: -16px; height: 180px;}'); GMaddStyle('* #main-account {margin: 10px 10px;}'); GMaddStyle('* .keybinds-btn {background: white; border: 1.5px solid black; border-radius: 15px; color: black; font-weight: bold}'); GMaddStyle('* .keybinds-table {background: #333; border-radius: 5px; padding: 12px;}'); GMaddStyle('* .sp-replacer, input[type="checkbox" i] {margin-right: 7.5px;}'); GMaddStyle(' .scrimmage-select {border: 2px solid black; border-radius: 10px; padding: 4px; font-weight: bold; margin-top: 3px;}');

//Removal of unnecessary elements $(".main-rb-title").replaceWith(""); $("#main-rb").replaceWith(""); $(".main-bottom-links").replaceWith(""); GM_addStyle(' #onesignal-bell-container.onesignal-reset .onesignal-bell-launcher.onesignal-bell-launcher-md .onesignal-bell-launcher-button {display: none;}');

//Namebox display fix GM_addStyle('* #name-box {display: inline-flex;}');

//Script Version Indicator var maincontent = document.getElementById("main-content"); var ffscversion = document.createElement("div"); ffscversion.innerHTML = 'Script Version: 1.4.5
Release Date: April 3rd, 2018'; ffscversion.id = 'ffecscript'; maincontent.appendChild(ffscversion); document.getElementById("ffecscript").style.cssText = "text-align:center;font-size:12px;color:white;";

//Custom Crosshair GM_addStyle ('* body {cursor: url(http://i.imgur.com/bX1fOny.gif)16 16, auto;}');

//Custom Checkboxes GMaddStyle('input[type="checkbox" i] {-webkit-appearance: none; background: #ff0000; color: white; border-radius: 5px; padding: 4px; transition: background 0.3s;}'); GMaddStyle('input[type="checkbox" i]:checked {background: #00f000; color: #014401; padding: 4px; padding-right: 9px;}'); GMaddStyle('input[type="checkbox" i]:checked:after {content: "ON";}'); GMaddStyle('input[type="checkbox" i]:not(:checked):before {content: "OFF"}');

//Custom scrollbars GMaddStyle('.options-container::-webkit-scrollbar, tbody#servers-body-eu::-webkit-scrollbar, tbody#servers-body-na::-webkit-scrollbar, .scrimmage-mode-box::-webkit-scrollbar {background-color: #3d3d3d; border-radius: 10px; width: 10px;}'); GMaddStyle('.options-container::-webkit-scrollbar-thumb {background-color: #5f5f5f; border-radius: 10px;}'); GM_addStyle('tbody#servers-body-eu::-webkit-scrollbar-thumb, tbody#servers-body-na::-webkit-scrollbar-thumb, .scrimmage-mode-box::-webkit-scrollbar-thumb {background-color: #7f7f7f; border-radius: 10px;}');

//Hide food toggle document.addEventListener('keydown', function(e) { var key = e.keyCod || e.which; switch (key) {case 45: document.getElementById("cHideFood").click();}});

Postează un raspuns

Autentifică-te pentru a posta un răspuns.