Glitch City Laboratories Archives

Glitch City Laboratories closed on 1 September 2020 (announcement). This is an archived copy of a thread from Glitch City Laboratories Forums.

You can join Glitch City Research Institute to ask questions or discuss current developments.

You may also download the archive of this forum in .tar.gz, .sql.gz, or .sqlite.gz formats.

Forum Games

Press Ctrl+V or Cmd+V or whatever and post - Page 105

Re: Press Ctrl+V or Cmd+V or whatever and post

Posted by: tachi
Date: 2016-07-20 18:33:47
CF248-9F2YF-2TCYH

Re: Press Ctrl+V or Cmd+V or whatever and post

Posted by: camper
Date: 2016-07-21 00:25:31
Adamant Nature 
- Earthquake 
- Rock Slide 
- U-turn 
- Protect

Re: Press Ctrl+V or Cmd+V or whatever and post

Posted by: ISSOtm
Date: 2016-07-21 07:01:18
    Poké Ball x43
    Rappel x4

Re: Press Ctrl+V or Cmd+V or whatever and post

Posted by: Torchickens
Date: 2016-07-21 17:28:46
http://hakuda2.web.fc2.com/wario/poke1/mo.html

Re: Press Ctrl+V or Cmd+V or whatever and post

Posted by: Spoink
Date: 2016-07-23 20:16:03
I'm always paranoid so I put the letter a in my CtrlV.

https://docs.google.com/spreadsheets/d/1v81TksEV2Fi90cz1REr0IrMLlxcC3yCMvRg8KzzV2aQ/edit?usp=drive_web&usp=sheets_home&ths=true

Now is not one of those times.

Re: Press Ctrl+V or Cmd+V or whatever and post

Posted by: camper
Date: 2016-07-24 03:18:10
Skill level:

Re: Press Ctrl+V or Cmd+V or whatever and post

Posted by: Abwayax
Date: 2016-07-24 04:13:08
deb https://deb.nodesource.com/node_5.x jessie main
deb-src https://deb.nodesource.com/node_5.x jessie main

Re: Press Ctrl+V or Cmd+V or whatever and post

Posted by: Zowayix
Date: 2016-07-24 17:41:07

I did NOT go to EVO thinking that I was going to die. I was told that it was all treatable and that waiting 1 week to get it out was okay. The results are back and im going to be fine, there is nothing to worry about I am not going to die. Now that EVO is over and customs are dead, I can happily retire and continue my life elsewhere as I recover. Besides, it wouldn't have made a difference, EVO actually pushed my follow-up appointment one week EARLIER, when i found out I HAD the cancer. So one way or another EVO kept my appointment on the same week.

Re: Press Ctrl+V or Cmd+V or whatever and post

Posted by: Ketsuban
Date: 2016-07-25 14:02:29
WTF?!

—–

also, I wonder if I should

Re: Press Ctrl+V or Cmd+V or whatever and post

Posted by: ISSOtm
Date: 2016-07-25 19:42:51
http://www.youtube.com/watch?v=3UnB1fomvAw

Re: Press Ctrl+V or Cmd+V or whatever and post

Posted by: Zowayix
Date: 2016-08-13 23:31:30
https://cdn.discordapp.com/attachments/184353991029817344/205200589590626304/f22e179f-a204-4f15-b607-9d64329b21d5.jpg

Re: Press Ctrl+V or Cmd+V or whatever and post

Posted by: Abwayax
Date: 2016-08-14 04:02:21
http://world-manga.at.webry.info/201605/article_1.html

Re: Press Ctrl+V or Cmd+V or whatever and post

Posted by: Zowayix
Date: 2016-08-15 17:56:54
https://i.imgur.com/hW1wylj.jpg

Re: Press Ctrl+V or Cmd+V or whatever and post

Posted by: Yeniaul
Date: 2016-08-15 22:23:21
I can't post, it's too long (It's the source to a search-and-destroy web crawler for bad ROMs I'm making)

Re: Press Ctrl+V or Cmd+V or whatever and post

Posted by: ISSOtm
Date: 2016-08-17 15:48:32
if(FLAG(CAMERA_FIXE) == 0) {
int deplacementVert = positionVertJoueur - (positionVertCamera + (HAUTEUR_RENDU - HAUTEUR_TILE) / 2);
int deplacementHoriz = positionHorizJoueur - (positionHorizCamera + (LARGEUR_FENETRE - LARGEUR_TILE) / 2);

if(deplacementVert > VITESSE_CAMERA) {
deplacementVert = VITESSE_CAMERA;
} else if(deplacementVert < -VITESSE_CAMERA) {
deplacementVert = -VITESSE_CAMERA;
}
if(deplacementHoriz > VITESSE_CAMERA) {
deplacementHoriz = VITESSE_CAMERA;
} else if(deplacementHoriz < -VITESSE_CAMERA) {
deplacementHoriz = -VITESSE_CAMERA;
}

positionVertCamera += deplacementVert;
if(positionVertCamera + HAUTEUR_RENDU > couches[(unsigned int)coucheJoueur]->hauteur * HAUTEUR_TILE) {
positionVertCamera = couches[(unsigned int)coucheJoueur]->hauteur * HAUTEUR_TILE - HAUTEUR_RENDU;
}
if((signed int)positionVertCamera < 0) {
positionVertCamera = 0;
}

positionHorizCamera += deplacementHoriz;
if(positionHorizCamera + LARGEUR_FENETRE > couches[(unsigned int)coucheJoueur]->largeur * LARGEUR_TILE) {
positionHorizCamera = couches[(unsigned int)coucheJoueur]->largeur * LARGEUR_TILE - LARGEUR_FENETRE;
}
if((signed int)positionHorizCamera < 0) {
positionHorizCamera = 0;
}
}