// ==UserScript== // @name ++WeaponEffects // @version -1 // @description Cool weapon effects added // @author Perussi // @match *://moomoo.io/* // @grant none // @namespace https://greasyfork.org/users/128061 // @downloadURL none // ==/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);