Clipboard.

  • FTB will be shutting down this forum by the end of July. To participate in our community discussions, please join our Discord! https://ftb.team/discord

VikeStep

New Member
Jul 29, 2019
1,117
0
0
http://i.imgur.com/Zn97.gif
Yea um, even though it's not that NSFW still not going to post it.
(I deleted some of the link so you can't try anyway :p )

just so you know, all you did was change the Link Text, not the actual URL. if you edit your post and click on the two A's in the top right corner you will see.

It uses the following BBCode: [URL='http://i.imgur.com/Zn98Mx7.gif']http://i.imgur.com/Zn97.gif[/URL]

so it links you to the link inside the tag and displays the text in between the tags.

lets see what is in my clipboard:


Oh yes, its some epic electronic music and im not even sure what genre it is

EDIT: This is my 1337th post!!!! I am now one of the elite crew :)
 
  • Like
Reactions: goreae

goreae

Ultimate Murderous Fiend
Nov 27, 2012
1,784
2,649
273
Raxacoricofallapatorius
document.addEventListener('keydown',function(event) {
var dungeon=Game.Objects['Factory'].dungeon;
var control=0;
if (event.keyCode==37) {dungeon.hero.Move(-1,0);control=1;}
else if (event.keyCode==38) {dungeon.hero.Move(0,-1);control=1;}
else if (event.keyCode==39) {dungeon.hero.Move(1,0);control=1;}
else if (event.keyCode==40) {dungeon.hero.Move(0,1);control=1;}
else if (event.keyCode==32) {dungeon.hero.Move(0,0);control=1;}//space
else if (event.keyCode==65)//A (auto)
{
if (dungeon.auto) {
dungeon.auto=0;
dungeon.timerWarmup=-1;
} else {
dungeon.auto=1;
dungeon.timer=0;
dungeon.timerWarmup=0;
}
event.preventDefault();
}
if (control) {
event.preventDefault();
dungeon.timer=Game.fps*10;
dungeon.timerWarmup=5;
}
});

I put the dungeon fixing code into a tampermonkey script so it launches whenever I start up the cookie clicker beta.