Bitcoin Forum
May 10, 2024, 09:09:36 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 [56] 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 ... 177 »
  Print  
Author Topic: bustabit.com -- The Social Gambling Game  (Read 293487 times)
blockage
Member
**
Offline Offline

Activity: 100
Merit: 10

Vires in numeris.


View Profile
February 03, 2015, 04:40:18 PM
 #1101

love this, any chance to implement refferal bonus or perhaps timestamp on the chatbox?i find it hard to see if the chat is still new or not

MP has a variable house edge that starts at 0%. You would need to increase the minimal house edge to support anything like referral bonuses.

1715332176
Hero Member
*
Offline Offline

Posts: 1715332176

View Profile Personal Message (Offline)

Ignore
1715332176
Reply with quote  #2

1715332176
Report to moderator
1715332176
Hero Member
*
Offline Offline

Posts: 1715332176

View Profile Personal Message (Offline)

Ignore
1715332176
Reply with quote  #2

1715332176
Report to moderator
"The nature of Bitcoin is such that once version 0.1 was released, the core design was set in stone for the rest of its lifetime." -- Satoshi
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1715332176
Hero Member
*
Offline Offline

Posts: 1715332176

View Profile Personal Message (Offline)

Ignore
1715332176
Reply with quote  #2

1715332176
Report to moderator
1715332176
Hero Member
*
Offline Offline

Posts: 1715332176

View Profile Personal Message (Offline)

Ignore
1715332176
Reply with quote  #2

1715332176
Report to moderator
1715332176
Hero Member
*
Offline Offline

Posts: 1715332176

View Profile Personal Message (Offline)

Ignore
1715332176
Reply with quote  #2

1715332176
Report to moderator
RHavar
Legendary
*
Offline Offline

Activity: 2557
Merit: 1886



View Profile
February 05, 2015, 10:35:42 PM
 #1102

MP has a variable house edge that starts at 0%. You would need to increase the minimal house edge to support anything like referral bonuses.

That could be easily solved by using gross-amount-cashedout to base referrals on. But really, I'd rather people recommend the site for its merits (tiny house edge, aspect of skill, strategy stuff) rather than spam the site because they want a tiny referral bonus (and it would be tiny, as the site itself barely makes anything even when a large player comes)

Check out gamblingsitefinder.com for a decent list/rankings of crypto casinos. Note: I have no affiliation or interest in it, and don't even agree with all the rankings ... but it's the only uncorrupted review site I'm aware of.
RHavar
Legendary
*
Offline Offline

Activity: 2557
Merit: 1886



View Profile
February 06, 2015, 05:13:36 PM
Last edit: June 26, 2015, 03:44:50 PM by RHavar
 #1103

A lot of people have wanted to know how they can generate know all the previous game crashes, to do some analytics or what not. So here's how you can generate it locally, just using node:

Save this file: gamecrashes.js
Code:
var crypto = require('crypto');


// Set this to the hash you wish to start from:
var hash = process.argv[2];
if (!hash) throw new Error('You need to call this script with the starting hash!');

var terminatingHash = 'c1cfa8e28fc38999eaa888487e443bad50a65e0b710f649affa6718cfbfada4d'

while (hash != terminatingHash) {
console.log(crashPointFromHash(hash));
hash = genGameHash(hash);
}


function divisible(hash, mod) {
    // We will read in 4 hex at a time, but the first chunk might be a bit smaller
    // So ABCDEFGHIJ should be chunked like  AB CDEF GHIJ
    var val = 0;

    var o = hash.length % 4;
    for (var i = o > 0 ? o - 4 : 0; i < hash.length; i += 4) {
        val = ((val << 16) + parseInt(hash.substring(i, i+4), 16)) % mod;
    }

    return val === 0;
}

function genGameHash(serverSeed) {
    return crypto.createHash('sha256').update(serverSeed).digest('hex');
};


function crashPointFromHash(serverSeed) {
    var hash = crypto.createHmac('sha256', serverSeed).update('000000000000000007a9a31ff7f07463d91af6b5454241d5faf282e5e0fe1b3a').digest('hex');

    // In 1 of 101 games the game crashes instantly.
    if (divisible(hash, 101))
        return 0;

    // Use the most significant 52-bit from the hash to calculate the crash point
    var h = parseInt(hash.slice(0,52/4),16);
    var e = Math.pow(2,52);

    return (Math.floor((100 * e - h) / (e - h))/100).toFixed(2);
};


Now call it with the last hash you've seen on bustabit:

Code:
node gamecrashes 1c0318ead04679a861f31572c656cacc80d0fbd8ce2a12d9ce38b91548110119

