Bitcoin Forum

Economy => Micro Earnings => Topic started by: Werko on April 26, 2016, 12:06:12 PM



Title: DicePig - Little Faucetgame & offerwalls integrated with great payout
Post by: Werko on April 26, 2016, 12:06:12 PM
Hello Community,

I present my new Faucet Game DicePig.
Play against the pig Aiden. Dice more points as Aiden and win up to 2000 Satoshi every 60 minutes.

Beside the game we providing an offerwall where you get satoshi for watchin videos. Really easy.

Thats my first shot and I need your impression, suggestion, ideas, bugs, etc
Design is also certainly need to be changed.

------> http://www.dicepig.one/ <------

https://i.imgur.com/JPUDIfG.png

You get 750 Satoshi for a win.
2000 if you roll 12 points.
For a tie 500 Satoshi.
lost = 250 loser bonus :)

50% referral commission

An instant payout is available as button in the account section and only possible with an account balance above 10.000 satoshi.
Your earninings goes to your FaucetBox-Account without fees



Title: Re: DicePig - Little Faucetgame / Up to 1000 satoshi every 15 minutes
Post by: apoorvlathey on April 26, 2016, 12:14:01 PM
The site has overall nice graphics. Maybe you should work a little on the top banner image that says "DICEPIG". Just make it unique.
I won and got 250 satoshis ! This payout is high for 10 min delay but there is also a possibility of getting nothing too. It all depends on luck.

Suggestion : You should keep the user logged in so that he may visit just visit your site and roll the dice withou having to re-login again and again on each visit.


Title: Re: DicePig - Little Faucetgame / Up to 1000 satoshi every 15 minutes
Post by: Werko on April 26, 2016, 12:32:20 PM
Thanks for your suggestions.

Keep logged in is a good point.

Banner: I'm not really creative and I have no skills in design :)
But I'll keep my eyes for a new top-banner and advertising banners


Title: Re: DicePig - Little Faucetgame / Up to 1000 satoshi every 30 minutes
Post by: BTCforJoe on April 26, 2016, 03:20:18 PM
Code:
Congratulations. You have won 500 Satoshi

You should indicate that the user has been paid directly to their FaucetBox account after winning! And I can confirm that the site is in fact paying directly to your FaucetBox after each win.

Great claim reward!

https://i.imgur.com/dplH2vu.png


Title: Re: DicePig - Little Faucetgame / Up to 1000 satoshi every 30 minutes
Post by: mrcash02 on April 26, 2016, 03:36:02 PM
Lol, it's boring to enter the site, solve the captcha and don't earn anything in the end...

Maybe you should give at least a consolation prize for the loser, maybe 100 satoshi.


Title: Re: DicePig - Little Faucetgame / Up to 1000 satoshi every 30 minutes
Post by: kwaasteniet on April 26, 2016, 03:54:06 PM
Lol, it's boring to enter the site, solve the captcha and don't earn anything in the end...

Maybe you should give at least a consolation prize for the loser, maybe 100 satoshi.
I agree with mrcash02, it's not nice to receive nothing.


Title: Re: DicePig - Little Faucetgame / Up to 1000 satoshi every 30 minutes
Post by: Werko on April 26, 2016, 04:45:26 PM
Lol, it's boring to enter the site, solve the captcha and don't earn anything in the end...

Maybe you should give at least a consolation prize for the loser, maybe 100 satoshi.
I agree with mrcash02, it's not nice to receive nothing.

Good Idea, 100 Satoshi loser Bonus is implemented.


Title: Re: DicePig - Little Faucetgame / Up to 1000 satoshi every 30 minutes
Post by: superscommessebitcoin on April 26, 2016, 10:13:03 PM
Code:
Congratulations. You have won 500 Satoshi

You should indicate that the user has been paid directly to their FaucetBox account after winning! And I can confirm that the site is in fact paying directly to your FaucetBox after each win.

Great claim reward!

https://i.imgur.com/dplH2vu.png
same for me, add a faucetbox link later people win, is nice see every time if faucet pay. i have read "you win 500 satoshi" but i have see manually in faucetbox


