Bitcoin Forum

Economy => Micro Earnings => Topic started by: coinableS on November 25, 2015, 06:35:09 AM



Title: Open Sourced Faucet with Dice Script
Post by: coinableS on November 25, 2015, 06:35:09 AM
https://github.com/coinables/Bitcoin-Faucet-Dice-Faucet-Box

Site and code is now open to anyone who wishes to clone/fork or whatever.

Faucet+Dice is a bitcoin faucet that also has a fully functional dice game where users can play with their earnings.
Site is PHP and Javascript.
Payouts are managed with faucetbox.
Anti-bot is with funcaptcha Google's reCaptcha.

Live Example:  https://coinables.website/faucetbox (https://coinables.website/faucetbox)

http://i.snag.gy/wsYxp.jpg


Title: Re: Open Sourced Faucet with Dice Script
Post by: HardForkComing on November 25, 2015, 06:39:58 AM
This is sick :)

Gonna check it out, downloading.

EDIT: It's a well thought money generator. There's much potential to earn money with this if you can promote it.


Title: Re: Open Sourced Faucet with Dice Script
Post by: JohnieWalker on November 25, 2015, 07:04:39 PM
looks great :)

when i try to import database i get syntax error, importing trough phpmyadmin,
character set: utf-8
partial import: unchecked
format: SQL
SQL compatibility mode:  NONE
Do not use AUTO_INCREMENT for zero values: unchecked

Code:
Error

SQL query:

------------------------------------------------------ --
--
-- Table structure for table `faucetbox`
--
CREATE TABLE IF NOT EXISTS `faucetbox` (
`count` int( 60 ) NOT NULL AUTO_INCREMENT ,
`addy` varchar( 100 ) NOT NULL ,
`time` int( 50 ) NOT NULL ,
`bbb` int( 12 ) NOT NULL ,
`ipp` varchar( 100 ) NOT NULL ,
`reefer` varchar( 100 ) NOT NULL ,
PRIMARY KEY ( `count` ) ,
UNIQUE KEY `addy` ( `addy` , `ipp` )
) ENGINE = MYISAM DEFAULT CHARSET = latin1 AUTO_INCREMENT =1574;

MySQL said: Documentation
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '--------------------------------------------------------

--
-- Table structure ' at line 1


how to install script into domain's root directory? Thank you


Title: Re: Open Sourced Faucet with Dice Script
Post by: coinableS on November 26, 2015, 12:41:11 AM
looks great :)

when i try to import database i get syntax error, importing trough phpmyadmin,
character set: utf-8
partial import: unchecked
format: SQL
SQL compatibility mode:  NONE
Do not use AUTO_INCREMENT for zero values: unchecked

Code:
Error

SQL query:

------------------------------------------------------ --
--
-- Table structure for table `faucetbox`
--
CREATE TABLE IF NOT EXISTS `faucetbox` (
`count` int( 60 ) NOT NULL AUTO_INCREMENT ,
`addy` varchar( 100 ) NOT NULL ,
`time` int( 50 ) NOT NULL ,
`bbb` int( 12 ) NOT NULL ,
`ipp` varchar( 100 ) NOT NULL ,
`reefer` varchar( 100 ) NOT NULL ,
PRIMARY KEY ( `count` ) ,
UNIQUE KEY `addy` ( `addy` , `ipp` )
) ENGINE = MYISAM DEFAULT CHARSET = latin1 AUTO_INCREMENT =1574;

MySQL said: Documentation
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '--------------------------------------------------------

--
-- Table structure ' at line 1


how to install script into domain's root directory? Thank you

Thanks, there was a dumb error on my part. I tested it and it now imports fine.  I have updated the repo on github.

Charset.. UTF-8
Format.. SQL
Compatibility mode.. None
Do not allow auto increment for zero values.. CHECKED


Title: Re: Open Sourced Faucet with Dice Script
Post by: misterbit on November 26, 2015, 12:54:30 AM
Thank you very much, will have to look at it


Title: Re: Open Sourced Faucet with Dice Script
Post by: Ace_Of_Fades on November 26, 2015, 01:35:46 AM
This is beautiful, thank you so much. I will definitely be using this. One question, can players deposit coins into the game?


Title: Re: Open Sourced Faucet with Dice Script
Post by: coinableS on November 26, 2015, 02:00:26 AM
This is beautiful, thank you so much. I will definitely be using this. One question, can players deposit coins into the game?

No, that would make it a gambling site. This is just a fun addition to a faucet


Title: Re: Open Sourced Faucet with Dice Script
Post by: Ace_Of_Fades on November 26, 2015, 03:04:45 AM
This is beautiful, thank you so much. I will definitely be using this. One question, can players deposit coins into the game?

No, that would make it a gambling site. This is just a fun addition to a faucet

You are a good man! Props to you for not trying to make profit off of this. Once again, thank you for the script.


Title: Re: Open Sourced Faucet with Dice Script
Post by: lama-hunter on November 26, 2015, 04:21:49 AM
Wow - thank you for the open source really nice to have :)

also tried the life demo it is pretty nice to get the Coins on the same site and not to make any deposit at all to gamble!
How is the Timer set? i becam 300 satoshi for my first claim.. Therefore 10 Minutes should be the Timer? AM i right?

Would be great to know ;)

regards
lama-hunter


Title: Re: Open Sourced Faucet with Dice Script
Post by: arruah on November 26, 2015, 04:22:37 AM
Is it possible to add the option of investing funds players? I want to add this to my website.


Title: Re: Open Sourced Faucet with Dice Script
Post by: coinableS on November 26, 2015, 04:35:12 AM
Wow - thank you for the open source really nice to have :)

also tried the life demo it is pretty nice to get the Coins on the same site and not to make any deposit at all to gamble!
How is the Timer set? i becam 300 satoshi for my first claim.. Therefore 10 Minutes should be the Timer? AM i right?

Would be great to know ;)

regards
lama-hunter

You can change the timer and rewards to whatever you would like to for your site.

Is it possible to add the option of investing funds players? I want to add this to my website.

Yes it's possible, but that's not the focus of this script. There are way too many scammers out there that would use the source code to open a dice site and then run away with customer funds. 
It could be added relatively easily with a few tweaks.


Title: Re: Open Sourced Faucet with Dice Script
Post by: Superhitech on November 26, 2015, 06:15:32 AM
Cool, I'll check this out and see how it goes. I appreciate you giving out the script for free, and I might intergrate this into my faucet.

If I do intergrate this, may I use the FAQ on your demo? It's well written.


Title: Re: Open Sourced Faucet with Dice Script
Post by: coinableS on November 26, 2015, 12:49:41 PM
Cool, I'll check this out and see how it goes. I appreciate you giving out the script for free, and I might intergrate this into my faucet.

If I do intergrate this, may I use the FAQ on your demo? It's well written.

Yes feel free to use any or all parts


Title: Re: Open Sourced Faucet with Dice Script
Post by: babo on November 26, 2015, 03:45:41 PM
great work


Title: Re: Open Sourced Faucet with Dice Script
Post by: FBCTorg on November 26, 2015, 04:41:03 PM
very nice from you sharing this with others, PM me your BTC addy please :)


Title: Re: Open Sourced Faucet with Dice Script
Post by: MRKLYE on November 26, 2015, 04:45:00 PM
Awesome dude! Any way this thing can use on host wallets to faucet from or no?

That would be a neat feature. I am going to check out your code for sure and see how you've done things.
Thank you for sharing your source code. Very kind of you!


Title: Re: Open Sourced Faucet with Dice Script
Post by: coinableS on November 26, 2015, 05:09:12 PM
very nice from you sharing this with others, PM me your BTC addy please :)

There's one in the readme on the git hub repo ; )


Title: Re: Open Sourced Faucet with Dice Script
Post by: FBCTorg on November 26, 2015, 05:27:42 PM
very nice from you sharing this with others, PM me your BTC addy please :)

There's one in the readme on the git hub repo ; )
0.01 sent, cheers :)



Title: Re: Open Sourced Faucet with Dice Script
Post by: coinableS on November 26, 2015, 05:28:28 PM
Awesome dude! Any way this thing can use on host wallets to faucet from or no?

That would be a neat feature. I am going to check out your code for sure and see how you've done things.
Thank you for sharing your source code. Very kind of you!

Not sure what you mean by host wallet. It uses faucetbox to manage faucet funds.


Title: Re: Open Sourced Faucet with Dice Script
Post by: coinableS on November 26, 2015, 05:30:18 PM
very nice from you sharing this with others, PM me your BTC addy please :)

There's one in the readme on the git hub repo ; )
0.01 sent, cheers :)


Thank you for the support :)


Title: Re: Open Sourced Faucet with Dice Script
Post by: FBCTorg on November 26, 2015, 05:35:12 PM
very nice from you sharing this with others, PM me your BTC addy please :)

There's one in the readme on the git hub repo ; )
0.01 sent, cheers :)


Thank you for the support :)
i used your script on this site: LINK (https://freebitcoindice.com), faucet balance was not showing any value, so i had to remove it, do you have any idea what was wrong? thank you


Title: Re: Open Sourced Faucet with Dice Script
Post by: onewiseguy on November 26, 2015, 05:41:56 PM
any way you can set up a a threshold?


Title: Re: Open Sourced Faucet with Dice Script
Post by: coinableS on November 26, 2015, 06:23:30 PM
very nice from you sharing this with others, PM me your BTC addy please :)

There's one in the readme on the git hub repo ; )
0.01 sent, cheers :)


Thank you for the support :)
i used your script on this site: LINK (https://freebitcoindice.com), faucet balance was not showing any value, so i had to remove it, do you have any idea what was wrong? thank you
Now that you mention it i think I do. I'll take a look when I get home wife had me a run a 5k this morning


Title: Re: Open Sourced Faucet with Dice Script
Post by: MRKLYE on November 26, 2015, 06:25:36 PM
very nice from you sharing this with others, PM me your BTC addy please :)

There's one in the readme on the git hub repo ; )
0.01 sent, cheers :)


Thank you for the support :)
i used your script on this site: LINK (https://freebitcoindice.com), faucet balance was not showing any value, so i had to remove it, do you have any idea what was wrong? thank you
Now that you mention it i think I do. I'll take a look when I get home wife had me a run a 5k this morning


I would be looking to modify this into an altcoin dice/faucet and if I could link it into the site using RPC calls that would be wonderful.

Going to take a look at the code here shortly and see what all needs tweaked. I have a few clients looking to launch this sort of service for their coins. :)


Title: Re: Open Sourced Faucet with Dice Script
Post by: coinableS on November 26, 2015, 06:25:45 PM
any way you can set up a a threshold?
Threshold for what? I set up to auto withdraw if the user has a balance over 9999 satoshis, is that what you mean?


Title: Re: Open Sourced Faucet with Dice Script
Post by: crairezx20 on November 26, 2015, 07:11:27 PM
I will try this  script ,feed back later.. Downloading... Good job i hope it will work with no problem..


Title: Re: Open Sourced Faucet with Dice Script
Post by: coinableS on November 26, 2015, 07:11:43 PM
So when I was cloning my project to github I forgot that I had a cronjob running to keep track of the faucet balance. This is why your balance is showing nothing, because if there is no cronjob running the database table fbbal is empty.  I'm going to drop the cron, the fbbal table and just call the faucetbox API on the fly to grab the faucet balance.  Github repo has been updated.


Title: Re: Open Sourced Faucet with Dice Script
Post by: FBCTorg on November 26, 2015, 08:28:02 PM
So when I was cloning my project to github I forgot that I had a cronjob running to keep track of the faucet balance. This is why your balance is showing nothing, because if there is no cronjob running the database table fbbal is empty.  I'm going to drop the cron, the fbbal table and just call the faucetbox API on the fly to grab the faucet balance.  Github repo has been updated.
works great now

another thing i'm not sure how to setup the referral reward, the $reefAmount is a percentage value or amount proportional to $startBal  
i'm trying to setup 111 satoshi per claim with 10% ref. reward

$startBal = 111; //starting balance for users
$reefAmount = 11; //referral amount

is it correct :)?




Title: Re: Open Sourced Faucet with Dice Script
Post by: coinableS on November 26, 2015, 08:37:52 PM
So when I was cloning my project to github I forgot that I had a cronjob running to keep track of the faucet balance. This is why your balance is showing nothing, because if there is no cronjob running the database table fbbal is empty.  I'm going to drop the cron, the fbbal table and just call the faucetbox API on the fly to grab the faucet balance.  Github repo has been updated.
works great now

another thing i'm not sure how to setup the referral reward, the $reefAmount is a percentage value or amount proportional to $startBal  
i'm trying to setup 111 satoshi per claim with 10% ref. reward

$startBal = 111; //starting balance for users
$reefAmount = 11; //referral amount

is it correct :)?




Yup if you set it like the above, every new claim will be 111 satoshis and the refer will be paid 11 satoshis.

EDIT: Also if you are going to set it down to 111, you might want to change the default bet amount of 200 satoshis to a lower amount on the faucetboxgame/index.php  line 647

Code:
<input type="text" name ="bet" id="bet" value="<?php if(!isset($_POST['bet'])){ echo "200"; } else { echo $_POST['bet']; } ?>"

Change echo "200" to something lower like echo "50"


Title: Re: Open Sourced Faucet with Dice Script
Post by: onewiseguy on November 26, 2015, 10:10:31 PM
can you give a step by step on how to set the files in the hosting?

and yes a threshold to say 9999 satoshi.


Title: Re: Open Sourced Faucet with Dice Script
Post by: coinableS on November 26, 2015, 10:20:38 PM
can you give a step by step on how to set the files in the hosting?

and yes a threshold to say 9999 satoshi.

There is a threshold set, if the player has a balance that is over 9,999 satoshi their game will end and they will be paid out their balance.

All you need to do is download the zip from github. Set up a database on your web host (http://www.inmotionhosting.com/support/website/database-setup/how-do-i-create-a-mysql-database-in-my-control-panel-cpanel), update the two index.php files in each folder with the database credentials you just created and with your faucetbox and funcaptcha API keys. Import the enginedb.sql through PHPmyadmin (https://www.namecheap.com/support/knowledgebase/article.aspx/9143/29/how-to-import-and-export-database-in-cpanel-access-denied-create-database-dbname-error-and-how-to-fix-it). The landing page for your visitors is in the Faucetbox directory, to test your new site go to yoursite.com/faucetbox


Title: Re: Open Sourced Faucet with Dice Script
Post by: FBCTorg on November 27, 2015, 10:38:38 AM
So when I was cloning my project to github I forgot that I had a cronjob running to keep track of the faucet balance. This is why your balance is showing nothing, because if there is no cronjob running the database table fbbal is empty.  I'm going to drop the cron, the fbbal table and just call the faucetbox API on the fly to grab the faucet balance.  Github repo has been updated.
works great now

another thing i'm not sure how to setup the referral reward, the $reefAmount is a percentage value or amount proportional to $startBal  
i'm trying to setup 111 satoshi per claim with 10% ref. reward

$startBal = 111; //starting balance for users
$reefAmount = 11; //referral amount

is it correct :)?




Yup if you set it like the above, every new claim will be 111 satoshis and the refer will be paid 11 satoshis.

EDIT: Also if you are going to set it down to 111, you might want to change the default bet amount of 200 satoshis to a lower amount on the faucetboxgame/index.php  line 647

Code:
<input type="text" name ="bet" id="bet" value="<?php if(!isset($_POST['bet'])){ echo "200"; } else { echo $_POST['bet']; } ?>"

Change echo "200" to something lower like echo "50"
couldn't find that, thank you :)


Title: Re: Open Sourced Faucet with Dice Script
Post by: DIGITAL GOODS on November 28, 2015, 01:52:19 AM
sick. ;D


Title: Re: Open Sourced Faucet with Dice Script
Post by: KnightTrader on November 28, 2015, 08:36:02 PM
Very nice script! I did make a bet on my private test clone what won over 30000 sats and it did not auto payout. I have not changed anything what should affect to that. Anyway if I use that script somewhere I remember to pay tip :)


Title: Re: Open Sourced Faucet with Dice Script
Post by: coinableS on November 28, 2015, 09:31:19 PM
Very nice script! I did make a bet on my private test clone what won over 30000 sats and it did not auto payout. I have not changed anything what should affect to that. Anyway if I use that script somewhere I remember to pay tip :)

Doh, you're right. Left out some crucial info that was preventing the auto cashout. New commit added to fix the auto cashout. Also added a max cashout limit of 99,999 satoshis, if someone's balance is higher than that they will receive an error when trying to cashout.


Title: Re: Open Sourced Faucet with Dice Script
Post by: KnightTrader on November 28, 2015, 10:02:37 PM
Very nice script! I did make a bet on my private test clone what won over 30000 sats and it did not auto payout. I have not changed anything what should affect to that. Anyway if I use that script somewhere I remember to pay tip :)

Doh, you're right. Left out some crucial info that was preventing the auto cashout. New commit added to fix the auto cashout. Also added a max cashout limit of 99,999 satoshis, if someone's balance is higher than that they will receive an error when trying to cashout.

Thanks! I think those are important features to not risk too much of faucet balance.


Title: Re: Open Sourced Faucet with Dice Script
Post by: sebungkus on November 28, 2015, 10:54:00 PM
Nice script brother :D


Title: Re: Open Sourced Faucet with Dice Script
Post by: mg8 on November 29, 2015, 08:22:34 PM
Thank you for this nice script, can you change the house edge of this game?


Title: Re: Open Sourced Faucet with Dice Script
Post by: onewiseguy on November 29, 2015, 11:50:03 PM
great script.
Thanks


Title: Re: Open Sourced Faucet with Dice Script
Post by: coinableS on November 30, 2015, 12:06:27 AM
Thank you for this nice script, can you change the house edge of this game?

Yes you could change the house edge if you changed the way the profit is calculated.

faucetboxgame/index.php  lines 51 and 148

Code:
$multi2 = $multi - 0.02;  //house edge

I have it set up so that it cuts off 2% off the multiplier. So if someone bets with 50/50 chance of winning, if they win they will only receive a prize as if they bet at a 52% probability instead of 50%.


Title: Re: Open Sourced Faucet with Dice Script
Post by: mobnepal on November 30, 2015, 11:18:15 AM
You have done great work, just downloaded it. I am thinking of adding dice game to my site now i can. I already have hangman game installed now i will have dice game added in my faucet. Will tell more about it opening new thread soon.

Once again thanks for sharing and making it open source.


Title: Re: Open Sourced Faucet with Dice Script
Post by: sebungkus on December 01, 2015, 06:56:08 AM
Please help me sir ,
Import database eror :'(

https://lh3.googleusercontent.com/-CczPraREvgw/Vl1CrboqNnI/AAAAAAAAB0Q/c12aRpMNv6E/s512-Ic42/dbdb.png


