Bitcoin Forum
May 12, 2024, 07:05:23 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: Faucet Rotator Script  (Read 1034 times)
marekmikula8 (OP)
Newbie
*
Offline Offline

Activity: 42
Merit: 0


View Profile WWW
June 29, 2015, 08:48:54 PM
 #1

Hello!

I am selling faucet rotator script.
Price: 0.005BTC
Demo: Here
Screenshots:

http://i62.tinypic.com/ibkm8k.png

If you want faucet rotator script like my http://moneyearn.eu/ PM me.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1715497523
Hero Member
*
Offline Offline

Posts: 1715497523

View Profile Personal Message (Offline)

Ignore
1715497523
Reply with quote  #2

1715497523
Report to moderator
1715497523
Hero Member
*
Offline Offline

Posts: 1715497523

View Profile Personal Message (Offline)

Ignore
1715497523
Reply with quote  #2

1715497523
Report to moderator
dart vader
Full Member
***
Offline Offline

Activity: 182
Merit: 100



View Profile
August 03, 2015, 09:25:27 PM
 #2

looks good

how do add/remove faucets work?

thanks
BurgerKill
Full Member
***
Offline Offline

Activity: 210
Merit: 100



View Profile
August 03, 2015, 09:26:48 PM
 #3

looks good

how do add/remove faucets work?

thanks

I'd like to know that as well. Is there an administrator panel, or is it all by code?
JerryCurlzzz
Hero Member
*****
Offline Offline

Activity: 504
Merit: 500


View Profile
August 03, 2015, 09:33:15 PM
 #4

I can give this for free, since it's a free script! Contact me for info.
BurgerKill
Full Member
***
Offline Offline

Activity: 210
Merit: 100



View Profile
August 03, 2015, 09:48:34 PM
 #5

I can give this for free, since it's a free script! Contact me for info.

I can confirm that he's telling the truth. The OP is simply trying to make some money off of something he got for free.
jeannemadrigal2
Sr. Member
****
Offline Offline

Activity: 322
Merit: 250



View Profile
August 03, 2015, 09:52:39 PM
 #6

I can give this for free, since it's a free script! Contact me for info.

Thank you so much sir!  I was interested in this, even though I am not all that fond of faucets.  Free money is free after all Smiley
liteon
Legendary
*
Offline Offline

Activity: 1092
Merit: 1000


I'm a Firestarter!


View Profile WWW
August 03, 2015, 09:53:33 PM
 #7

It's just a frame that needs to be added in index.html. Then you edit index.html and adding site by site. Had it somewhere but I forgot where I placed it on my hard drive. If I find will share with all somewhere on this forum.

Selling NordVPN account with premium sub - expires 2021! PM me to buy.
BurgerKill
Full Member
***
Offline Offline

Activity: 210
Merit: 100



View Profile
August 03, 2015, 10:04:57 PM
 #8

It's just a frame that needs to be added in index.html. Then you edit index.html and adding site by site. Had it somewhere but I forgot where I placed it on my hard drive. If I find will share with all somewhere on this forum.

No need to; Jerry already did it. Just PM him; I would paste it here but the credit goes to Jerry.
JerryCurlzzz
Hero Member
*****
Offline Offline

Activity: 504
Merit: 500


View Profile
August 03, 2015, 10:05:52 PM
Last edit: August 04, 2015, 10:23:35 AM by JerryCurlzzz
 #9

Why not?
If you want help with anything just let me know!

NOTE: The file must be rotator.htm

Code:
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <meta name="description" content="The best faucet rotator">
<link rel="stylesheet" href="//cdn.jsdelivr.net/bootstrap/3.2.0/css/bootstrap.min.css">
<script src="//cdn.jsdelivr.net/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<title>Bitcoin Rotator</title>

<style>
body,html,.main-display-area,.col-md-7 {
   height:100%;
}

body {
background: #ECF0F1;
}
.container-full {
width: 90%;
height: 80px;
margin-left: 50px;
text-align: center;
}