Title: Re: DicePig - Little Faucetgame / Up to 1000 satoshi every 30 minutes
Post by: mrcash02 on April 26, 2016, 10:19:43 PM
Lol, it's boring to enter the site, solve the captcha and don't earn anything in the end...

Maybe you should give at least a consolation prize for the loser, maybe 100 satoshi.
I agree with mrcash02, it's not nice to receive nothing.

Good Idea, 100 Satoshi loser Bonus is implemented.

Ok, thanks for implement that, now at least we earn some bucks anyway.

Minimum 100 satoshi every 15 minutes isn't so bad considering that we can earn up to 1000 satoshi. Nice site design, good luck with it!


Title: Re: DicePig - Little Faucetgame / Up to 1000 satoshi every 30 minutes
Post by: maokoto on April 26, 2016, 11:28:55 PM
Yes, definitely a text saying you have been paid to faucetbox would help. I got confused, looking for a withdraw button or for my balance until I realized I have been paid already.

Faucet looks good by the way.


Title: Re: DicePig - Little Faucetgame / Up to 1000 satoshi every 30 minutes
Post by: lottoitaliano on April 27, 2016, 01:49:59 AM
nice idea, but the game is provably fair? i think is only a dice, but how many chance i have to win ? is important because the loser have only 100 satoshi  ;D


Title: Re: DicePig - Little Faucetgame / Up to 1000 satoshi every 30 minutes
Post by: Werko on April 27, 2016, 06:28:59 AM
FaucetBox-Infotext now avaiable

nice idea, but the game is provably fair? i think is only a dice, but how many chance i have to win ? is important because the loser have only 100 satoshi  ;D

No tricks inside. That is the dice-part in my program.
Code:
 if ($entitlementClaim) {
    $_SESSION['humanRoll1'] = rand(1,6);
    $_SESSION['humanRoll2'] = rand(1,6);
       
    $_SESSION['comp1Roll1'] = rand(1,6);
    $_SESSION['comp1Roll2'] = rand(1,6);
   
    $humanSum = $_SESSION['humanRoll1'] + $_SESSION['humanRoll2'];
    $comp1Sum = $_SESSION['comp1Roll1'] + $_SESSION['comp1Roll2'];

    if ($humanSum == 12) {
        $claimResult = 1000;
        send($btcaddress, '1000', 'jackpot');
    } else {
        if ($humanSum > $comp1Sum) {
            $claimResult = 500;
            send($btcaddress, '500', 'win');
        } else if ($comp1Sum > $humanSum) {
            $claimResult = 100;
            send($btcaddress, '100', 'lost');
        } else if ($comp1Sum == $humanSum) {
            $claimResult = 250;
            send($btcaddress, '250', 'tie');
        }
    }


Title: Re: DicePig - Little Faucetgame / Up to 1000 satoshi every 30 minutes
Post by: BTCforJoe on April 27, 2016, 07:22:33 AM
FaucetBox-Infotext now avaiable

nice idea, but the game is provably fair? i think is only a dice, but how many chance i have to win ? is important because the loser have only 100 satoshi  ;D

No tricks inside. That is the dice-part in my program.
Code:
 if ($entitlementClaim) {
    $_SESSION['humanRoll1'] = rand(1,6);
    $_SESSION['humanRoll2'] = rand(1,6);
       
    $_SESSION['comp1Roll1'] = rand(1,6);
    $_SESSION['comp1Roll2'] = rand(1,6);
   
    $humanSum = $_SESSION['humanRoll1'] + $_SESSION['humanRoll2'];
    $comp1Sum = $_SESSION['comp1Roll1'] + $_SESSION['comp1Roll2'];

    if ($humanSum == 12) {
        $claimResult = 1000;
        send($btcaddress, '1000', 'jackpot');
    } else {
        if ($humanSum > $comp1Sum) {
            $claimResult = 500;
            send($btcaddress, '500', 'win');
        } else if ($comp1Sum > $humanSum) {
            $claimResult = 100;
            send($btcaddress, '100', 'lost');
        } else if ($comp1Sum == $humanSum) {
            $claimResult = 250;
            send($btcaddress, '250', 'tie');
        }
    }

Don't worry about the game being provably fair... It's a faucet. You can't invest in the site, so it's not considered gambling. If anyone is going to be a weirdo about a FAUCET being provably fair, they probably have no purpose being on that faucet in the first place lol.

Keep doing what you're doing! This is one of the funner faucets out there, so kudos to that, admin!


Title: Re: DicePig - Little Faucetgame / Up to 1000 satoshi every 30 minutes
Post by: Werko on April 27, 2016, 12:31:29 PM
Update:
Referral Programm is installed.
50% on all faucet claims from your referrals.



Title: Re: DicePig - Little Faucetgame / Up to 1000 satoshi every 30 minutes / 50% Ref
Post by: BTCforJoe on April 27, 2016, 09:02:06 PM
Update:
Referral Programm is installed.
50% on all faucet claims from your referrals.

I cannot get my referral URL. Once I roll the dice, it logs me out, and the ref ID never appears. I try to log in again, and it says that I can get a reward in XX minutes.

You may want to look into this.

Can you instruct us on how to get our referral url using your site? I'm not sure if you've tested it, but it's not working correctly :P

EDIT: And for the record, when clicking "Home" in the menu, it takes me to bitcoinsworld.com.


Title: Re: DicePig - Little Faucetgame / Up to 1000 satoshi every 30 minutes / 50% Ref
Post by: MasoVa on April 28, 2016, 12:26:55 AM
omg i am lost and only get 100 satoshi
but its nice creative good faucet i ever seen ;)


Title: Re: DicePig - Little Faucetgame / Up to 1000 satoshi every 30 minutes
Post by: lottoitaliano on April 28, 2016, 01:18:35 AM
FaucetBox-Infotext now avaiable

nice idea, but the game is provably fair? i think is only a dice, but how many chance i have to win ? is important because the loser have only 100 satoshi  ;D

No tricks inside. That is the dice-part in my program.
Code:
 if ($entitlementClaim) {
    $_SESSION['humanRoll1'] = rand(1,6);
    $_SESSION['humanRoll2'] = rand(1,6);
       
    $_SESSION['comp1Roll1'] = rand(1,6);
    $_SESSION['comp1Roll2'] = rand(1,6);
   
    $humanSum = $_SESSION['humanRoll1'] + $_SESSION['humanRoll2'];
    $comp1Sum = $_SESSION['comp1Roll1'] + $_SESSION['comp1Roll2'];

    if ($humanSum == 12) {
        $claimResult = 1000;
        send($btcaddress, '1000', 'jackpot');
    } else {
        if ($humanSum > $comp1Sum) {
            $claimResult = 500;
            send($btcaddress, '500', 'win');
        } else if ($comp1Sum > $humanSum) {
            $claimResult = 100;
            send($btcaddress, '100', 'lost');
        } else if ($comp1Sum == $humanSum) {
            $claimResult = 250;
            send($btcaddress, '250', 'tie');
        }
    }

Don't worry about the game being provably fair... It's a faucet. You can't invest in the site, so it's not considered gambling. If anyone is going to be a weirdo about a FAUCET being provably fair, they probably have no purpose being on that faucet in the first place lol.

Keep doing what you're doing! This is one of the funner faucets out there, so kudos to that, admin!

is important for me , because if the game not are provably fair, i lost time, and time if more precious of bitcoin  ;D

thanks for reply owner, i add your faucet in my bookmark


Title: Re: DicePig - Little Faucetgame / Up to 1000 satoshi every 30 minutes / 50% Ref
Post by: Werko on April 28, 2016, 06:38:03 AM
Update:
Referral Programm is installed.
50% on all faucet claims from your referrals.

I cannot get my referral URL. Once I roll the dice, it logs me out, and the ref ID never appears. I try to log in again, and it says that I can get a reward in XX minutes.

You may want to look into this.

Can you instruct us on how to get our referral url using your site? I'm not sure if you've tested it, but it's not working correctly :P

EDIT: And for the record, when clicking "Home" in the menu, it takes me to bitcoinsworld.com.


Thanks for your feedback.

the session will destroy after 15 minutes inactivity. Now, I have increased to 60 minutes.

I see the referral URL after the login
https://i.imgur.com/pFsRfCN.png

This weekend i'll create a separate account section with all information about your account. Referrals, Total Income, Income from Referrals etc

Home-Button was a copy/paste error :)


Title: Re: DicePig - Little Faucetgame / Up to 1000 satoshi every 30 minutes / 50% Ref
Post by: finishedgrey on April 28, 2016, 06:47:16 AM
Congratulations. You have won 500 Satoshi. Your winnings goes directly to your FaucetBox-Account. Another unique faucet I really the concept of your site

By the way, why I can't see my referral link? http://www.dicepig.one/?=(It's empty)