Title: Re: Open Sourced Faucet with Dice Script
Post by: coinableS on December 01, 2015, 01:24:05 PM

You need to select a database from the lefthand column before you click on import.


Title: Re: Open Sourced Faucet with Dice Script
Post by: sebungkus on December 01, 2015, 02:04:59 PM

You need to select a database from the lefthand column before you click on import.

Thanks sir , Problem Solved  8) :D

One more thing I want to ask, how to change the minimum payout to 8000 satoshi, at this point my faucet no minimum payout? :(


Title: Re: Open Sourced Faucet with Dice Script
Post by: FaucetRank.com on December 01, 2015, 02:33:22 PM
This is really nice faucet it can increase revenue of faucet owners.


Title: Re: Open Sourced Faucet with Dice Script
Post by: coinableS on December 01, 2015, 03:17:48 PM

You need to select a database from the lefthand column before you click on import.

Thanks sir , Problem Solved  8) :D

One more thing I want to ask, how to change the minimum payout to 8000 satoshi, at this point my faucet no minimum payout? :(
You want people to have to play up to a 8000 balance before cashout? Doesn't that defeat the purpose of a faucet?


Title: Re: Open Sourced Faucet with Dice Script
Post by: sebungkus on December 01, 2015, 03:43:07 PM
You want people to have to play up to a 8000 balance before cashout? Doesn't that defeat the purpose of a faucet?

in some faucet I look like that, they apply a minimum payout. even up to 20,000 balance: '(
http://tinypic.com/view.php?pic=j9vz9h&s=9#.Vl2_Ub9xXIU


Title: Re: Open Sourced Faucet with Dice Script
Post by: KnightTrader on December 01, 2015, 06:59:44 PM
Here is my edition of this great script: http://winco.in/faucetbox

I have privately already tipped coinableS, but if he someday converts this to altcoins available at faucetbox, maybe I buy more pints for him ;D


Title: Re: Open Sourced Faucet with Dice Script
Post by: coinableS on December 01, 2015, 08:12:52 PM
Here is my edition of this great script: http://winco.in/faucetbox

I have privately already tipped coinableS, but if he someday converts this to altcoins available at faucetbox, maybe I buy more pints for him ;D
Nicely done knighttrader!
This could very easily be adapted to altcoins on faucebox. I could make the update if others would find it useful.


Title: Re: Open Sourced Faucet with Dice Script
Post by: KnightTrader on December 02, 2015, 08:05:26 PM
Here is my edition of this great script: http://winco.in/faucetbox

I have privately already tipped coinableS, but if he someday converts this to altcoins available at faucetbox, maybe I buy more pints for him ;D
Nicely done knighttrader!
This could very easily be adapted to altcoins on faucebox. I could make the update if others would find it useful.

Claim amounts have decreased significantly, but I wonder if they all were bots and this is more hard to bots because not basic script. Well, interesting to see if this get back to official faucetbox list how things continue. For sure I dont want to feed bots.


Title: Re: Open Sourced Faucet with Dice Script
Post by: amrulshare on December 05, 2015, 07:34:33 AM
Thank Your sir, Very Nice Scrit Faucet .. Loved  ;)


Title: Re: Open Sourced Faucet with Dice Script
Post by: KnightTrader on December 05, 2015, 09:36:41 PM
Hey thanks for altcoin support! I know this can be too much asked, but is there any possibility to change directories of script? Like faucetbox to be ltc and faucetboxgame to be ltcgame? Just to avoid too much clicking and subdirectories if running several faucets. I know it is possible, but need guidelines how to do that :D

EDIT: You can post guidelines to me privately too and I pay commission, but same commission you get also if post them publick and I use them. I think there is no other problem than explaining how to do that, but as you know I have already tried to do that with partically success, so I might learn quick.


Title: Re: Open Sourced Faucet with Dice Script
Post by: coinableS on December 06, 2015, 12:52:02 AM
Hey thanks for altcoin support! I know this can be too much asked, but is there any possibility to change directories of script? Like faucetbox to be ltc and faucetboxgame to be ltcgame? Just to avoid too much clicking and subdirectories if running several faucets. I know it is possible, but need guidelines how to do that :D

EDIT: You can post guidelines to me privately too and I pay commission, but same commission you get also if post them publick and I use them. I think there is no other problem than explaining how to do that, but as you know I have already tried to do that with partically success, so I might learn quick.

The altcoin commit from 8 hours ago was not stable and was reverted almost immediately.  This will require more development before it can be rolled out. Sorry for any confusion this may have caused.


Title: Re: Open Sourced Faucet with Dice Script
Post by: KnightTrader on December 06, 2015, 10:54:16 AM
Hey thanks for altcoin support! I know this can be too much asked, but is there any possibility to change directories of script? Like faucetbox to be ltc and faucetboxgame to be ltcgame? Just to avoid too much clicking and subdirectories if running several faucets. I know it is possible, but need guidelines how to do that :D

EDIT: You can post guidelines to me privately too and I pay commission, but same commission you get also if post them publick and I use them. I think there is no other problem than explaining how to do that, but as you know I have already tried to do that with partically success, so I might learn quick.

The altcoin commit from 8 hours ago was not stable and was reverted almost immediately.  This will require more development before it can be rolled out. Sorry for any confusion this may have caused.

Ok, I was too excited to check current situation. Anyway, my question above is same if you some day roll it out :)


Title: Re: Open Sourced Faucet with Dice Script
Post by: Superhitech on December 07, 2015, 04:51:00 AM
Hey thanks for altcoin support! I know this can be too much asked, but is there any possibility to change directories of script? Like faucetbox to be ltc and faucetboxgame to be ltcgame? Just to avoid too much clicking and subdirectories if running several faucets. I know it is possible, but need guidelines how to do that :D

You can change the directories by renaming the folders, then going into the index.php file in /faucetbox, then click ctrl+f and search for "/faucetboxgame" (without quotations) find all of them, and rename them to whatever you've named the faucetboxgame directory to. Do the same in the index.php file in /faucetboxgame, just vice versa.

Also, coinableS, I've changed

Code:
//custom parameters
$api_key = "1234XYB"; //faucetbox API KEY
$startBal = 300; //starting balance for users
$reefAmount = 300; //referral amount
$timeBetweenClaims = 1800; //wait time between claims in seconds
$private_key = "1a1a1a_1a1a1a_1a_1a1"; //funcaptcha private key
$publicKey = "1b1b1_1b1b_1b1b1b1"; //funcaptcha public key

To

Code:
//custom parameters
$api_key = "1234XYB"; //faucetbox API KEY
$startBal = 200; //starting balance for users
$reefAmount = 300; //referral amount
$timeBetweenClaims = 3600; //wait time between claims in seconds
$private_key = "1a1a1a_1a1a1a_1a_1a1"; //funcaptcha private key
$publicKey = "1b1b1_1b1b_1b1b1b1"; //funcaptcha public key

But it still seems to dispense 300 satoshis in the user balance. Any ideas why this is happening? I have changed the names of the directories, not sure if that affected it or not.


Title: Re: Open Sourced Faucet with Dice Script
Post by: FBCTorg on December 07, 2015, 09:58:45 AM
i had same problem when changing rewards, i'm not sure if it's the correct way but deleting the database helped


Title: Re: Open Sourced Faucet with Dice Script
Post by: wdnj on December 07, 2015, 12:38:01 PM
Is this script can work with dogecoin?


Title: Re: Open Sourced Faucet with Dice Script
Post by: coinableS on December 07, 2015, 01:34:48 PM
Hey thanks for altcoin support! I know this can be too much asked, but is there any possibility to change directories of script? Like faucetbox to be ltc and faucetboxgame to be ltcgame? Just to avoid too much clicking and subdirectories if running several faucets. I know it is possible, but need guidelines how to do that :D

You can change the directories by renaming the folders, then going into the index.php file in /faucetbox, then click ctrl+f and search for "/faucetboxgame" (without quotations) find all of them, and rename them to whatever you've named the faucetboxgame directory to. Do the same in the index.php file in /faucetboxgame, just vice versa.

Also, coinableS, I've changed

Code:
//custom parameters
$api_key = "1234XYB"; //faucetbox API KEY
$startBal = 300; //starting balance for users
$reefAmount = 300; //referral amount
$timeBetweenClaims = 1800; //wait time between claims in seconds
$private_key = "1a1a1a_1a1a1a_1a_1a1"; //funcaptcha private key
$publicKey = "1b1b1_1b1b_1b1b1b1"; //funcaptcha public key

To

Code:
//custom parameters
$api_key = "1234XYB"; //faucetbox API KEY
$startBal = 200; //starting balance for users
$reefAmount = 300; //referral amount
$timeBetweenClaims = 3600; //wait time between claims in seconds
$private_key = "1a1a1a_1a1a1a_1a_1a1"; //funcaptcha private key
$publicKey = "1b1b1_1b1b_1b1b1b1"; //funcaptcha public key

But it still seems to dispense 300 satoshis in the user balance. Any ideas why this is happening? I have changed the names of the directories, not sure if that affected it or not.

I accidentally had the 300 starting balance hard coded for returning visitors. Oops!  The github repo has been updated to fix the bug. The change is only a one-liner on /faucetbox/index.php so you don't have to re-download the entire project just that one file.



Title: Re: Open Sourced Faucet with Dice Script
Post by: Gifted on December 07, 2015, 06:08:29 PM
 @Coinables,I just wanted to say thanks for all your video's on blockchain API i plan to use your instructions to put some kind of transaction on ixomine.com.


Your video's has helped me a lot since i cant afford school to learn this,  Thanks again.


