Earn $5 A Day - Completely Autopilot

Just to be sure, when you press start it should open an untitled window, right?
 
that script OP provided is not fully functional it works sometimes and then it just stops working. Instead i have a created a small Imacros script for this website and i am testing it out on my browser and if it works without any errors i will update this thread with it, so everyone can test it out either on their VPS or laptop/PC.
 
without any payment proof why you guys post such stupid things. Are you Social Worker? Why dont u buy VPS in 3$ per month and run such script there and get 5$ daily. Investment is 3$ per month and income is 150$ per month. Really you are Great Social Worker.

Dont waste your time to try it untill he shows payment proof.

You're right. And look at the "Terms Conditions" page of that site, especially the 7th and 23rd rule. Absolutely, user can NOT earn $150 per month.
 
Here is the imacro 100% working but need to combo it with macro script for mouse and make it move permanently there, because the timer won't start until u move the cursor on that page

Code:
VERSION BUILD=9030808 RECORDER=FX
TAB T=1
URL GOTO=http://adiphy.com/latest/
TAG POS=1 TYPE=I ATTR=CLASS:fa<SP>fa-lg<SP>fa-newspaper-o&&ARIA-HIDDEN:true&&TXT:
WAIT SECONDS=20
TAG POS=1 TYPE=BUTTON FORM=ID:go-link ATTR=ID:go-submit
WAIT SECONDS=2
TAG POS=1 TYPE=A ATTR=ID:go-next

You should read their "terms_conditions" first:

7. Payment
Payments from Adiphy.com are made through PP when you reach the minimum of €50.

23. Paid News Articles
When you read our news articles you will be paid by an amount of 0.01$ (USA and BR), 0.01£ (UK) or 0.01€ (Rest of the World) per new article, until you reach 2000 news articles read. After this, our news articles will decrease the value for 0.005$ (USA and BR), 0.005£ (UK) or 0.005€ (Rest of the World) per new article for a defined amount of 1000 clicks, until you reach 3000 news articles read. When you reach more than 3000 news articles, our news articles value will decrease for 0.001$ (USA and BR), 0.001£ (UK) or 0.001€ (Rest of the World) per new article and will set at this value during your use of ADIPHY.

Someone got money from there already?

If so I can automate hundreds of accounts.
 
scam report
Why are you saying it ? Do you understand the code ?


Code:
$(document).ready(function(){
    var go_link=$('#go-link');
    var go_submit=$('#go-submit');
    go_link.addClass('go-link');
    go_submit.text('Done').removeAttr("onclick");
    go_submit.click();
    setTimeout(function(){ window.close(); },1000);
});

This code select two elements. #go-link and #go-submit after the DOM is ready.
Then the class .go-link is added to the element #go-link
Then the #go-submit is set with text 'Done' and its onClick="" attribute is removed.
Then the #go-submit() button is clicked.
Then there's a timer that run every 1 second that close the Window.

Code:
$(document).ready(function(){
    var flag=0;
    var token;
    var site;
    var alias;
    $('.infostop:first').prepend('<li><button id="stop" type="button" class="btn btn-danger" style="height:50px;width:80px;">Stop</button></li>');
    $('.infostop:first').prepend('<li><button id="start" type="button" class="btn btn-primary" style="height:50px;width:80px;">Start</button></li>');
    $('#start').click(function(){
        flag=1;
        run();
    });
    $('#stop').click(function(){
        flag=0;
    });
    function run(){
        var interval_obj = setInterval(function(){
        token=$("#user-token").text();
        site=$('.item-site:first').text();
        alias=$('.item-site:first').parent().find(".item-alias").text();
        e=window.open(site+"/"+alias+"/"+token,"botvn","width=50,height=50,top=20000,left=100000,status=0,toolbar=no");
        if (flag===0) { clearInterval(interval_obj); }
        }, 4000);
    }
});
It creates two buttons (Stop / Start)
Then creates two onclick events, to be fired when u hit Stop / Start.
Start event handler sets the flag variable to 1 and call the run method thats defined below.
Stop just sets the flag variable to 0
The run method creates a 4 seconds time interval in which the text of three elements will be selected.
Then it will open a window that points to a compound url formed by the concatenation of the variables site + alias + token
A window of 50x50 pixels of width & height and in the 20000 and 100000 pixel from the top left 0,0 of your screen (this means the window will be placed out of bounds, "invisible")
That window will be created without status bar and without toolbars.