Title: Re: DicePig - Little Faucetgame / Up to 1000 satoshi every 30 minutes / 50% Ref
Post by: Werko on April 28, 2016, 07:01:56 AM
Congratulations. You have won 500 Satoshi. Your winnings goes directly to your FaucetBox-Account. Another unique faucet I really the concept of your site

By the way, why I can't see my referral link? http://www.dicepig.one/?=(It's empty)

I have found the problem. If you use the faucet the first time, an account will created and the informations are still not available after the first roll.
But the problem should be fixed now.


Title: Re: DicePig - Little Faucetgame / Up to 1000 satoshi every 30 minutes / 50% Ref
Post by: finishedgrey on April 28, 2016, 07:15:51 AM
Congratulations. You have won 500 Satoshi. Your winnings goes directly to your FaucetBox-Account. Another unique faucet I really the concept of your site

By the way, why I can't see my referral link? http://www.dicepig.one/?=(It's empty)

I have found the problem. If you use the faucet the first time, an account will created and the informations are still not available after the first roll.
But the problem should be fixed now.

Thanks for the information, by the way it seems the referral link appears after the second roll, after the second roll I already got my referral link.


Title: Re: DicePig - Little Faucetgame / Up to 1000 satoshi every 30 minutes / 50% Ref
Post by: BTCforJoe on April 28, 2016, 11:47:16 AM
Is there any way that after you claim, if you try to visit the faucet again, it shows a countdown timer, instead of the login page? It would be great to see how much time we have left (without having to get a big red box AFTER you try to login again), while still being able to access the referral link. Does this make sense? Let me know if I need to explain it in further detail!

Cheers!


Title: Re: DicePig - Little Faucetgame / Up to 1000 satoshi every 30 minutes / 50% Ref
Post by: Werko on April 28, 2016, 12:14:38 PM
Of course, but as first i need to clean my code. The code was written down quickly.

To Dos
- user section comes on weekend
- Integration of the flash-cookies to identify the user. Thus, it is possible to stay logged in


Title: Re: DicePig - Little Faucetgame / Up to 1000 satoshi every 30 minutes / 50% Ref
Post by: Werko on April 28, 2016, 03:08:10 PM
Sorry, I can't calculate the odds. :) Maybe another user.

You can replace Login with Submit or what ever. After pushing the button everything is already done (payment, database entries, etc).
The roll-button is just for entertaining.


Title: Re: DicePig - Little Faucetgame / Up to 1000 satoshi every 30 minutes / 50% Ref
Post by: Racey on May 02, 2016, 06:49:30 PM
Message on your website.
Sorry, no IPS/VPS allowed.

This is me below

https://ip.bitcointalk.org/?u=http%3A%2F%2Fi.imgur.com%2FK9YCA7C.png%26t%3D563%26c%3DB7jAgRdxHwSl_A&t=564&c=pxcZpbWUldYfmg


Title: Re: DicePig - Little Faucetgame / Up to 1000 satoshi every 30 minutes / 50% Ref
Post by: Werko on May 03, 2016, 06:57:04 AM