Title: Re: Open Sourced Faucet with Dice Script
Post by: KnightTrader on December 07, 2015, 09:08:42 PM
Superhitech, thanks for instructions to set up directories. I'll try that, if it works for you, I believe it work for everyone else too :)


Title: Re: Open Sourced Faucet with Dice Script
Post by: armadora on December 09, 2015, 10:13:35 PM
@coinableS

i used your script and working good. thanks script and help.

site working now ourdomain.com/faucetbox now you know. if we want to work facuet page on ourdomain.com what must i do?   


Title: Re: Open Sourced Faucet with Dice Script
Post by: coinableS on December 11, 2015, 01:58:46 AM
@coinableS

i used your script and working good. thanks script and help.

site working now ourdomain.com/faucetbox now you know. if we want to work facuet page on ourdomain.com what must i do?   

1. Move the files from /faucetbox  to your domain root.
2. change line 365 on /faucetbox/index.php to ourdomain.com/?ref=YOUR_BITCOIN_ADDRESS
3. change lines 22, 39, 136, 264, and 637 to ourdomain.com 


Title: Re: Open Sourced Faucet with Dice Script
Post by: armadora on December 15, 2015, 07:24:16 PM
1. Move the files from /faucetbox  to your domain root.
2. change line 365 on /faucetbox/index.php to ourdomain.com/?ref=YOUR_BITCOIN_ADDRESS
3. change lines 22, 39, 136, 264, and 637 to ourdomain.com  

i will edit only file in facuetbox/index.php . i will not any change file in faucetboxgame/index.php. thank you very much.  


Title: Re: Open Sourced Faucet with Dice Script
Post by: BitMaxz on December 15, 2015, 07:29:43 PM
Thanks for sharing sir i will try this script on my starting faucet.. I hope it will work.
i searching for this many times but now i got the script. again thank you sir..


Title: Re: Open Sourced Faucet with Dice Script
Post by: ShrykeZ on December 17, 2015, 06:02:38 PM
Thanks for sharing this, it's fairly straight forward to setup and works well.

Might start tinkering around with it.


Title: Re: Open Sourced Faucet with Dice Script
Post by: coinableS on December 19, 2015, 05:32:11 PM
Anyone running this script be careful!! There's a bot on the loose that is solving the funcaptcha's. They emptied my faucet in about an hour. I'll be releasing an update with a new anti-bot, likely Are You A Human.

https://i.imgur.com/9TKfwqS.png?1


Title: Re: Open Sourced Faucet with Dice Script
Post by: coinableS on December 19, 2015, 06:41:33 PM
Ok repo has been updated to use AreYouAHuman instead of funcaptcha.
https://github.com/coinables/Bitcoin-Faucet-Dice-Faucet-Box



Title: Re: Open Sourced Faucet with Dice Script
Post by: Gifted on December 19, 2015, 06:47:26 PM
Ok repo has been updated to use AreYouAHuman instead of funcaptcha.
https://github.com/coinables/Bitcoin-Faucet-Dice-Faucet-Box

           
Are you sure its not a flaw in the gambling????


Title: Re: Open Sourced Faucet with Dice Script
Post by: coinableS on December 19, 2015, 06:49:02 PM
Ok repo has been updated to use AreYouAHuman instead of funcaptcha.
https://github.com/coinables/Bitcoin-Faucet-Dice-Faucet-Box

           
Are you sure its not a flaw in the gambling????

Yea I checked all the payouts, no large cashouts. They aren't playing at all actually, just collecting the default 300 satoshis and cashout immediately.


Title: Re: Open Sourced Faucet with Dice Script
Post by: Gifted on December 19, 2015, 06:50:38 PM
Ok repo has been updated to use AreYouAHuman instead of funcaptcha.
https://github.com/coinables/Bitcoin-Faucet-Dice-Faucet-Box

          
Are you sure its not a flaw in the gambling????

Yea I checked all the payouts, no large cashouts. They aren't playing at all actually, just collecting the default 300 satoshis and cashout immediately.
I wonder why they haven't hit me with a bot... i use only funC.  if Funcaptcha is not repelling bots now then maybe i should add some kind of math question


Title: Re: Open Sourced Faucet with Dice Script
Post by: coinableS on December 19, 2015, 07:04:47 PM
I think I might have been targeted because I was paying 100% referral commission, which is hard to find in faucets. I have now reduced mine to 20%, and changed captchas so it won't be worth it for them anymore.


Title: Re: Open Sourced Faucet with Dice Script
Post by: KnightTrader on December 27, 2015, 05:51:08 PM
Any tips how to add this: http://bit.makejar.com/labs/anti-bot-links-200/install.php to this script?


Title: Re: Open Sourced Faucet with Dice Script
Post by: bitcoinboy12 on December 27, 2015, 08:05:40 PM
Nice sharing i will try this script after i have a capital around $20 and i hope my faucet will attract to visitors..


Title: Re: Open Sourced Faucet with Dice Script
Post by: KnightTrader on December 27, 2015, 08:21:12 PM
Any tips how to add this: http://bit.makejar.com/labs/anti-bot-links-200/install.php to this script?

Been under attacks again and switched back to basic script with antibot links temporarily. I dont believe it is because of FunCaptcha or 100% referral commission only, thats why I want to try antibot links. Looks like those weird referral claims without faucet claim stopped already (this script needs user faucet claim to be clicked twice, but referral commission is paid on first click).


Title: Re: Open Sourced Faucet with Dice Script
Post by: coinableS on December 27, 2015, 10:08:47 PM
Any tips how to add this: http://bit.makejar.com/labs/anti-bot-links-200/install.php to this script?

Been under attacks again and switched back to basic script with antibot links temporarily. I dont believe it is because of FunCaptcha or 100% referral commission only, thats why I want to try antibot links. Looks like those weird referral claims without faucet claim stopped already (this script needs user faucet claim to be clicked twice, but referral commission is paid on first click).

Everything went back to normal after leaving funcaptcha and switching to AreYouAHuman, which is the new default antibot for this script.
https://i.imgur.com/jEu4vyJ.png?1


Title: Re: Open Sourced Faucet with Dice Script
Post by: cancerbola on December 27, 2015, 10:14:09 PM
Hey coinables, did you know i (and everyone else) can get +EV on your dice game by selecting certain parameters of the bet?
It doesn't do much harm though, since it only works on a very small scale (the +EV bug is due to a rounding error). I won't write it here, but you can PM me if you want to know what's wrong.


Title: Re: Open Sourced Faucet with Dice Script
Post by: mexicantarget on December 27, 2015, 10:16:58 PM
Hey coinables, did you know i (and everyone else) can get +EV on your dice game by selecting certain parameters of the bet?
It doesn't do much harm though, since it only works on a very small scale (the +EV bug is due to a rounding error). I won't write it here, but you can PM me if you want to know what's wrong.
Excuse me for my ignorance.

What is "EV"?


Title: Re: Open Sourced Faucet with Dice Script
Post by: coinableS on December 27, 2015, 10:21:42 PM
Hey coinables, did you know i (and everyone else) can get +EV on your dice game by selecting certain parameters of the bet?
It doesn't do much harm though, since it only works on a very small scale (the +EV bug is due to a rounding error). I won't write it here, but you can PM me if you want to know what's wrong.
Excuse me for my ignorance.

What is "EV"?

+EV basically means the gambler has the odds in their favor.
I believe I've seen the same bug, but it's only on the far outskirts bets. Like 3% change to win or 97% chances... possibly an error with the PHP math where I should be using bcmath instead.


Title: Re: Open Sourced Faucet with Dice Script
Post by: mexicantarget on December 27, 2015, 10:24:50 PM
Hey coinables, did you know i (and everyone else) can get +EV on your dice game by selecting certain parameters of the bet?
It doesn't do much harm though, since it only works on a very small scale (the +EV bug is due to a rounding error). I won't write it here, but you can PM me if you want to know what's wrong.
Excuse me for my ignorance.

What is "EV"?

+EV basically means the gambler has the odds in their favor.
I believe I've seen the same bug, but it's only on the far outskirts bets. Like 3% change to win or 97% chances... possibly an error with the PHP math where I should be using bcmath instead.
Thanks for clarifying it, appreciate it.


Title: Re: Open Sourced Faucet with Dice Script
Post by: KnightTrader on December 27, 2015, 10:47:53 PM
Any tips how to add this: http://bit.makejar.com/labs/anti-bot-links-200/install.php to this script?

Been under attacks again and switched back to basic script with antibot links temporarily. I dont believe it is because of FunCaptcha or 100% referral commission only, thats why I want to try antibot links. Looks like those weird referral claims without faucet claim stopped already (this script needs user faucet claim to be clicked twice, but referral commission is paid on first click).

Everything went back to normal after leaving funcaptcha and switching to AreYouAHuman, which is the new default antibot for this script.
https://i.imgur.com/jEu4vyJ.png?1

They have not been attacking me continously now, last attacks before today were long time ago if I have not missed any (and probably I have missed some) and today they have attacked twice keeping 11 hours break between.

Maybe I sound paranoid, but I can see those 1000+% peaks on stats. It makes me think how much of my harmless looking traffic is actually bots too or when they attack again.

I cant see any reason why are you human would be better than funcapthca especially when I have seen vids where bots are beating it and not similar vids of funcap. Damn bots are ruining faucets.


Title: Re: Open Sourced Faucet with Dice Script
Post by: cancerbola on December 27, 2015, 10:49:50 PM
Hey coinables, did you know i (and everyone else) can get +EV on your dice game by selecting certain parameters of the bet?
It doesn't do much harm though, since it only works on a very small scale (the +EV bug is due to a rounding error). I won't write it here, but you can PM me if you want to know what's wrong.
Excuse me for my ignorance.

What is "EV"?

+EV basically means the gambler has the odds in their favor.
I believe I've seen the same bug, but it's only on the far outskirts bets. Like 3% change to win or 97% chances... possibly an error with the PHP math where I should be using bcmath instead.

No, it's the 50% - 65% win chance range on low volume bets like 1-10 satoshis.
Even though there's over 50% chance in winning in these circumstances, the bettor wins 2x of the bet if (s)he wins, thus making it +EV

For example: 1 satoshi at 65% win chance still gives me 1 satoshi profit on a win. (2 satoshi if counting the wager as well)
                   2 satoshi at 56% win chance still gives me 2 satoshi profit on a win  (4 if counting the wager as well)
and so on...


Title: Re: Open Sourced Faucet with Dice Script
Post by: KnightTrader on December 27, 2015, 11:28:45 PM
Any tips how to add this: http://bit.makejar.com/labs/anti-bot-links-200/install.php to this script?

Been under attacks again and switched back to basic script with antibot links temporarily. I dont believe it is because of FunCaptcha or 100% referral commission only, thats why I want to try antibot links. Looks like those weird referral claims without faucet claim stopped already (this script needs user faucet claim to be clicked twice, but referral commission is paid on first click).

Everything went back to normal after leaving funcaptcha and switching to AreYouAHuman, which is the new default antibot for this script.
https://i.imgur.com/jEu4vyJ.png?1

They have not been attacking me continously now, last attacks before today were long time ago if I have not missed any (and probably I have missed some) and today they have attacked twice keeping 11 hours break between.

Maybe I sound paranoid, but I can see those 1000+% peaks on stats. It makes me think how much of my harmless looking traffic is actually bots too or when they attack again.

I cant see any reason why are you human would be better than funcapthca especially when I have seen vids where bots are beating it and not similar vids of funcap. Damn bots are ruining faucets.

Besides, extra protection would not be bad anyway. Instructions how to install antibot links to basic script is very simple, I think it would not be hard to convert it to this script for one who knows how to do it :)


Title: Re: Open Sourced Faucet with Dice Script
Post by: moves on December 27, 2015, 11:42:02 PM
Oh damn. I have 90000000 satoshi in my spare xapo account. I'd use this to give it away if there was a way for users to add funds as well. Seems only fair to allow deposits if you can allow gambling. If the game is fair allowing deposits would be fair. Just make gambling fair and encrypt it. Or just release it and trust users. Or sell it.


Title: Re: Open Sourced Faucet with Dice Script
Post by: KnightTrader on December 28, 2015, 12:10:16 AM
Oh damn. I have 90000000 satoshi in my spare xapo account. I'd use this to give it away if there was a way for users to add funds as well. Seems only fair to allow deposits if you can allow gambling. If the game is fair allowing deposits would be fair. Just make gambling fair and encrypt it. Or just release it and trust users. Or sell it.

You missed the point, this is not gambling script, this is faucet game script.


Title: Re: Open Sourced Faucet with Dice Script
Post by: moves on December 28, 2015, 12:12:56 AM
Oh damn. I have 90000000 satoshi in my spare xapo account. I'd use this to give it away if there was a way for users to add funds as well. Seems only fair to allow deposits if you can allow gambling. If the game is fair allowing deposits would be fair. Just make gambling fair and encrypt it. Or just release it and trust users. Or sell it.

You missed the point, this is not gambling script, this is faucet game script.
Nope. Didn't miss it at all. I looked at it as a point of not losing the 90 mill all at once, but lasting longer.


Title: Re: Open Sourced Faucet with Dice Script
Post by: KnightTrader on December 28, 2015, 12:20:05 AM
Oh damn. I have 90000000 satoshi in my spare xapo account. I'd use this to give it away if there was a way for users to add funds as well. Seems only fair to allow deposits if you can allow gambling. If the game is fair allowing deposits would be fair. Just make gambling fair and encrypt it. Or just release it and trust users. Or sell it.

You missed the point, this is not gambling script, this is faucet game script.
Nope. Didn't miss it at all. I looked at it as a point of not losing the 90 mill all at once, but lasting longer.

Yes, but you cant deposit to faucet game, you can only gamble with free claims.


Title: Re: Open Sourced Faucet with Dice Script
Post by: moves on December 28, 2015, 12:25:33 AM
Oh damn. I have 90000000 satoshi in my spare xapo account. I'd use this to give it away if there was a way for users to add funds as well. Seems only fair to allow deposits if you can allow gambling. If the game is fair allowing deposits would be fair. Just make gambling fair and encrypt it. Or just release it and trust users. Or sell it.

You missed the point, this is not gambling script, this is faucet game script.
Nope. Didn't miss it at all. I looked at it as a point of not losing the 90 mill all at once, but lasting longer.

Yes, but you cant deposit to faucet game, you can only gamble with free claims.
You can't deposit into faucet games yet. Years ago you couldn't play video games online. You couldn't record HD video with a phone. You couldn't stream video over a TV.


Title: Re: Open Sourced Faucet with Dice Script
Post by: coinableS on December 28, 2015, 12:44:21 AM
Oh damn. I have 90000000 satoshi in my spare xapo account. I'd use this to give it away if there was a way for users to add funds as well. Seems only fair to allow deposits if you can allow gambling. If the game is fair allowing deposits would be fair. Just make gambling fair and encrypt it. Or just release it and trust users. Or sell it.

You missed the point, this is not gambling script, this is faucet game script.
Nope. Didn't miss it at all. I looked at it as a point of not losing the 90 mill all at once, but lasting longer.

Yes, but you cant deposit to faucet game, you can only gamble with free claims.
You can't deposit into faucet games yet. Years ago you couldn't play video games online. You couldn't record HD video with a phone. You couldn't stream video over a TV.
???
I designed it without deposit functions on purpose. There are plenty of games you can play where you can deposit your BTC and gamble.


Title: Re: Open Sourced Faucet with Dice Script
Post by: moves on December 28, 2015, 12:47:54 AM
Oh damn. I have 90000000 satoshi in my spare xapo account. I'd use this to give it away if there was a way for users to add funds as well. Seems only fair to allow deposits if you can allow gambling. If the game is fair allowing deposits would be fair. Just make gambling fair and encrypt it. Or just release it and trust users. Or sell it.

You missed the point, this is not gambling script, this is faucet game script.
Nope. Didn't miss it at all. I looked at it as a point of not losing the 90 mill all at once, but lasting longer.

Yes, but you cant deposit to faucet game, you can only gamble with free claims.
You can't deposit into faucet games yet. Years ago you couldn't play video games online. You couldn't record HD video with a phone. You couldn't stream video over a TV.
???
I designed it without deposit functions on purpose. There are plenty of games you can play where you can deposit your BTC and gamble.
Yeah. I know. I got this from pg 1. I only said it thinking it would just be said in passing.

Edit: you're all right upon further thought. Adding deposit would probably only cause problems with scamming and what not


Title: Re: Open Sourced Faucet with Dice Script
Post by: b-faucet on January 05, 2016, 08:10:34 AM
I have one question - is there anyone can put my bitcoin adress and lose all my money from balance ? Can you add login+password authorization?


Title: Re: Open Sourced Faucet with Dice Script
Post by: FaucetRank.com on January 05, 2016, 10:28:12 AM
Oh damn. I have 90000000 satoshi in my spare xapo account. I'd use this to give it away if there was a way for users to add funds as well. Seems only fair to allow deposits if you can allow gambling. If the game is fair allowing deposits would be fair. Just make gambling fair and encrypt it. Or just release it and trust users. Or sell it.

allowing deposits is not good as it clearly voilat adsense terms and OP said you can modify script and allow users to deposits.


Title: Re: Open Sourced Faucet with Dice Script
Post by: creepland on January 05, 2016, 12:04:32 PM
Nice script!
Will try to make something nice.
Like faucets with dice. Don't need deposit just can play with faucet rewards.
It will be good for my faucet edit.


Title: Re: Open Sourced Faucet with Dice Script
Post by: coinableS on January 05, 2016, 01:19:34 PM
I have one question - is there anyone can put my bitcoin adress and lose all my money from balance ? Can you add login+password authorization?

No one can access your coins except you, unless you give someone your private key. My site works just the same as all the other faucetbox faucets out there, no password required. The worst thing that could happen is if someone puts in your address you might earn some extra coins. You cannot lose coins with faucets.


Title: Re: Open Sourced Faucet with Dice Script
Post by: felicita on January 05, 2016, 01:31:03 PM
really nice script can you change the script that the users have to reach a cashout amount ?
#

kind regrads


Title: Re: Open Sourced Faucet with Dice Script
Post by: moves on January 05, 2016, 06:33:54 PM
Oh damn. I have 90000000 satoshi in my spare xapo account. I'd use this to give it away if there was a way for users to add funds as well. Seems only fair to allow deposits if you can allow gambling. If the game is fair allowing deposits would be fair. Just make gambling fair and encrypt it. Or just release it and trust users. Or sell it.

allowing deposits is not good as it clearly voilat adsense terms and OP said you can modify script and allow users to deposits.
I added a edit like a week ago to say I agree with it. Not in relation to adsense (as you could disable deposits or find a way to create cashflow without relying on google), but because the countless scam sites that would exist.



