09/15 - Trip Hop Thursday!

Status
Not open for further replies.

MrTrentSD

Alive and Kicking
Contributor
Joined
Feb 6, 2016
Messages
1,916
Reaction score
3,535
Points
588
Location
San Diego
Gender
Male
Sorry if it's burried in the thread from today, I didn't see anything on a quick look. Anyone having issues with Panda Crazy? Mine isn't loading for some reason. Opened it from my bookmark like always. It says it updated to 0.3.9 today and the PC thread mentions 0.3.8 and nothing about . I tried going to 0.3.8 with not luck either.

I'm on 0.3.9 - that's the latest. It works.
 

ducky

good brain, good life
Mentor
Contributor
Joined
Jul 19, 2016
Messages
8,706
Reaction score
23,667
Points
1,013
Gender
Female
Sorry if it's burried in the thread from today, I didn't see anything on a quick look. Anyone having issues with Panda Crazy? Mine isn't loading for some reason. Opened it from my bookmark like always. It says it updated to 0.3.9 today and the PC thread mentions 0.3.8 and nothing about 0.3.9. I tried going to 0.3.8 with not luck either.
mine was having issues searching this morning when i was still on 0.3.7, and i resolved it by updating to 0.3.9. haven't had your issue though
 
  • Like
Reactions: <Gucci>

sgomer79

