Pages:
Author

Topic: DicePig - Little Faucetgame & offerwalls integrated with great payout - page 2. (Read 1997 times)

legendary
Activity: 1134
Merit: 1000
Soon, I have to go away.
Message on your website.
Sorry, no IPS/VPS allowed.

This is me below

full member
Activity: 206
Merit: 100
Sorry, I can't calculate the odds. Smiley 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.
full member
Activity: 206
Merit: 100
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
hero member
Activity: 882
Merit: 976
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!
sr. member
Activity: 392
Merit: 251
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.
full member
Activity: 206
Merit: 100
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.
sr. member
Activity: 392
Merit: 251
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)
full member
Activity: 206
Merit: 100
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 Tongue

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


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 Smiley
legendary
Activity: 1176
Merit: 1000
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  Grin

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  Grin

thanks for reply owner, i add your faucet in my bookmark
sr. member
Activity: 448
Merit: 250
omg i am lost and only get 100 satoshi
but its nice creative good faucet i ever seen Wink
hero member
Activity: 882
Merit: 976
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 Tongue

EDIT: And for the record, when clicking "Home" in the menu, it takes me to bitcoinsworld.com.
full member
Activity: 206
Merit: 100
Update:
Referral Programm is installed.
50% on all faucet claims from your referrals.

hero member
Activity: 882
Merit: 976
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  Grin

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!
full member
Activity: 206
Merit: 100
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  Grin

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');
        }
    }
legendary
Activity: 1176
Merit: 1000
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  Grin
hero member
Activity: 770
Merit: 500
✪ NEXCHANGE | BTC, LTC, ETH & DOGE ✪
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.
hero member
Activity: 1190
Merit: 525
CryptoTalk.Org - Get Paid for every Post!
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!
hero member
Activity: 1176
Merit: 500
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!


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
full member
Activity: 206
Merit: 100
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.
hero member
Activity: 924
Merit: 1000
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.
Pages:
Jump to: