Bitcoin Forum

Economy => Digital goods => Topic started by: marekmikula8 on June 29, 2015, 08:48:54 PM



Title: Faucet Rotator Script
Post by: marekmikula8 on June 29, 2015, 08:48:54 PM
Hello!

I am selling faucet rotator script.
Price: 0.005BTC
Demo: Here (http://moneyearn.eu/)
Screenshots:

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

If you want faucet rotator script like my http://moneyearn.eu/ (http://moneyearn.eu/) PM me.


Title: Re: Faucet Rotator Script
Post by: dart vader on August 03, 2015, 09:25:27 PM
looks good

how do add/remove faucets work?

thanks


Title: Re: Faucet Rotator Script
Post by: BurgerKill on August 03, 2015, 09:26:48 PM
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?


Title: Re: Faucet Rotator Script
Post by: JerryCurlzzz on August 03, 2015, 09:33:15 PM
I can give this for free, since it's a free script! Contact me for info.


Title: Re: Faucet Rotator Script
Post by: BurgerKill on August 03, 2015, 09:48:34 PM
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.


Title: Re: Faucet Rotator Script
Post by: jeannemadrigal2 on August 03, 2015, 09:52:39 PM
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 :)


Title: Re: Faucet Rotator Script
Post by: liteon on August 03, 2015, 09:53:33 PM
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.


Title: Re: Faucet Rotator Script
Post by: BurgerKill on August 03, 2015, 10:04:57 PM
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.


Title: Re: Faucet Rotator Script
Post by: JerryCurlzzz on August 03, 2015, 10:05:52 PM
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>


Title: Re: Faucet Rotator Script
Post by: liteon on August 03, 2015, 11:05:39 PM
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.


Title: Re: Faucet Rotator Script
Post by: tarsua on August 04, 2015, 12:05:09 AM
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?


Title: Re: Faucet Rotator Script
Post by: JerryCurlzzz on August 04, 2015, 12:40:54 AM
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 ::)


Title: Re: Faucet Rotator Script
Post by: Kasawari on August 04, 2015, 01:10:22 AM
thank you for posting the script  :)


Title: Re: Faucet Rotator Script
Post by: JerryCurlzzz on August 04, 2015, 10:24:43 AM
NOTE FOR THE SCRIPT ABOVE: The file must be rotator.htm