Or to view them slowly:
Code:
node gamecrashes 1c0318ead04679a861f31572c656cacc80d0fbd8ce2a12d9ce38b91548110119 | less

Or write them all to a file:
Code:
node gamecrashes 1c0318ead04679a861f31572c656cacc80d0fbd8ce2a12d9ce38b91548110119 > all.txt

Or just count how many games there's been:
Code:
node gamecrashes 1c0318ead04679a861f31572c656cacc80d0fbd8ce2a12d9ce38b91548110119 | wc -l

etc.

Check out gamblingsitefinder.com for a decent list/rankings of crypto casinos. Note: I have no affiliation or interest in it, and don't even agree with all the rankings ... but it's the only uncorrupted review site I'm aware of.
RHavar
Legendary
*
Offline Offline

Activity: 2557
Merit: 1886



View Profile
February 08, 2015, 04:14:25 AM
 #1104

Our of interest today, I had a look at our faucet stats. On a typical day, we're giving out about 1000 bits (500 faucet claims) so it has it hasn't been a big burden. However, one thing caught my eye, our most active fauceter:

Here is the list of faucet claim time (and time since last claim):

http://privatepaste.com/6c2fbcdda5

Hard to tell if that's a bot or an insomniac

Check out gamblingsitefinder.com for a decent list/rankings of crypto casinos. Note: I have no affiliation or interest in it, and don't even agree with all the rankings ... but it's the only uncorrupted review site I'm aware of.
Mist
Sr. Member
****
Offline Offline

Activity: 434
Merit: 250

:)


View Profile
February 08, 2015, 04:20:16 AM
 #1105

Most likely a bot, i couldnt imagine anyone doing that and being able to live.
waterpile
Hero Member
*****
Offline Offline

Activity: 602
Merit: 500


View Profile
February 08, 2015, 04:26:50 AM
 #1106

Most of those faucet users are bots. I can't believe if someone would waste his/her time collecting those faucets
alani123
Legendary
*
Offline Offline

Activity: 2394
Merit: 1416


Leading Crypto Sports Betting & Casino Platform


View Profile
February 08, 2015, 04:33:01 AM
 #1107

Most of those faucet users are bots. I can't believe if someone would waste his/her time collecting those faucets

Why would someone want to host a bot to collect 2 bits an hour?

..Stake.com..   ▄████████████████████████████████████▄
   ██ ▄▄▄▄▄▄▄▄▄▄            ▄▄▄▄▄▄▄▄▄▄ ██  ▄████▄
   ██ ▀▀▀▀▀▀▀▀▀▀ ██████████ ▀▀▀▀▀▀▀▀▀▀ ██  ██████
   ██ ██████████ ██      ██ ██████████ ██   ▀██▀
   ██ ██      ██ ██████  ██ ██      ██ ██    ██
   ██ ██████  ██ █████  ███ ██████  ██ ████▄ ██
   ██ █████  ███ ████  ████ █████  ███ ████████
   ██ ████  ████ ██████████ ████  ████ ████▀
   ██ ██████████ ▄▄▄▄▄▄▄▄▄▄ ██████████ ██
   ██            ▀▀▀▀▀▀▀▀▀▀            ██ 
   ▀█████████▀ ▄████████████▄ ▀█████████▀
  ▄▄▄▄▄▄▄▄▄▄▄▄███  ██  ██  ███▄▄▄▄▄▄▄▄▄▄▄▄
 ██████████████████████████████████████████
▄▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▄
█  ▄▀▄             █▀▀█▀▄▄
█  █▀█             █  ▐  ▐▌
█       ▄██▄       █  ▌  █
█     ▄██████▄     █  ▌ ▐▌
█    ██████████    █ ▐  █
█   ▐██████████▌   █ ▐ ▐▌
█    ▀▀██████▀▀    █ ▌ █
█     ▄▄▄██▄▄▄     █ ▌▐▌
█                  █▐ █
█                  █▐▐▌
█                  █▐█
▀▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▀█
▄▄█████████▄▄
▄██▀▀▀▀█████▀▀▀▀██▄
▄█▀       ▐█▌       ▀█▄
██         ▐█▌         ██
████▄     ▄█████▄     ▄████
████████▄███████████▄████████
███▀    █████████████    ▀███
██       ███████████       ██
▀█▄       █████████       ▄█▀
▀█▄    ▄██▀▀▀▀▀▀▀██▄  ▄▄▄█▀
▀███████         ███████▀
▀█████▄       ▄█████▀
▀▀▀███▄▄▄███▀▀▀
..PLAY NOW..
iqbal14st
Sr. Member
****
Offline Offline