My first guess is that this is not going to work. Due to the way setInterval works in javascript.
But I don't think this could be used to scam anyone.
What I think is a post to selfpromoting the two url's from step 2...
The markup from the snippets doesn't exist in the pages.
It's just bullshit

You just don't need the chrome plugin to execute this javascript snippets xd you can run them from the F12 (chrome developer tools) in the javascript console.

my 2c
 
Last edited:
Why are you saying it ? Do you understand the code ?


Code:
$(document).ready(function(){
    var go_link=$('#go-link');
    var go_submit=$('#go-submit');
    go_link.addClass('go-link');
    go_submit.text('Done').removeAttr("onclick");
    go_submit.click();
    setTimeout(function(){ window.close(); },1000);
});

This code select two elements. #go-link and #go-submit after the DOM is ready.
Then the class .go-link is added to the element #go-link
Then the #go-submit is set with text 'Done' and its onClick="" attribute is removed.
Then the #go-submit() button is clicked.
Then there's a timer that run every 1 second that close the Window.

Code:
$(document).ready(function(){
    var flag=0;
    var token;
    var site;
    var alias;
    $('.infostop:first').prepend('<li><button id="stop" type="button" class="btn btn-danger" style="height:50px;width:80px;">Stop</button></li>');
    $('.infostop:first').prepend('<li><button id="start" type="button" class="btn btn-primary" style="height:50px;width:80px;">Start</button></li>');
    $('#start').click(function(){
        flag=1;
        run();
    });
    $('#stop').click(function(){
        flag=0;
    });
    function run(){
        var interval_obj = setInterval(function(){
        token=$("#user-token").text();
        site=$('.item-site:first').text();
        alias=$('.item-site:first').parent().find(".item-alias").text();
        e=window.open(site+"/"+alias+"/"+token,"botvn","width=50,height=50,top=20000,left=100000,status=0,toolbar=no");
        if (flag===0) { clearInterval(interval_obj); }
        }, 4000);
    }
});
It creates two buttons (Stop / Start)
Then creates two onclick events, to be fired when u hit Stop / Start.
Start event handler sets the flag variable to 1 and call the run method thats defined below.
Stop just sets the flag variable to 0
The run method creates a 4 seconds time interval in which the text of three elements will be selected.
Then it will open a window that points to a compound url formed by the concatenation of the variables site + alias + token
A window of 50x50 pixels of width & height and in the 20000 and 100000 pixel from the top left 0,0 of your screen (this means the window will be placed out of bounds, "invisible")
That window will be created without status bar and without toolbars.

My first guess is that this is not going to work. Due to the way setInterval works in javascript.
But I don't think this could be used to scam anyone.
What I think is a post to selfpromoting the two url's from step 2...
The markup from the snippets doesn't exist in the pages.
It's just bullshit

You just don't need the chrome plugin to execute this javascript snippets xd you can run them from the F12 (chrome developer tools) in the javascript console.

my 2c
The code absoultely does work, but apparently the site doesnt pay out. I wasnt sure when I posted this, but another user showed some proof, so I'll remove the method now.
 
Think we should avoid this at all cost.
FOCUS on legit business.
It will be paid off in the long run.

This guy! Listne to him or at least do something blackhat that yields a huge amount of money in a short time so it's pays off the time you invest in it instead of doing stuff for a few bucks a day guys
 
Maybe OP is the one supplying the links themselves?

In my opinion, it seems like a unique way to sell traffic lol.
 
How can it make $5?
Adiphy pays $0.001 per news.
at first they show people they are paying $0.01. After your each $20 they make it $0.001 which makes it impossible for vast majority people to click 500 news of $0.001 and finally they give up their $20 too

EDIT: I've tried this code and it doesn't work. Clicking START but nothing happens.
 
Last edited:
Back
Top