Sorry,

I have built a new proxy and host-detection tool, but that is still not so strict as I would like.

Thanks for your reporting. You are now be able to use the Faucet again.


Title: Re: DicePig - Little Faucetgame / Up to 1000 satoshi every 30 minutes / 50% Ref
Post by: Werko on May 03, 2016, 08:06:10 AM
***UPDATE***

Winnings will added to your account balance now and no longer directly to faucetbox.
A payout to faucetbox is available in your account section and only with an account balance above 10.000 satoshi.


Title: Re: DicePig - Little Faucetgame / Up to 1000 satoshi every 30 minutes / 50% Ref
Post by: felicita on May 03, 2016, 11:02:28 AM
looks funny but how to win 1000 Satoshi ?

it says i had won but got only 750 Satoshi ?



kind regards


Title: Re: DicePig - Little Faucetgame / Up to 1000 satoshi every 30 minutes / 50% Ref
Post by: Werko on May 03, 2016, 11:07:43 AM
If you roll 12 points  ;)


Title: Re: DicePig - Little Faucetgame / Up to 2000 satoshi every 30 minutes / 50% Ref
Post by: Racey on May 03, 2016, 05:13:09 PM
Thanks for the fix Werko been on there twice today, I like this Pig called Aiden.


Title: Re: DicePig - Little Faucetgame / Up to 2000 satoshi every 30 minutes / 50% Ref
Post by: Werko on May 03, 2016, 05:44:22 PM
***Update***

Boost Your Revenue

Complete offers, such as surveys, task or app installs. Your revenue goes directly to your account balance.

Come and try out
http://dicepig.one/offerwall/ (http://dicepig.one/offerwall/)


Title: Re: DicePig - Little Faucetgame / Up to 2000 satoshi every 30 minutes / 50% Ref
Post by: Racey on May 03, 2016, 06:00:01 PM
***Update***

Boost Your Revenue

Complete offers, such as surveys, task or app installs. Your revenue goes directly to your account balance.

Come and try out
http://dicepig.one/offerwall/ (http://dicepig.one/offerwall/)

After finishing a survey they said, I never met all the criteria.
All those nosey questions as well.

Age, town or City, income do I own a car, insurance and many more.

I have tried this type of survey before, and never ever got a thing from them.


Title: Re: DicePig - Little Faucetgame / Up to 2000 satoshi every 30 minutes / 50% Ref
Post by: Werko on May 03, 2016, 06:38:35 PM
@Racey: Where you come from? I think it is highly dependent of the country
I see that 4 surveys have been finished with nealy 100.000 satoshi.

I will add some other offerwalls tomorrow. Maybe is there something for you.


Title: Re: DicePig - Little Faucetgame / Up to 2000 satoshi every 30 minutes / 50% Ref
Post by: Racey on May 03, 2016, 06:46:24 PM
@Racey: Where you come from? I think it is highly dependent of the country
I see that 4 surveys have been finished with nealy 100.000 satoshi.

I will add some other offerwalls tomorrow. Maybe is there something for you.

I know why it never works, I don't have any income, I don't have a job, no Insurance no car, no nothing.
I have tried other sites all with the same outcome.

Never mind about me, thanks.
Like I said it has never worked before, You have to be a good liar to do this type of work.


Title: Re: DicePig - Little Faucetgame / Up to 2000 satoshi every 30 minutes / 50% Ref
Post by: yurka5356 on May 03, 2016, 07:59:44 PM
Yesterday I saw a message saying I 'm only allowed to play 10 times a day
Today I see the news I need to gain 100000 sat before withdrawal
and the faucet says I can win only 150 sat if lucky.
The rules are too cruel. Visitors might leave the faucet.


Title: Re: DicePig - Little Faucetgame / Up to 2000 satoshi every 30 minutes / 50% Ref
Post by: Werko on May 04, 2016, 06:39:54 AM
I reduce the payout if I don't get any information about computer, country or used Browser. Also with IPv6-addresses.

