您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Theme for Cold Clear Bot
当前为
// ==UserScript== // @name Cold Clear Theme // @namespace http://tampermonkey.net/ // @version 0.1 // @description Theme for Cold Clear Bot // @author MinusKelvin, Eddie // @match https://*.jstris.jezevec10.com/* // @grant none // ==/UserScript== (function() { 'use strict'; window.addEventListener('load', function(){ //Jstris Block Skin Change loadSkin("https://i.imgur.com/RHK7lzy.png",83); loadGhostSkin("https://i.imgur.com/te8fijn.png",83); //Jstris SFX CustomSFXset.prototype = new BaseSFXset; loadSFX(new CustomSFXset); }); })(); function CustomSFXset(){ this.volume=1; this.lock={url:"https://ecdldaiiere.github.io/Eddiez-Soundz/CC_lock.ogg",abs:1}; this.ready={url:"blank.wav",abs:1,set:1}; this.go={url:"blank.wav",abs:1,set:0}; this.died={url:"blank.wav",abs:1,set:1}; this.hold={url:"blank.wav",abs:1,set:0}; this.move={url:"https://ecdldaiiere.github.io/Eddiez-Soundz/CC_move.ogg",abs:1,set:0}; this.linefall={url:"https://ecdldaiiere.github.io/Eddiez-Soundz/CC_linefall.ogg",abs:1,set:0}; };