07/04 - Mushrooms and Freedom Monday!

Status
Not open for further replies.

Onyxbird

Fearless
Joined
May 16, 2016
Messages
853
Reaction score
1,193
Points
393
Gender
Female
okay, I was able to make a script that puts default answers for Pep, I just cant get the age to work if anyone wants to look at it. the age code is now working
Code:
// ==UserScript==
// @name         Pep
// @namespace    https://greasyfork.org/en/users/27845
// @version      0.1
// @description  Pep
// @author       Pablo Escobar
// @include      *
// @require      https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js
// @grant        none
// ==/UserScript==


$('[name=Q1Emotion] option').filter(function() {
    return ($(this).text() == 'Neutral/no emotion'); //To select Neutral/no emotion
}).prop('selected', true);

$('[name=Q2Feeling] option').filter(function() {
    return ($(this).text() == '4. Neither upset nor happy'); //To select 4. Neither upset nor happy
}).prop('selected', true);

$('[name=Q3Arousal] option').filter(function() {
    return ($(this).text() == '1. Calm, completely relaxed, and/or sleepy'); //To select 1. Calm, completely relaxed, and/or sleepy
}).prop('selected', true);

$('[name=Q4Believability] option').filter(function() {
    return ($(this).text() == '7. Extremely believable'); //To select 7. Extremely believable
}).prop('selected', true);

$('[name=Q5Sex] option').filter(function() {
    return ($(this).text() == '1. Male'); //To select 1. Male
}).prop('selected', true);

$('[name=Q6Age]').val("38"); //To set your age

Thank You Very Much :celebrate:
 

El Pablo

ಠ_ಠ
Contributor
Joined
Jan 12, 2016
Messages
6,831
Reaction score
13,459
Points
1,063
Location
The Upside Down
Gender
Male
I thought it was me.

Try turning off your PEP script

I was lazy with the include, change the header to this:

Code:
// ==UserScript==
// @name         Pep
// @namespace    https://greasyfork.org/en/users/27845
// @version      0.1
// @description  Pep
// @author       Pablo Escobar
// @include      https://www.mturkcontent.com/*
// @require      https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js
// @grant        none
// ==/UserScript==
or just change:

// @include *

to

// @include https://www.mturkcontent.com/*
 
Last edited:

catnapped

Relatively Unknown Member
Contributor
Crowd Pleaser
HIT Poster
Joined
Jan 13, 2016
Messages
20,908
Reaction score
43,057
Points
2,738
Age
51
Location
Pennsylvania
Gender
Male
I was lazy with the include, change the header to this:

Code:
// ==UserScript==
// @name         Pep
// @namespace    https://greasyfork.org/en/users/27845
// @version      0.1
// @description  Pep
// @author       Pablo Escobar
// @include      https://www.mturkcontent.com/*
// @require      https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js
// @grant        none
// ==/UserScript==
or just change:

// @include *

to

// @include https://www.mturkcontent.com/*
Worked, thanks!

Now I can go back to hearing what a worthless human being I am :cry:
 

Onyxbird

Fearless
Joined
May 16, 2016
Messages
853
Reaction score
1,193
Points
393
Gender
Female
One guy looks like he's staring into my soul when he says something... what emotion is that?
 

MrNewVegas

Not a player i just Turk alot
Joined
Jun 16, 2016
Messages
50
Reaction score
55
Points
218
Age
36
Gender
Male
the bald guy is never ready for the clip, and he's always licking his lips
 
Status
Not open for further replies.