Not 100.000 sat, 10.000 sat.
The threshold is for a better bot protection. Bots, Proxy-and Host-User will lose their account and the collected money.
I don't lose so much money with such Safety measures


Title: Re: DicePig - Little Faucetgame / Up to 2000 satoshi every 30 minutes / 50% Ref
Post by: Werko on May 05, 2016, 07:21:21 AM
I have added a new offerwall where you receive satoshi for watching videos. Really easy.

http://www.dicepig.one/offertoro/ (http://www.dicepig.one/offertoro/)


Title: Re: DicePig - Little Faucetgame / Up to 2000 satoshi every 30 minutes / 50% Ref
Post by: apoorvlathey on May 05, 2016, 08:36:56 AM
I have added a new offerwall where you receive satoshi for watching videos. Really easy.

http://www.dicepig.one/offertoro/ (http://www.dicepig.one/offertoro/)
Nice offerwall with high satoshi payout. I have a problem, when i opened the offerwall link, the site loaded perfectly and all the offers could be seen, but still there was a message at the top of the page that states: Bitcoin address is not registered. Please use the faucet first. Even though I was logged in and claimed just a few seconds ago.


Title: Re: DicePig - Little Faucetgame / Up to 2000 satoshi every 30 minutes / 50% Ref
Post by: Werko on May 05, 2016, 06:28:12 PM
I have added a new offerwall where you receive satoshi for watching videos. Really easy.

http://www.dicepig.one/offertoro/ (http://www.dicepig.one/offertoro/)
Nice offerwall with high satoshi payout. I have a problem, when i opened the offerwall link, the site loaded perfectly and all the offers could be seen, but still there was a message at the top of the page that states: Bitcoin address is not registered. Please use the faucet first. Even though I was logged in and claimed just a few seconds ago.

is strange. You have got the satoshi on you account?


Title: Re: DicePig - Little Faucetgame & offerwall integrated with great payout
Post by: Werko on May 09, 2016, 09:01:00 AM
***UPDATE***
New offerwall inserted. I thinks thats great and easy. Any feedback is welcome

http://www.dicepig.one/persona/ (http://www.dicepig.one/persona/)


Title: Re: DicePig - Little Faucetgame & offerwall integrated with great payout
Post by: hoop on May 09, 2016, 12:45:30 PM
***UPDATE***
New offerwall inserted. I thinks thats great and easy. Any feedback is welcome

http://www.dicepig.one/persona/ (http://www.dicepig.one/persona/)
Is this coinbucks offerwall?


Title: Re: DicePig - Little Faucetgame & offerwall integrated with great payout
Post by: Werko on May 09, 2016, 12:54:06 PM
***UPDATE***
New offerwall inserted. I thinks thats great and easy. Any feedback is welcome

http://www.dicepig.one/persona/ (http://www.dicepig.one/persona/)
Is this coinbucks offerwall?

No, these are direct suppliers without a middleman like coinbucks.


Title: Re: DicePig - Little Faucetgame & offerwalls integrated with great payout
Post by: yurka5356 on May 17, 2016, 05:17:32 PM
Tried to withdraw erarnings and the faucet says:

Sorry, we have currently a problem. Try again later.

4 or 5 times today and all my attempts were unsuccessful.
Admin, why is it so?


Title: Re: DicePig - Little Faucetgame & offerwalls integrated with great payout
Post by: yurka5356 on May 18, 2016, 01:17:51 PM
No withdraw, no answer here and no answer from their email.

I think they are SCAM.

Where are you Werko? Are you happy now, scammer?


Title: Re: DicePig - Little Faucetgame & offerwalls integrated with great payout
Post by: landoffaucets on May 23, 2016, 08:18:22 AM
Hi Werko,

Your website has been reported as SCAM by yurka5356 (https://bitcointalk.org/index.php?action=profile;u=810961).
Only yurka5356 (https://bitcointalk.org/index.php?action=profile;u=810961) can send for the scam off by sending me a message.

Best regards,
Land of Trusted Faucets (http://landoffaucets.com)