Greasy Fork is available in English.
Cool weapon effects added
当前为
// ==UserScript==
// @name ++WeaponEffects
// @version -1
// @description Cool weapon effects added
// @author Perussi
// @match *://moomoo.io/*
// @grant none
// @namespace http://greasyfork.icu/users/128061
// ==/UserScript==
var mk = document.getElementById("gameCanvas").getContext("2d");
function testArc(){
mk.beginPath();
mk.arc(window.innerWidth/2,window.innerHeight/2,100,0,Math.PI);
mk.lineWidth = 25;
mk.strokeStyle = "#ffff00";
mk.stroke();
}
function letThereBeLight(){
testArc();
window.requestAnimationFrame(letThereBeLight);
}
window.requestAnimationFrame(letThereBeLight);