But what about an option to create an account? I was just kinda fooling around with the script and had to take off. My girlfriend closes my windows. What if you added something like ifaucet.net? You use your bitcoin wallet to start off. You then have the option to add a password to the account and email to recover your pass. This way you could play, collect, build up and cashout later. If you are up some coins, you can just leave it and play later with a bankroll.

I like it keeps track of wallets to IPs. I guess I tried this at one point and used a wallet I don't normally use. Maybe say something more clear like "A wallet has already been playing with this IP before" or something. I only even had the wallet ID still because it was saved in Google search. A normal everyday user is kinda stuck here. Maybe give an option to deactivate the old wallet and start working with the new one.

Also maybe default to 50 satoshi bets instead of the whole amount. I'm sure this and the previous one takes like two seconds for anyone downloading the script to change though.

Good looking script though. Only downside is the captcha. Could just be me, but I have to wait 2 seconds before clicking go once solving a funcaptcha. It's a shame people try and steal satoshi. In all the time they spend doing that they could make so much more learning a skill.


Title: Re: Open Sourced Faucet with Dice Script
Post by: coinableS on January 06, 2016, 04:59:26 AM
really nice script can you change the script that the users have to reach a cashout amount ?
#

kind regrads

You can just change line 254 in /faucetboxgame/index.php

https://github.com/coinables/Bitcoin-Faucet-Dice-Faucet-Box/blob/master/faucetboxgame/index.php#L254
Code:
                } else if ($amount < 1){
$diceMsg = "You need at least 1 satoshi to cashout";
}


Title: Re: Open Sourced Faucet with Dice Script
Post by: amrulshare on January 06, 2016, 08:43:09 AM
Thank you for Sharing this script , Good Work Man  :D


Title: Re: Open Sourced Faucet with Dice Script
Post by: felicita on January 06, 2016, 07:04:31 PM
i uploaded your script and edited the configs.
But when i enter a BTC adress and press login comes no Captcha !!

Code:
Your Captcha Was Invalid

example: http://box.yannik.biz/


Title: Re: Open Sourced Faucet with Dice Script
Post by: coinableS on January 07, 2016, 02:52:29 AM
i uploaded your script and edited the configs.
But when i enter a BTC adress and press login comes no Captcha !!

Code:
Your Captcha Was Invalid

example: http://box.yannik.biz/

Looks like you made some edits and added a div?? The captcha will auto popup when after clicking the play button using the original code I provided. Just make sure you follow all the steps in the readme on github.


Title: Re: Open Sourced Faucet with Dice Script
Post by: felicita on January 07, 2016, 09:53:12 AM
i uploaded your script and edited the configs.
But when i enter a BTC adress and press login comes no Captcha !!

Code:
Your Captcha Was Invalid

example: http://box.yannik.biz/

Looks like you made some edits and added a div?? The captcha will auto popup when after clicking the play button using the original code I provided. Just make sure you follow all the steps in the readme on github.

sorry i changed nothing on the code i only edited the mysql connection and api keys


Title: Re: Open Sourced Faucet with Dice Script
Post by: coinableS on January 07, 2016, 01:42:53 PM
i uploaded your script and edited the configs.
But when i enter a BTC adress and press login comes no Captcha !!

Code:
Your Captcha Was Invalid

example: http://box.yannik.biz/

Looks like you made some edits and added a div?? The captcha will auto popup when after clicking the play button using the original code I provided. Just make sure you follow all the steps in the readme on github.

sorry i changed nothing on the code i only edited the mysql connection and api keys

I just did a test from the github files and everything is working fine http://coinables.website/faucet1/faucetbox/

Try again:
1) download files from github as a zip.
2) create and configure a new database new database on your server
3) import the dbengine file through phpmyadmin to your new database
4) update your db login info on faucetbox/index.php, and enter your faucetbox API key
5) update your db login info on faucetboxgame/index.php, and enter your faucetbox API key
6) open ayahconfig.php and enter your AreYouAHuman credentials.
7) upload `faucetbox`, `faucetboxgame` & `verify` folders to your server.


Title: Re: Open Sourced Faucet with Dice Script
Post by: KnightTrader on January 07, 2016, 02:20:05 PM
Dont work on me either on fresh install. Same "Your Captcha Was Invalid" and no popup captcha (I decided to try to redo style modifications on fresh install, because there is so much modifications on code).


Title: Re: Open Sourced Faucet with Dice Script
Post by: coinableS on January 07, 2016, 05:19:22 PM
Dont work on me either on fresh install. Same "Your Captcha Was Invalid" and no popup captcha (I decided to try to redo style modifications on fresh install, because there is so much modifications on code).

Hmm perhaps the change to "are you human" was not wise... I think the files are unique to my are you human account the ayah and json php...


Title: Re: Open Sourced Faucet with Dice Script
Post by: felicita on January 07, 2016, 10:56:25 PM
hmm tehre m ust be any problem  ??? mybe my webhost got other mysql version or somthing like that dont kown


mabey you find the problem cant use your script momentanly


Title: Re: Open Sourced Faucet with Dice Script
Post by: coinableS on January 08, 2016, 01:52:00 AM
Sorry everyone, excuse my ignorance, I'm still new to developing software for open source use. Some of the commits I made, I did so without all the proper testing as I should have. I believe some of the AYAH files are unique to my AYAH account, causing the errors. SO I have reverted the github source back to when everything was working properly, which is under funcaptcha instead of are you a human. Sorry for the inconvenience, you'll need to re-download the files from github, and sign up with funcaptcha, you won't have to redo the database though.


Title: Re: Open Sourced Faucet with Dice Script
Post by: coinableS on January 30, 2016, 12:44:14 AM
Funcaptcha is ending free accounts in a few days. I have also used Are You A Human, and they also sent an email advising they are ending their playthru captcha soon.  So, I have made a commit to the github repo to change it over google's reCaptcha.

https://github.com/coinables/Bitcoin-Faucet-Dice-Faucet-Box/commit/eae76aceabcf8a1c40fb6868795fc46ec0516ec8

If you are already running a previous version, you only need to update the index.php page in the /faucetbox directory, you don't have to redownload the entire package. Everything else stays the same. Once you get the new index.php page just create an account with google recaptcha and enter your keys on lines 15 & 16 and you'll be up and running.
I also made a few minor bug fixes as well.


Title: Re: Open Sourced Faucet with Dice Script
Post by: MataCoin on February 01, 2016, 01:37:53 PM
hi, thank you for the awesome script.
have been installed in my site.
:D

sorry, i have a dirty question :D : how to make probabilty more hard ? :D

here's my site : http://matacoin.com/btc (http://matacoin.com/btc)
thanks.

i'll glad if i could send you a pint :D atm.
i wish can send it soon..

thank you


Title: Re: Open Sourced Faucet with Dice Script
Post by: coinableS on February 01, 2016, 01:49:02 PM
hi, thank you for the awesome script.
have been installed in my site.
:D

sorry, i have a dirty question :D : how to make probabilty more hard ? :D

here's my site : http://matacoin.com/btc (http://matacoin.com/btc)
thanks.

i'll glad if i could send you a pint :D atm.
i wish can send it soon..

thank you

I tested your site, works well.
You could change the house edge if you are looking to adjust profit
https://bitcointalk.org/index.php?topic=1262247.msg13106240#msg13106240


Title: Re: Open Sourced Faucet with Dice Script
Post by: FaucetRank.com on February 01, 2016, 05:35:20 PM
Thanks today your script helped me to integrate G-recaptcha on my faucet since funcaptcha has stopped working.


Title: Re: Open Sourced Faucet with Dice Script
Post by: KnightTrader on February 17, 2016, 04:43:07 PM
Figured out this script has already built-in bot protection if set minimum withdrawal to more than claim amount. See my solution: Hi-Lo.WinCo.in (http://hi-lo.winco.in) ;D

Yes, it makes it not to be direct faucet and more like game, but thats the way it is. And if someone thinks I have set minimum withdrawal too high, it is five times less than Bitcoin casinos usually have (but of course you can always deposit to casino and withdrawal without reaching minimum).


Title: Re: Open Sourced Faucet with Dice Script
Post by: coinableS on February 18, 2016, 01:31:13 AM
Figured out this script has already built-in bot protection if set minimum withdrawal to more than claim amount. See my solution: Hi-Lo.WinCo.in (http://hi-lo.winco.in) ;D

Yes, it makes it not to be direct faucet and more like game, but thats the way it is. And if someone thinks I have set minimum withdrawal too high, it is five times less than Bitcoin casinos usually have (but of course you can always deposit to casino and withdrawal without reaching minimum).

I think I've mentioned it before, but I really like what you've done with the script, color scheme and all.  :)

Personally I think starting at 100 and making the minimum cashout 2,000 is too difficult.  If you make it too hard then I'd expect you would end up with less repeat visitors.


Title: Re: Open Sourced Faucet with Dice Script
Post by: LyQaN on February 18, 2016, 02:13:44 AM
Maybe i'm late but i just saw this script is this secure enough to use because i never saw any faucets with this script(as i'm a newbie).


Title: Re: Open Sourced Faucet with Dice Script
Post by: coinableS on February 18, 2016, 02:34:09 AM
Maybe i'm late but i just saw this script is this secure enough to use because i never saw any faucets with this script(as i'm a newbie).

Just to run a faucet game it's fine. 
It's not optimized or designed for a casino type dice site.

I suppose I could update it to using AJAX posts so it doesn't reload the page each roll and add secured functions and prepared stmts instead of procedural... but I haven't had much reason or time to do so for a small faucet script.