New Member
Joined
Aug 5, 2016
Messages
95
Reaction score
141
Points
33
Gender
Female
Nothing else changed with other scripts. I had already rebooted too. I got it, sort of. It's working now, I had to uninstall and reinstall it. But now I lost all the panda's I had saved in it :(
 

Nytmair

Well-Known Member
Contributor
Joined
Jul 6, 2016
Messages
2,473
Reaction score
3,738
Points
588
Gender
Male
More PI's please!

And pie too.
 
  • Like
Reactions: <Gucci>

MerryLou

unpalatable
Contributor
Crowd Pleaser
Sole Survivor
Joined
Jan 12, 2016
Messages
11,259
Reaction score
20,514
Points
1,688
Gender
Female
Nothing else changed with other scripts. I had already rebooted too. I got it, sort of. It's working now, I had to uninstall and reinstall it. But now I lost all the panda's I had saved in it :(
which ones?

edit: regular ones prolly not surveys
 

sgomer79

New Member
Joined
Aug 5, 2016
Messages
95
Reaction score
141
Points
33
Gender
Female
Are any of your other scripts working? Have you restarted your browser (or entire computer)?
I'm on 0.3.9 - that's the latest. It works.
mine was having issues searching this morning when i was still on 0.3.7, and i resolved it by updating to 0.3.9. haven't had your issue though
Nothing else changed with other scripts. I had already rebooted too. I got it, sort of. It's working now, I had to uninstall and reinstall it. But now I lost all the panda's I had saved in it :(
 

Squatty

.
Contributor
Crowd Pleaser
HIT Poster
Joined
Mar 17, 2016
Messages
21,286
Reaction score
44,989
Points
2,538
Age
35
Gender
Female
Does anyone have a link to the Customer Interest script? I lost mine
 
  • Like
Reactions: <Gucci> and Pleco

bxpretzel

Ari Gold
Contributor
HIT Poster
Joined
Jan 14, 2016
Messages
11,163
Reaction score
24,621
Points
1,438
Location
Appalachia
Does anyone have a link to the Customer Interest script? I lost mine
i don't have a link but this is the one i use
Code:
// ==UserScript==
// @name         New Version? Consumers Interest
// @namespace 
// @version      1.0
// @description  relevant to the interest
// @author       Kadauchi / Modded by ceedj.
// @include      https://www.mturkcontent.com/dynamic/*
// @include      https://s3.amazonaws.com/*
// @grant        GM_log
// @require      http://code.jquery.com/jquery-2.1.0.min.js
// ==/UserScript==

var autosubmit = false;

// Variable to check for the type of HIT.
var Category_Validation = $('p:contains("The goal is to answer the question")');

if (Category_Validation.length) {

    $("input[value='yes']").focus();
    $("input[value='yes']").click();

    // Keybinds
    document.onkeydown = function(e) {

        // Yes
        if ((e.keyCode === 49) || (e.keyCode === 97) || (e.altKey && e.keyCode === 97)) { // 1 or Numpad1 or Alt+Numpad1
            $("input[value='yes']").click();
            if (autosubmit) {
                $("input[id='submitButton']").click();
            }
        }

        // No
        if ((e.keyCode === 50) || (e.keyCode === 98) || (e.altKey && e.keyCode === 98)) { // 2 or Numpad2 or Alt+Numpad2
            $("input[value='no']").click();
            if (autosubmit) {
                $("input[id='submitButton']").click();
            }
        }

        // Skip
        if ((e.keyCode === 51) || (e.keyCode === 99) || (e.altKey && e.keyCode === 99)) { // 3 or Numpad3 or Alt+Numpad3
            $("input[value='skip']").click();
            if (autosubmit) {
                $("input[id='submitButton']").click();
            }
        }


        //Submit
        if (e.keyCode === 13) { // Enter or NumpadEnter
            $("input[id='submitButton']").click();
        }
    };
}

window.focus();
 

Squatty

.
Contributor
Crowd Pleaser
HIT Poster
Joined
Mar 17, 2016
Messages
21,286
Reaction score
44,989
Points
2,538
Age
35
Gender
Female
i don't have a link but this is the one i use
Code:
// ==UserScript==
// @name         New Version? Consumers Interest
// @namespace
// @version      1.0
// @description  relevant to the interest
// @author       Kadauchi / Modded by ceedj.
// @include      https://www.mturkcontent.com/dynamic/*
// @include      https://s3.amazonaws.com/*
// @grant        GM_log
// @require      http://code.jquery.com/jquery-2.1.0.min.js
// ==/UserScript==

var autosubmit = false;

// Variable to check for the type of HIT.
var Category_Validation = $('p:contains("The goal is to answer the question")');

if (Category_Validation.length) {

    $("input[value='yes']").focus();
    $("input[value='yes']").click();

    // Keybinds
    document.onkeydown = function(e) {

        // Yes
        if ((e.keyCode === 49) || (e.keyCode === 97) || (e.altKey && e.keyCode === 97)) { // 1 or Numpad1 or Alt+Numpad1
            $("input[value='yes']").click();
            if (autosubmit) {
                $("input[id='submitButton']").click();
            }
        }

        // No
        if ((e.keyCode === 50) || (e.keyCode === 98) || (e.altKey && e.keyCode === 98)) { // 2 or Numpad2 or Alt+Numpad2
            $("input[value='no']").click();
            if (autosubmit) {
                $("input[id='submitButton']").click();
            }
        }

        // Skip
        if ((e.keyCode === 51) || (e.keyCode === 99) || (e.altKey && e.keyCode === 99)) { // 3 or Numpad3 or Alt+Numpad3
            $("input[value='skip']").click();
            if (autosubmit) {
                $("input[id='submitButton']").click();
            }
        }


        //Submit
        if (e.keyCode === 13) { // Enter or NumpadEnter
            $("input[id='submitButton']").click();
        }
    };
}

window.focus();
You are amazing!
 

sgomer79

New Member
Joined
Aug 5, 2016
Messages
95
Reaction score
141
Points
33
Gender
Female
which ones?

edit: regular ones prolly not surveys
Some of them were searches I can add easily. I'll have to go look for the Zoltars, and the two 411Richmonds I do sometimes for filler. The others I will have to look for and add as I think of them.

Not what I needed right now, I've been struggling to find time to make $5 a day the last two weeks so didn't have time to spare on this hiccup :(
 

sgomer79

New Member
Joined
Aug 5, 2016
Messages
95
Reaction score
141
Points
33
Gender
Female
While I'm here posting I have another question. Is picsfromabove reject happy? I submitted one the other day but was afraid to do a bunch because I had a bunch of images I saw nothing to mark and it scared me a bit, so I submitted just one and moved on.
 
Status
Not open for further replies.