08/27 - Shirobako & Sakurasou Saturday!

Status
Not open for further replies.

Vanyanka

Thoroughbred of Sin
Contributor
Crowd Pleaser
HIT Poster
Joined
Jan 11, 2016
Messages
34,905
Reaction score
81,247
Points
2,338
Location
The Jungle
Gender
Female
yeah crowley's gonna collect soon enough
I was just thinking about him.

I've been playing Don't Starve for hours today. My husband keeps getting foolhardy and dying so then he haunts me until I go insane when I don't resurrect him quickly enough. I feel like there is a metaphor for our marriage somewhere in here.
 

TissueHime

Thread Maker Extraordinaire
Threaderator
Joined
Jan 12, 2016
Messages
5,523
Reaction score
7,575
Points
813
Age
34
Location
Seattle
Gender
Male
nvm i saw it
 
Last edited:

JenniLeigh

Batch Betta Have My Money
Contributor
Joined
Jan 12, 2016
Messages
23,084
Reaction score
46,895
Points
1,388
Location
my napping spot
Gender
Female
Here's the a9 color script
Code:
// ==UserScript==
// @name         Amazon Requester Inc. A9 Data Validation
// @namespace    Space
// @version      0.1
// @description  Various a9 stuff
// @author       Icy
// @include https://www.mturkcontent.com/dynamic/*
// @include https://s3.amazonaws.com/mturk_bulk/hits/*
// ==/UserScript==
var colourHit = false;

if(document.getElementById("result11")) {
    colourHit = true;
    console.log("Colour compare hit.");
}

document.addEventListener( "keydown", kas, false);
    function kas(i) {
            /* Colour A9's */
            if (i.keyCode == 49 && colourHit === true) { //1
                document.getElementById("result11").click();
        }
            if (i.keyCode == 50 && colourHit === true) { //2
                document.getElementById("result15").click();
        }
            if (i.keyCode == 57 && colourHit === true) { //9
                document.getElementById("result21").click();
        }
            if (i.keyCode == 48 && colourHit === true) { //0
                document.getElementById("result25").click();
        }
            if (i.keyCode == 188 && colourHit === true) { //,(comma)
                document.getElementById("submitButton").click();
        }
        }
window.focus();
God bless
 
Status
Not open for further replies.