您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
allows sounds to be played for special events (eg. T-Spin Double)
当前为
// ==UserScript== // @name Special Events Script // @namespace http://tampermonkey.net/ // @version 0.4 // @description allows sounds to be played for special events (eg. T-Spin Double) // @author Oki // @match https://*.jstris.jezevec10.com/* // @grant none // ==/UserScript== /************************** Special Events Script **************************/ (function() { window.addEventListener('load', function(){ Game['eventSounds'] = [ "http://k007.kiwi6.com/hotlink/jf1s9pn5p6/vo_tspinsingle.mp3", "http://k007.kiwi6.com/hotlink/eow52erj3s/vo_tspinmini.mp3", "", "http://k007.kiwi6.com/hotlink/irakdcqe4u/vo_tspindouble.mp3", "http://k007.kiwi6.com/hotlink/cp5u6gk6fb/vo_lne02.mp3", "http://k007.kiwi6.com/hotlink/kcwahy6476/vo_tspintriple.mp3", "http://k007.kiwi6.com/hotlink/dnoo8aqt18/vo_lne03.mp3", "http://k007.kiwi6.com/hotlink/iaw7q5l3wm/vo_tetrs.mp3", "http://k007.kiwi6.com/hotlink/rcmr3ffx0h/vo_happy.mp3", "http://k007.kiwi6.com/hotlink/sg6evdo4ks/vo_b2btspin.mp3", "http://k007.kiwi6.com/hotlink/lxhjlwbc53/vo_b2btetrs.mp3" ]; Game['eventVolumes'] = [1,1,1,1,1,1,1,1,1,1,1] window.events = ["TSPIN_SINGLE","TSPIN_MINI_SINGLE","CLEAR1","TSPIN_DOUBLE","CLEAR2","TSPIN_TRIPLE","CLEAR3","CLEAR4","PERFECT_CLEAR"] window.enableB2B = true; Game["latestEv"]="";Game["sArray"]=[];localStorage.evVol=localStorage.evVol||"100";window.b2bBefore=false; Game["eventSounds"].map((x,i)=>{if(Game['eventSounds'][i]){Game["sArray"].push(document.createElement("audio"));Game["sArray"][i].src=x}else{Game["sArray"].push(null)}}) var evVol = document.createElement("tr"); evVol.innerHTML = `Special Events vol: <input id="volControl3" oninput="localStorage.evVol=volControl3.value;volSetting3.innerHTML=volControl3.value+'%'" type="range" min="0" max="100" value="`+localStorage.evVol+`" step="1" style="width:150px;display:inline-block;padding-top:9px"> <span id="volSetting3">`+localStorage.evVol+`%</span>` tab_appear.appendChild(evVol); if(typeof playSound != 'function') { window.playSound = function(S){s=Game.sArray[S];console.log(s);!s.paused&&0<s.currentTime?s.currentTime=0:(s.volume=Game['eventVolumes'][S]*localStorage.evVol/100,s.play())} } if(typeof trim != "function"){var trim=a=>{a=a.slice(0,-1);a=a.substr(a.indexOf("{")+1);return a}} if(typeof getParams != "function"){var getParams=a=>{var params=a.slice(a.indexOf("(")+1);params=params.substr(0,params.indexOf(")")).split(",");return params}} var clcFunc = Game['prototype']['checkLineClears'].toString() events.map((x,i)=>{clcFunc=clcFunc.replace(x+")",x+");Game['btb']=this['isBack2Back'];Game['latestEv']='"+x+"';");}) Game['prototype']["checkLineClears"] = new Function(trim(clcFunc)); var psFunc = Game['prototype']['playSound'].toString() var psParams = getParams(psFunc); psFunc = 'if(Game["latestEv"]){sIndex=events.indexOf(Game["latestEv"]);sound=sIndex;enableB2B&&Game.btb&&~[0,1,3,5,7].indexOf(sIndex)&&(sound=9+ +(7==sIndex));console.log(sound);Game.sArray[sound]&&playSound(sound);Game["latestEv"]="";}' + trim(psFunc) Game['prototype']['playSound'] = new Function(...psParams, psFunc); }); })();