Activity: 504
Merit: 250


View Profile
February 08, 2015, 05:14:37 AM
 #1108

does anyone have a trick play?
If you let us work together

[=($)=]
Shallow
Sr. Member
****
Offline Offline

Activity: 938
Merit: 255


SmartFi - EARN, LEND & TRADE


View Profile
February 08, 2015, 05:17:28 AM
 #1109

Our of interest today, I had a look at our faucet stats. On a typical day, we're giving out about 1000 bits (500 faucet claims) so it has it hasn't been a big burden. However, one thing caught my eye, our most active fauceter:

Here is the list of faucet claim time (and time since last claim):

http://privatepaste.com/6c2fbcdda5

Hard to tell if that's a bot or an insomniac

Doesn't look like a bot due to the varying frequency.

████
██
██
██
██
██
██
██
██
██
██
██
████
...The Open..............
...Lending Platform...
████
████
████
████
████
████
████
████
████
████
████
████
████
▄▄█████████▄▄
▄█████████████████▄
▄██████████▀▀▀▀███████▄
█████████▀        ███████
████████▀        ▄█████████
█████████       ▄▀▀██████████
█████████     ▄▀   ▀█████████
██████████  ▄▀      █████████
█████████▀▀       ▄████████
███████        ▄█████████
▀███████▄▄▄▄██████████▀
▀█████████████████▀
▀▀█████████▀▀
.SMARTFI..████
████
████
████
████
████
████
████
████
████
████
████
████
...Join the SmartFi.....
...Token Sale...
████
██
██
██
██
██
██
██
██
██
██
██
████
████████████████████████████
████████████████████████████
████████████████████████████
█████████████████▀▀  ███████
█████████████▀▀      ███████
█████████▀▀   ▄▄     ███████
█████▀▀    ▄█▀▀     ████████
█████████ █▀        ████████
█████████ █ ▄███▄   ████████
██████████████████▄▄████████
████████████████████████████
████████████████████████████
████████████████████████████
████████████████████████████
████████████████████████████
████████████████████████████
████████▀▀▄██████▄▀▀████████
███████  ▀        ▀  ███████
██████                ██████
█████▌   ███    ███   ▐█████
█████▌   ▀▀▀    ▀▀▀   ▐█████
██████                ██████
███████▄  ▀██████▀  ▄███████
████████████████████████████
████████████████████████████
████████████████████████████
erwin45hacked
Legendary
*
Offline Offline

Activity: 1064
Merit: 1000



View Profile
February 08, 2015, 07:01:16 AM
 #1110

Our of interest today, I had a look at our faucet stats. On a typical day, we're giving out about 1000 bits (500 faucet claims) so it has it hasn't been a big burden. However, one thing caught my eye, our most active fauceter:

Here is the list of faucet claim time (and time since last claim):

http://privatepaste.com/6c2fbcdda5

Hard to tell if that's a bot or an insomniac

Doesn't look like a bot due to the varying frequency.

yep doesnt looks like a bot, but i dunno, since there are a lot of great coder that may code things like this, but i doubt a great coder gonna code a bot to collect 200 satoshis/hour
Buziss
Hero Member
*****
Offline Offline

Activity: 896
Merit: 1000


View Profile
February 08, 2015, 10:17:57 AM
 #1111

Our of interest today, I had a look at our faucet stats. On a typical day, we're giving out about 1000 bits (500 faucet claims) so it has it hasn't been a big burden. However, one thing caught my eye, our most active fauceter:

Here is the list of faucet claim time (and time since last claim):

http://privatepaste.com/6c2fbcdda5

Hard to tell if that's a bot or an insomniac

Doesn't look like a bot due to the varying frequency.

yep doesnt looks like a bot, but i dunno, since there are a lot of great coder that may code things like this, but i doubt a great coder gonna code a bot to collect 200 satoshis/hour

The account claims less than 10 times a day, which is just 2000 satoshi or $0.0045 a day.
Unless you start to see many such accounts appearing, you shouldn't care if it is a bot or not lol.

waterpile
Hero Member
*****
Offline Offline

Activity: 602
Merit: 500


View Profile
February 08, 2015, 01:00:44 PM
 #1112

Most of those faucet users are bots. I can't believe if someone would waste his/her time collecting those faucets

Why would someone want to host a bot to collect 2 bits an hour?

i dont think its 2 bits/hr, i think its every after 15min
trafficolaa
Legendary
*
Offline Offline

Activity: 1008
Merit: 1000