Title: Re: Open Sourced Faucet with Dice Script
Post by: Axlu2518 on February 18, 2016, 04:16:44 AM
friend I love your script, I think it has a lot of potential here and my work on http://bit-store.xyz (http://bit-store.xyz) even I have some drawbacks but I'm updating again thanks for the work I hope maybe we can work on new projects .


Title: Re: Open Sourced Faucet with Dice Script
Post by: KnightTrader on February 18, 2016, 05:23:41 AM
Figured out this script has already built-in bot protection if set minimum withdrawal to more than claim amount. See my solution: Hi-Lo.WinCo.in (http://hi-lo.winco.in) ;D

Yes, it makes it not to be direct faucet and more like game, but thats the way it is. And if someone thinks I have set minimum withdrawal too high, it is five times less than Bitcoin casinos usually have (but of course you can always deposit to casino and withdrawal without reaching minimum).

I think I've mentioned it before, but I really like what you've done with the script, color scheme and all.  :)

Personally I think starting at 100 and making the minimum cashout 2,000 is too difficult.  If you make it too hard then I'd expect you would end up with less repeat visitors.

You are right, for this low amounts that is too hard. I changed it to x10 instead of x20, but if go easier than that, then should increase timer. For bigger amounts I would still use more than x10.


Title: Re: Open Sourced Faucet with Dice Script
Post by: creepland on February 18, 2016, 07:44:59 AM
Nice script thanks!!! Will edit it and try to make something. :pp


Title: Re: Open Sourced Faucet with Dice Script
Post by: Btcoinat on February 18, 2016, 09:32:30 AM
thank you for your sharing

iam call you in pm to little help with  capatch and antibot thank you again


Title: Re: Open Sourced Faucet with Dice Script
Post by: xnd on February 20, 2016, 04:42:48 PM
hello!

great job with the faucet script, it's really awesome, thank you for sharing it!

How about a countdown timer? Instead of displaying "You must wait 30 minutes between plays", show "You must wait 25min : 13secs between plays"

thank you!


Title: Re: Open Sourced Faucet with Dice Script
Post by: john2231 on February 20, 2016, 04:47:32 PM
I will try this script i hope it will work properly.. Thanks for sharing this , i was searching a script before but i don't get any script for free.
I hope this script will work properly.. I will try it first in free domain and hosting..


Title: Re: Open Sourced Faucet with Dice Script
Post by: kevinex on March 19, 2016, 08:59:42 PM
thanks for share you script ;)

its great script ^^
how range reward? i try use 100-300

my faucet : http://linkvay.cf/


Title: Re: Open Sourced Faucet with Dice Script
Post by: Superhitech on March 22, 2016, 04:29:08 PM
Once again, thank you for sharing this script and continuing to support it.

Just one question, I'm trying to test my dice site at bitcoinshowers.com/btcgame/, it says that it detects a duplicate IP and won't let me claim. Why is this caused, and is there a way that I can manually whitelist my own IP? Thanks.


Title: Re: Open Sourced Faucet with Dice Script
Post by: coinableS on March 23, 2016, 01:12:54 AM
Once again, thank you for sharing this script and continuing to support it.

Just one question, I'm trying to test my dice site at bitcoinshowers.com/btcgame/, it says that it detects a duplicate IP and won't let me claim. Why is this caused, and is there a way that I can manually whitelist my own IP? Thanks.

I just tested it, works fine on my end.  You must have already used more than one BTC address from your IP when testing your site.  It only allows one BTC address per IP, to prevent bots and cheaters.  You can manually edit the database and remove your IP from the existing address.  Your IP and address is stored in the table named `faucetbox` under `addy` and `ipp`.


Title: Re: Open Sourced Faucet with Dice Script
Post by: KnightTrader on March 26, 2016, 02:13:28 PM
There is something weird on referral commissions. I get constantly, but rarely X 6 larger referral pay outs than I have setup.

Anyway, best update for this script by my opinnion would be setting ref commissions to be paid of cash outs, not from claims. That would give better protection against bots. Now can't set up high commission, because bots refer other bots and get referral pay out of claims.


Title: Re: Open Sourced Faucet with Dice Script
Post by: KnightTrader on April 01, 2016, 09:52:26 PM
There is something weird on referral commissions. I get constantly, but rarely X 6 larger referral pay outs than I have setup.

I just wonder if it is hack, bug or something what I have messed up.

I think it is not hack, because it also appears sometimes on "trusted" referrals.


Title: Re: Open Sourced Faucet with Dice Script
Post by: coinableS on April 02, 2016, 03:46:51 AM
There is something weird on referral commissions. I get constantly, but rarely X 6 larger referral pay outs than I have setup.

I just wonder if it is hack, bug or something what I have messed up.

I think it is not hack, because it also appears sometimes on "trusted" referrals.

It's just the referral commission being taken advantage of, best solution is to lower the referral payout.  Same thing happened to me. Cheaters decided they could make more money, faster through fake referrals instead of actually playing the dice game and having to wait through the cool down period.  The bot would create new accounts, with a new IP and every new account will use the same referrer address. This way the cheater could collect 30 times in one hour through fake referrals.


Title: Re: Open Sourced Faucet with Dice Script
Post by: KnightTrader on April 02, 2016, 04:13:00 PM
There is something weird on referral commissions. I get constantly, but rarely X 6 larger referral pay outs than I have setup.

I just wonder if it is hack, bug or something what I have messed up.

I think it is not hack, because it also appears sometimes on "trusted" referrals.

It's just the referral commission being taken advantage of, best solution is to lower the referral payout.  Same thing happened to me. Cheaters decided they could make more money, faster through fake referrals instead of actually playing the dice game and having to wait through the cool down period.  The bot would create new accounts, with a new IP and every new account will use the same referrer address. This way the cheater could collect 30 times in one hour through fake referrals.

You are absolutely right on that, but I am bad on explaining things :D

I meant, I have set up affiliate commission to 10 satoshi (5%). But get constantly, but rarely 60 satoshi single referral payouts instead of 10 sat. These appear random on all referrals I think, maybe.


Title: Re: Open Sourced Faucet with Dice Script
Post by: misterbit on April 15, 2016, 04:35:00 AM
Great friend, how much is the maximum that can be removed?  ;)
how much pay for referred?
do you need a link to your website?


Title: Re: Open Sourced Faucet with Dice Script
Post by: Gifted on April 15, 2016, 10:09:28 PM
@coinables if you ever have time i was wondering if you could help me add a balance to my faucet script like moonbit..my faucet is xapo


Title: Re: Open Sourced Faucet with Dice Script
Post by: elobizph on April 16, 2016, 12:59:32 AM
wow I think I am gonna switch with this script since I am currently configuring my own faucet for now but is there any possible way to integrate this script in an existing faucetbox? or I need a new install of this?


Title: Re: Open Sourced Faucet with Dice Script
Post by: smashbtc on April 16, 2016, 02:07:48 AM
wow I think I am gonna switch with this script since I am currently configuring my own faucet for now but is there any possible way to integrate this script in an existing faucetbox? or I need a new install of this?

If you know how to read the codes and get the hang of it, I probably believe you can easily integrate this into an existing faucetbox. I haven't done it yet with this script but soon I will check the codes and try it. I don't have much time for now to do this. Maybe there will be soon. :)


Title: Re: Open Sourced Faucet with Dice Script
Post by: KnightTrader on April 19, 2016, 08:04:03 PM
Great friend, how much is the maximum that can be removed?  ;)
how much pay for referred?
do you need a link to your website?

You basically set up referral commission by Satoshis on this script, not by percentage. Percentage have to be calculated by oneself if want to.

I still have errors on referral commissions, but that is not big deal when have low commissions.

wow I think I am gonna switch with this script since I am currently configuring my own faucet for now but is there any possible way to integrate this script in an existing faucetbox? or I need a new install of this?

You can use your existing FaucetBOX account, but this have different database, so you need to "re-install" all stuff before switch to this with fresh start.


Title: Re: Open Sourced Faucet with Dice Script
Post by: misterbit on April 19, 2016, 08:24:49 PM
Great friend, how much is the maximum that can be removed?  ;)
how much pay for referred?
do you need a link to your website?

You basically set up referral commission by Satoshis on this script, not by percentage. Percentage have to be calculated by oneself if want to.

I still have errors on referral commissions, but that is not big deal when have low commissions.

wow I think I am gonna switch with this script since I am currently configuring my own faucet for now but is there any possible way to integrate this script in an existing faucetbox? or I need a new install of this?

You can use your existing FaucetBOX account, but this have different database, so you need to "re-install" all stuff before switch to this with fresh start.

OK thanks
 


Title: Re: Open Sourced Faucet with Dice Script
Post by: JaredFogle on May 13, 2016, 06:12:00 AM
Hey love the script so far but can you help me with putting adsense or any other banner ads on my page? I don't really do any front end at all.

Thanks


Title: Re: Open Sourced Faucet with Dice Script
Post by: superiorus on May 13, 2016, 06:36:09 AM
Interesting ...
Reserved for a test.


Title: Re: Open Sourced Faucet with Dice Script
Post by: frycek on June 12, 2016, 07:01:36 PM
Nice script.
I want to ask how I can add columns on left and right to add some text to faucet?


Title: Re: Open Sourced Faucet with Dice Script
Post by: Gifted on June 13, 2016, 12:39:04 AM
Nice script.
I want to ask how I can add columns on left and right to add some text to faucet?
guessing its in the index.php or template.... im not sure if that script has a user friendly admin page to add  ads.. you must have some html skills atleast to add ads text etc.