p {
margin: 0;
}

h1 {
margin: 17px 20px auto auto;
color: #000000;
}

h2 {
17px auto auto 20px;
}

.btn-danger {
background-color: #DB044E;
border-color: #DB044E;
color: #FEFFFB;
}

.btn-danger:hover {
background-color: #DB044E;
border-color: #FEFFFB;
color: #000000;
}
</style>
</head>
<body>
<script>
var websites = 1;
function newSite() {
if (websites > 4) {
    websites = 0;
}  
    var sites = [https://google.com','https://google.com','https://google.com']
    document.getElementById('myIframe').src = sites[websites];
    var height=window.innerWidth;//Firefox
    if (document.body.clientHeight)
    {
        height=document.body.clientHeight;//IE
    }
    document.getElementById("myIframe").style.height= parseInt(height - document.getElementById("myIframe").offsetTop-8)+"px";
    websites++;
    document.getElementById("count").innerHTML="Next Faucet "+websites+"/3"
}
</script>

<div class="container-full">
<div class="row" height="95%">
  <div class="col-md-3"><h1 align="center"><a href="https://google.com"><font color="DB044E">Jerry</FONT></a></h1></div>
  <div class="col-md-6"><p style="text-align: center; margin: 12px; background-color: #FEFFFB; border-color: #DB044E; width: 468px; height: 60px;">468x60 ad</p></div>
  <div class="col-md-3"><h2 align="center"><a class="btn btn-danger btn-lg" id="count" role="button" onClick="newSite()" >Next Faucet</a><br/></h2></div>

</div>
<hr>
<!-- <p align="center"><b><font color="red">You should disable your adblocking program, when you're shifting tru faucets!</font></b></p> -->
</div>

<iframe id="myIframe" src="https://google.com" style="border: 0; width: 100%; height: 86%;"></iframe>
</body>
</html>
liteon
Legendary
*
Offline Offline

Activity: 1092
Merit: 1000


I'm a Firestarter!


View Profile WWW
August 03, 2015, 11:05:39 PM
 #10

Yes, that one.
As you can see, it's simple and you can customize it. Like background color, width and height / sizes, and so on.
Simple, but still effective.

Selling NordVPN account with premium sub - expires 2021! PM me to buy.
tarsua
Sr. Member
****
Offline Offline

Activity: 266
Merit: 250


View Profile
August 04, 2015, 12:05:09 AM
 #11

Why not?
If you want help with anything just let me know!

Code:
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <meta name="description" content="The best faucet rotator">
<link rel="stylesheet" href="//cdn.jsdelivr.net/bootstrap/3.2.0/css/bootstrap.min.css">
<script src="//cdn.jsdelivr.net/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<title>Bitcoin Rotator</title>

<style>
body,html,.main-display-area,.col-md-7 {
   height:100%;
}

body {
background: #ECF0F1;
}
.container-full {
width: 90%;
height: 80px;
margin-left: 50px;
text-align: center;
}

p {
margin: 0;
}

h1 {
margin: 17px 20px auto auto;
color: #000000;
}

h2 {
17px auto auto 20px;
}

.btn-danger {
background-color: #DB044E;
border-color: #DB044E;
color: #FEFFFB;
}

.btn-danger:hover {
background-color: #DB044E;
border-color: #FEFFFB;
color: #000000;
}
</style>
</head>
<body>
<script>
var websites = 1;
function newSite() {
if (websites > 4) {
    websites = 0;
}  
    var sites = [https://google.com','https://google.com','https://google.com']
    document.getElementById('myIframe').src = sites[websites];
    var height=window.innerWidth;//Firefox
    if (document.body.clientHeight)
    {
        height=document.body.clientHeight;//IE
    }
    document.getElementById("myIframe").style.height= parseInt(height - document.getElementById("myIframe").offsetTop-8)+"px";
    websites++;
    document.getElementById("count").innerHTML="Next Faucet "+websites+"/3"
}
</script>

<div class="container-full">
<div class="row" height="95%">
  <div class="col-md-3"><h1 align="center"><a href="https://google.com"><font color="DB044E">Jerry</FONT></a></h1></div>
  <div class="col-md-6"><p style="text-align: center; margin: 12px; background-color: #FEFFFB; border-color: #DB044E; width: 468px; height: 60px;">468x60 ad</p></div>
  <div class="col-md-3"><h2 align="center"><a class="btn btn-danger btn-lg" id="count" role="button" onClick="newSite()" >Next Faucet</a><br/></h2></div>

</div>
<hr>
<!-- <p align="center"><b><font color="red">You should disable your adblocking program, when you're shifting tru faucets!</font></b></p> -->
</div>

<iframe id="myIframe" src="https://google.com" style="border: 0; width: 100%; height: 86%;"></iframe>
</body>
</html>
whre exactly in the script would i place the faucet links? can someone help me with this?
JerryCurlzzz
Hero Member
*****
Offline Offline

Activity: 504
Merit: 500


View Profile
August 04, 2015, 12:40:54 AM
 #12

Why not?
If you want help with anything just let me know!

Code:
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <meta name="description" content="The best faucet rotator">
<link rel="stylesheet" href="//cdn.jsdelivr.net/bootstrap/3.2.0/css/bootstrap.min.css">
<script src="//cdn.jsdelivr.net/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<title>Bitcoin Rotator</title>

<style>
body,html,.main-display-area,.col-md-7 {
   height:100%;
}

body {
background: #ECF0F1;
}
.container-full {
width: 90%;
height: 80px;
margin-left: 50px;
text-align: center;
}

p {
margin: 0;
}

h1 {
margin: 17px 20px auto auto;
color: #000000;
}

h2 {
17px auto auto 20px;
}

.btn-danger {
background-color: #DB044E;
border-color: #DB044E;
color: #FEFFFB;
}

.btn-danger:hover {
background-color: #DB044E;
border-color: #FEFFFB;
color: #000000;
}
</style>
</head>
<body>
<script>
var websites = 1;
function newSite() {
if (websites > 4) {
    websites = 0;
}   
    var sites = [https://google.com','https://google.com','https://google.com']
    document.getElementById('myIframe').src = sites[websites];
    var height=window.innerWidth;//Firefox
    if (document.body.clientHeight)
    {
        height=document.body.clientHeight;//IE
    }
    document.getElementById("myIframe").style.height= parseInt(height - document.getElementById("myIframe").offsetTop-8)+"px";
    websites++;
    document.getElementById("count").innerHTML="Next Faucet "+websites+"/3"
}
</script>

<div class="container-full">
<div class="row" height="95%">
  <div class="col-md-3"><h1 align="center"><a href="https://google.com"><font color="DB044E">Jerry</FONT></a></h1></div>
  <div class="col-md-6"><p style="text-align: center; margin: 12px; background-color: #FEFFFB; border-color: #DB044E; width: 468px; height: 60px;">468x60 ad</p></div>
  <div class="col-md-3"><h2 align="center"><a class="btn btn-danger btn-lg" id="count" role="button" onClick="newSite()" >Next Faucet</a><br/></h2></div>

</div>
<hr>
<!-- <p align="center"><b><font color="red">You should disable your adblocking program, when you're shifting tru faucets!</font></b></p> -->
</div>

<iframe id="myIframe" src="https://google.com" style="border: 0; width: 100%; height: 86%;"></iframe>
</body>
</html>
whre exactly in the script would i place the faucet links? can someone help me with this?

Isn't it obvious? Check the three google links Roll Eyes
Kasawari
Sr. Member
****
Offline Offline

Activity: 336
Merit: 250


View Profile
August 04, 2015, 01:10:22 AM
 #13

thank you for posting the script  Smiley
JerryCurlzzz
Hero Member
*****
Offline Offline

Activity: 504
Merit: 500


View Profile
August 04, 2015, 10:24:43 AM
 #14

NOTE FOR THE SCRIPT ABOVE: The file must be rotator.htm
Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!