Vertix Script

A script created by /u/ReelablePenny14 and /u/HighNoon643

이 스크립트를 설치하려면 Tampermonkey, Greasemonkey 또는 Violentmonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey 또는 Violentmonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey 또는 Violentmonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey 또는 Userscripts와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 유저 스크립트 관리자 확장 프로그램이 필요합니다.

(이미 유저 스크립트 관리자가 설치되어 있습니다. 설치를 진행합니다!)

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

(이미 유저 스타일 관리자가 설치되어 있습니다. 설치를 진행합니다!)

// ==UserScript==
// @name         Vertix Script
// @namespace    http://vertix.io/*
// @version      0.1
// @description  A script created by /u/ReelablePenny14 and /u/HighNoon643
// @author       /u/ReelablePenny14 and /u/HighNoon643
// @match        http://vertix.io/*
// @grant        none
// ==/UserScript==
 
(function() {
    'use strict';
    function addGlobalStyle(css) {
        var head, style;
        head = document.getElementsByTagName('head')[0];
        if (!head) { return; }
        style = document.createElement('style');
        style.type = 'text/css';
        style.innerHTML = css;
        head.appendChild(style);
    }
    addGlobalStyle('#mainTitleText { width: 100% !important; color: #1EB656 !important; font-size: 100px !important; text-align: center !important; text-shadow: 0 1px 0 #ff0000, 0 2px 0 #ff3300, 0 3px 0 #ffff00, 0 4px 0 #726767, 0 5px 0 #009900 !important; -webkit-animation: rainbow 4s linear infinite !important; -moz-animation: rainbow 4s linear infinite !important; animation: rainbow 4s linear infinite !important; }');
    addGlobalStyle('@keyframes rainbow  { 0% {color: red;}!important 14% {color: orange;}!important 28% {color: yellow;}!important 42% {color: green;}!important 56% {color: blue;}!important 70% {color: #4B0082;}!important 84% {color: purple;}!important}');
    addGlobalStyle('@-webkit-keyframes rainbow  {0% {color: red;}!important 14% {color: orange;}!important 28% {color: yellow;}!important 52% {color: green;}!important 46% {color: blue;}!important 70% {color: #4B0082;}!important 84% {color: purple;}!important}');
 
    document.title = "Starr.io";
 
})();
 
(function() {
    'use strict';
    window.onload = function() {
     // document.body.innerHTML= document.body.innerHTML.replace('<button id="startButton">ENTER GAME</button>','<button id="startButton">Shoot Em Up</button>');
document.body.innerHTML= document.body.innerHTML.replace('<div id="mainTitleText">VERTIX ONLINE</div>','<div id="mainTitleText">Starr.io</div>');
document.body.innerHTML= document.body.innerHTML.replace('<h3 class="menuHeader">ADVERTISEMENT</h3>','<h3 class="menuHeader">ADVERTISEMENT</h3>');
document.body.innerHTML= document.body.innerHTML.replace('<input type="text" tabindex="0" autofocus="" placeholder="Player Name" id="playerNameInput" maxlength="15">','<input type="text" tabindex="0" autofocus="" placeholder="Starry the Hoolisaur" id="playerNameInput" maxlength="15">');
document.body.innerHTML= document.body.innerHTML.replace('<a target="_blank" href="https://twitter.com/SidneydeVries12" class="link">SIDNEY DE VRIES</a>','<a target="_blank" href="https://discord.gg/0xbB7WraEK2EWPTf" class="link">ReelablePenny14 and Starry</a>'); };
    })();