Title: Re: Open Sourced Faucet with Dice Script
Post by: coinableS on June 13, 2016, 01:15:09 AM
Nice script.
I want to ask how I can add columns on left and right to add some text to faucet?
guessing its in the index.php or template.... im not sure if that script has a user friendly admin page to add  ads.. you must have some html skills atleast to add ads text etc.

Yea no sorry I didn't include an admin page or anything to make changing the layout easy. You would have to do it manually yourself in the two index files, faucetbox and faucetboxgame.

If you wanted a quick way to do it, you could just wrap everything in a table with two columns.

Change this:
Code:
<body>
<br><div id="user"><img src="logo.png"></div>
<div id="buttons">
<div id="balance2">FAUCET BALANCE<br><span id="bprint"><?php echo $getfaucetbal2?> BTC</span></div>
</div>
<br><br><center>--AD SPOT

To this:
Code:
<body>
<br><div id="user"><img src="logo.png"></div>
<div id="buttons">
<div id="balance2">FAUCET BALANCE<br><span id="bprint"><?php echo $getfaucetbal2?> BTC</span></div>
</div>
<table>
<tr>
  <td width="10%">Some column text here</td>
<td width="90%">
<br><br><center>--AD SPOT
....
snipping many lines of code to save space
....
  <div id="faqCont">
  <center><h3>Rules & FAQs</h3></center>
  - More excellent information can go here<br>
  </div>
</td>
</tr>
</table>


Title: Re: Open Sourced Faucet with Dice Script
Post by: frycek on June 13, 2016, 06:37:13 PM
thanks a lot. It's exactly that what I need :)


Title: Re: Open Sourced Faucet with Dice Script
Post by: kevinex on June 14, 2016, 12:18:09 PM
There is something weird on referral commissions. I get constantly, but rarely X 6 larger referral pay outs than I have setup.

I just wonder if it is hack, bug or something what I have messed up.

I think it is not hack, because it also appears sometimes on "trusted" referrals.

It's just the referral commission being taken advantage of, best solution is to lower the referral payout.  Same thing happened to me. Cheaters decided they could make more money, faster through fake referrals instead of actually playing the dice game and having to wait through the cool down period.  The bot would create new accounts, with a new IP and every new account will use the same referrer address. This way the cheater could collect 30 times in one hour through fake referrals.

You are absolutely right on that, but I am bad on explaining things :D

I meant, I have set up affiliate commission to 10 satoshi (5%). But get constantly, but rarely 60 satoshi single referral payouts instead of 10 sat. These appear random on all referrals I think, maybe.
its double ref payout.
look index.php find
Code:
 //payout to refeer
  if(isset($_GET['ref'])){
  $currency = "BTC";
  $faucetbox = new Faucetbox($api_key, $currency);
  $reefAmount = 60;
  $reefResult2 = $faucetbox->sendReferralEarnings($reefer, $reefAmount);
  }
  $_SESSION['cow']=$userAddy;
  header('Location: ../faucetboxgame');
  mysqli_close($conn);
     }
  }
change reef amount to 0


Title: Re: Open Sourced Faucet with Dice Script
Post by: bapparabi on July 03, 2016, 03:50:57 AM
thank you for sharing this script ..before downloading and using ti can you tell me the demo url so see how this works and the link you provided is not working


Title: Re: Open Sourced Faucet with Dice Script
Post by: coinableS on July 03, 2016, 04:17:39 AM
thank you for sharing this script ..before downloading and using ti can you tell me the demo url so see how this works and the link you provided is not working

Oops, looks like I accidentally removed it during a recent clean up on my server. It's back now, try the link from the first post on this thread and it should work.  I don't keep a balance on faucetbox anymore so when you click "cashout" you'll receive an insufficient funds error, but everything should work fine.


Title: Re: Open Sourced Faucet with Dice Script
Post by: bapparabi on July 03, 2016, 04:23:30 AM
thank you for sharing this script ..before downloading and using ti can you tell me the demo url so see how this works and the link you provided is not working

Oops, looks like I accidentally removed it during a recent clean up on my server. It's back now, try the link from the first post on this thread and it should work.  I don't keep a balance on faucetbox anymore so when you click "cashout" you'll receive an insufficient funds error, but everything should work fine.

thanks for solving that iisue one more thing i need to know ..see its linked to faucet box so when they claim fund will be deducted form faucetbox account ..now when some one play the dice if they will more then the amount they cleint it will alos deducted form faucet box in tola and send to btc right ?

and only on evey bet its loading the full page will will make problem in shared hosting as quite huge page login will happen ..can't be its like in ajex so it will not load on ever roll


Title: Re: Open Sourced Faucet with Dice Script
Post by: coinableS on July 03, 2016, 04:40:52 AM
thank you for sharing this script ..before downloading and using ti can you tell me the demo url so see how this works and the link you provided is not working

Oops, looks like I accidentally removed it during a recent clean up on my server. It's back now, try the link from the first post on this thread and it should work.  I don't keep a balance on faucetbox anymore so when you click "cashout" you'll receive an insufficient funds error, but everything should work fine.

thanks for solving that iisue one more thing i need to know ..see its linked to faucet box so when they claim fund will be deducted form faucetbox account ..now when some one play the dice if they will more then the amount they cleint it will alos deducted form faucet box in tola and send to btc right ?

and only on evey bet its loading the full page will will make problem in shared hosting as quite huge page login will happen ..can't be its like in ajex so it will not load on ever roll

Since this is a faucet game, players can only win, funds cannot be deducted from players faucetbox account. If they lose, then they just don't receive their faucet claim.

You can absolutely change it to ajax POST requests instead so that the page doesn't reload each roll. But this is a faucet that makes money with ads. Every page re-load is another reload of an ad.  Feel free to change it to ajax post requests though, I just put this script out for free because others asked for it when I used to run my faucet and I'm not putting more work into it anymore.


Title: Re: Open Sourced Faucet with Dice Script
Post by: FoendyZ on July 03, 2016, 05:44:21 AM
good share sir, but iam newbie, so i can't understand is upload hosting and develop web
but i want to ask, in script can modification to site dice or not


Title: Re: Open Sourced Faucet with Dice Script
Post by: examplens on July 13, 2016, 02:12:22 PM
Great work sir. Definitelly i must try this script at one of my domains.
Q: DId yout thinking about options where user can deposit btc to play dice


Title: Re: Open Sourced Faucet with Dice Script
Post by: Digitalbitcoin on September 24, 2016, 02:47:49 AM
Awesone design Just trying to set is on one of my subdomain, but getting error with mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given.

I like concept and design. It looks pretty cool.

Wish to make a faucet live with FaucetBox payments to users to receive rewards for free everyday.


Title: Re: Open Sourced Faucet with Dice Script
Post by: alfaboy23 on October 14, 2016, 12:29:46 PM
I want to integrate a Xapo payout on this. Is that possible, OP? Or it was only designed to payout to faucetbox?


Title: Re: Open Sourced Faucet with Dice Script
Post by: coinableS on October 15, 2016, 03:15:07 AM
I want to integrate a Xapo payout on this. Is that possible, OP? Or it was only designed to payout to faucetbox?

It might be possible, I've never used Xapo. It was designed to only payout via faucetbox, but the code that is faucetbox specific is only a few lines so it could modified rather easily.


Title: Re: Open Sourced Faucet with Dice Script
Post by: nawaraj on October 15, 2016, 07:34:02 AM
It has admin page or not ?


Title: Re: Open Sourced Faucet with Dice Script
Post by: electronicash on October 15, 2016, 07:40:52 AM
can this work on just a shared hosting plan?
i just have a hosting plan from hostgator. although its a shared hosting plan, they say i can add more domains to it.
has someone ever tried it on hostgator?


Title: Re: Open Sourced Faucet with Dice Script
Post by: superiorus on October 15, 2016, 07:43:50 AM
can this work on just a shared hosting plan?
i just have a hosting plan from hostgator. although its a shared hosting plan, they say i can add more domains to it.
has someone ever tried it on hostgator?

Sure you can add more domains :)
For very low traffic it will work.
But when the website become a bit popular they will kick you away :)
You can't host something like that (faucet + dice) on a shared plan.


Title: Re: Open Sourced Faucet with Dice Script
Post by: examplens on November 07, 2016, 06:38:48 AM
Now is Faucetbox going to shut down. Did you plain to update script with another payout options except for Faucetbox


Title: Re: Open Sourced Faucet with Dice Script
Post by: xnd on November 07, 2016, 07:07:07 AM
Now is Faucetbox going to shut down. Did you plain to update script with another payout options except for Faucetbox

$1000000 question :)

would like to know the answer to that as well


Title: Re: Open Sourced Faucet with Dice Script
Post by: coinableS on November 10, 2016, 01:52:00 AM
I am a bit buried right now with other projects but I'll take a look at updating to a new service. Any suggestions which service?


Title: Re: Open Sourced Faucet with Dice Script
Post by: xnd on November 10, 2016, 05:46:34 AM
1. xapo
2. epay.info
3. wait and see what comes out of faucethub.io

thank you :-)



Title: Re: Open Sourced Faucet with Dice Script
Post by: Bytecoiner419 on January 04, 2017, 02:56:03 AM
Yes please add another service so we can keep using this script. I would like to use it and i would be happy to donate if it helps me make a profit.

Thanks for your time


Title: Re: Open Sourced Faucet with Dice Script
Post by: alamin99 on January 04, 2017, 07:33:16 AM
Hey, I have modified this script and added FaucetHub.io support...
See: http://cointalk.club/index.php/topic,460.0.html