View Profile
February 08, 2015, 01:17:46 PM
 #1113

Most of those faucet users are bots. I can't believe if someone would waste his/her time collecting those faucets

Why would someone want to host a bot to collect 2 bits an hour?

i dont think its 2 bits/hr, i think its every after 15min
are you using moneypot Huh Huh
mammusu
Hero Member
*****
Offline Offline

Activity: 1176
Merit: 501


Leading Crypto Sports Betting & Casino Platform


View Profile
February 08, 2015, 02:22:05 PM
 #1114

how to play on moneypot.
because im new here.

thanks.

..Stake.com..   ▄████████████████████████████████████▄
   ██ ▄▄▄▄▄▄▄▄▄▄            ▄▄▄▄▄▄▄▄▄▄ ██  ▄████▄
   ██ ▀▀▀▀▀▀▀▀▀▀ ██████████ ▀▀▀▀▀▀▀▀▀▀ ██  ██████
   ██ ██████████ ██      ██ ██████████ ██   ▀██▀
   ██ ██      ██ ██████  ██ ██      ██ ██    ██
   ██ ██████  ██ █████  ███ ██████  ██ ████▄ ██
   ██ █████  ███ ████  ████ █████  ███ ████████
   ██ ████  ████ ██████████ ████  ████ ████▀
   ██ ██████████ ▄▄▄▄▄▄▄▄▄▄ ██████████ ██
   ██            ▀▀▀▀▀▀▀▀▀▀            ██ 
   ▀█████████▀ ▄████████████▄ ▀█████████▀
  ▄▄▄▄▄▄▄▄▄▄▄▄███  ██  ██  ███▄▄▄▄▄▄▄▄▄▄▄▄
 ██████████████████████████████████████████
▄▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▄
█  ▄▀▄             █▀▀█▀▄▄
█  █▀█             █  ▐  ▐▌
█       ▄██▄       █  ▌  █
█     ▄██████▄     █  ▌ ▐▌
█    ██████████    █ ▐  █
█   ▐██████████▌   █ ▐ ▐▌
█    ▀▀██████▀▀    █ ▌ █
█     ▄▄▄██▄▄▄     █ ▌▐▌
█                  █▐ █
█                  █▐▐▌
█                  █▐█
▀▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▀█
▄▄█████████▄▄
▄██▀▀▀▀█████▀▀▀▀██▄
▄█▀       ▐█▌       ▀█▄
██         ▐█▌         ██
████▄     ▄█████▄     ▄████
████████▄███████████▄████████
███▀    █████████████    ▀███
██       ███████████       ██
▀█▄       █████████       ▄█▀
▀█▄    ▄██▀▀▀▀▀▀▀██▄  ▄▄▄█▀
▀███████         ███████▀
▀█████▄       ▄█████▀
▀▀▀███▄▄▄███▀▀▀
..PLAY NOW..
Banjiro
Legendary
*
Offline Offline

Activity: 1288
Merit: 1001


View Profile
February 08, 2015, 03:24:14 PM
 #1115

how to play on moneypot.
because im new here.

thanks.

just register and start to play
you can see there how to play.
Mist
Sr. Member
****
Offline Offline

Activity: 434
Merit: 250

:)


View Profile
February 08, 2015, 10:41:34 PM
 #1116

If anyone is interested, i found a great autobet.
 
2 base cashout at 10 1.15 on loss
Paraka
Legendary
*
Offline Offline

Activity: 1148
Merit: 1000


View Profile WWW
February 09, 2015, 01:18:45 AM
 #1117

If anyone is interested, i found a great autobet.
 
2 base cashout at 10 1.15 on loss


can you share here ur autobet
I want to try using that.
katerniko1
Legendary
*
Offline Offline

Activity: 966
Merit: 1000


View Profile
February 09, 2015, 01:32:32 AM
 #1118

its great game and its very interesting
Southpaw0
Legendary
*
Offline Offline

Activity: 1318
Merit: 1010


666 - slave 2 the grind -


View Profile
February 09, 2015, 03:17:10 AM
 #1119

the suspense in this game is off the charts. I love it!

ill handcuff you to the shower and put an apple in your mouth with the water running on cold then you handcuff me to the bed and go to town.. just dont BURN the house down with your hot ass oven cus i will be dead and you will be gone
gmannnnn
Member
**
Offline Offline

Activity: 78
Merit: 10


View Profile
February 09, 2015, 07:53:34 AM
 #1120

Did you notice any performance increase after bumping up to Node v0.12, OP?
Pages: « 1 ... 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 [56] 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 ... 177 »
  Print  
 
Jump to:  

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