0% found this document useful (0 votes)
38 views1 page

Message

This document is a userscript designed to run on a specific website, 'hackers.mohmoh.eu'. It utilizes a canvas element to draw an image with a low opacity effect in an animation loop. The script is set to execute continuously using the requestAnimationFrame method.

Uploaded by

denisinfinite651
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
38 views1 page

Message

This document is a userscript designed to run on a specific website, 'hackers.mohmoh.eu'. It utilizes a canvas element to draw an image with a low opacity effect in an animation loop. The script is set to execute continuously using the requestAnimationFrame method.

Uploaded by

denisinfinite651
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

// ==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_();

You might also like