// ==UserScript==
// @name aaa
// @namespace http://tampermonkey.net/
// @version 2024-07-11
// @description try to take over the world!
// @author You
// @match https://hackers.mohmoh.eu/*
// @icon
data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant none
// ==/UserScript==
let canvas = document.querySelector("#gameCanvas");
const ctx = canvas.getContext("2d");
const test_image = new Image();
test_image.src =
"https://cdn.discordapp.com/attachments/1220282626263355402/1220765587333189652/
Discord_aHNKZJH7a2.png?
ex=6691548c&is=6690030c&hm=1794ffa77507f9640cf5296f89bb7075d3dcfb022ad099d2422a90f2
62fe8997&";
let aeae = 0;
const war_ = () => {
ctx.globalAlpha = 0.1;ctx.drawImage(test_image, 0, 0, canvas.width,
canvas.height);
ctx.globalAlpha = 1;
window.requestAnimFrame(war_);
};
war_();