[Forum Game] Paste whatever's on your clipboard!


#3257

Stand Name: Owner of a Lonely Heart
Ability: Demonic Lightning Manipulation
Desc: The user can create, shape and manipulate lightning derived from the deepest pits of Hell, sporting the capability to destroy nearly anything it strikes with absolute malevolent intent. In addition, demonic lightning is capable of inflicting excruciating pain; both physically and spiritually tormenting the victim, has the potential to corrupt one’s soul, and is very effective against the holiest of supernaturals, such as angels
Condition: Mouth
Limit: Lyme Disease
Range: 36m

Power: B
Speed: A
Range: C
Durability: D
Precision: E
Potential: A


#3258


#3259

Yes, even the drums
(I got orignial stuff too btw https://lesmanga.bandcamp.com/album/demo)

Facebook like page: http://bit.ly/1M5BIQE

Twitter: https://twitter.com/LesM4n…

Discord sure likes making me copy the description of posted videos, huh…


#3260

#3261


#3262

please erase this from existence


#3263

image


#3264

Feggepegge


#3265


#3266

0.5


#3267

/t bloodyhamm Hammmm


#3268

#3269

https://www.realmeye.com/player/ludwiga


#3270

damn this shit crazy dawg but
β–¬β–¬β–¬β–¬β–¬.β—™.β–¬β–¬β–¬β–¬β–¬
β–‚β–„β–„β–“β–„β–„β–‚
β—’β—€β–ˆβ–€β–€β–ˆβ–ˆβ–ˆβ–ˆβ–„β–„β–„β–„β–„β–„ β—’β—€
β–ˆβ–„ β–ˆ β–ˆβ–„ β–ˆβ–ˆβ–ˆβ–€β–€β–€β–€β–€β–€β–€ ╬
β—₯ β–ˆβ–ˆβ–ˆβ–ˆβ–ˆ β—€
══╩══╩═
╬═╬
╬═╬ just dropped down to say
╬═╬
╬═╬ You hella gay, no cap
╬═╬
:slight_smile:/ ╬═╬
/β–Œ ╬═╬
/ \


#3271


I wrote a bit of code and was puzzled why there seemed to be some sort of upward and slightly leftward motion.
I think I know the reason now, the code gives each pixel a chance to replicate itself or increment color.
The loop iterates through every active pixel and checks them one by one. Because the later pixels get processed after the earlier ones did, any pixels that were overwritten by earlier pixels are revived and get their own chance to spread. So basically movement in the downward and directly right directions is blocked, which causes a net up-left shift.

code
function draw() {
	clear();
	let newPix = [];
	pixels.forEach((p) => {
		newPix[p.index] = p;
		let luck = Math.random();
		if (luck < 0.7) {
			const newP = translate(
				p,
				Math.floor(Math.random() * 5 - 2),
				Math.floor(Math.random() * 5 - 2)
			);
			newPix[newP.index] = newP;
		} else if (luck > 0.7) {
			p.colour[1] = mod(p.colour[1] + 3, 200);
		}
	});
	pixels = newPix;
	pixels.forEach((p) => setColour(p.index, p.colour));
	cont.putImageData(imda, 0, 0);
}

#3272


#3273

https://www.realmeye.com/items/accessory-dyes


#3274


#3275


#3276

have fun