Pages:
Author

Topic: ★★BITSHOOK.COM★DOGECOIN & BITCOIN ★IF YOU LOSE %10 RETURN BONUS ★★ - page 2. (Read 4486 times)

legendary
Activity: 1463
Merit: 1886
Nice!


Quick question, looking at the code, it seems like you've modified game result generator to take a new argument "houseEdge"

https://github.com/bitshook/bustabit-gameserver/blob/dffe12a55e44ec4b7f36b4a9bd63f99908135210/server/lib.js#L74


which appears to be loaded from a file ('/usr/local/src/btc-settings.json').

So when users want to validate the game results, what value are they supposed to use? And if it can change at any time, how are people supposed validate the game? A core aspect of provably fair, is that the house edge is baked into the algorithm itself. You need people to be able to verify that.

Also it seems like you didn't do your own seeding event, and are using bustabit's client seed? However that doesn't really work too well, because you theoretically could've picked a "bad" hash chain so that client seed would give good results for the casino.


(BTW, i didn't check but I hope you customized the server seed when generating your hash chain or someone will be able to predict it)
member
Activity: 70
Merit: 10
Yep, modified open license , Doge and Bits Supported.

If you are using bustabit's source code under the AGPL you need to release your source code in order to comply with the license.

Quote
Cool! BTW just to be clear one of the requirements of using the open source one is that all changes you make must be made available and prominently linked from your site (see: https://www.gnu.org/licenses/agpl-3.0.en.html)  Grin

Quote
It's been another week and as far as I can tell you still haven't released the source code. This is something you should have done at release, i.e. nearly three weeks ago.

I'm not sure what the explanation for your stalling is, not that it would be an excuse. Commit your changes to a repository, upload it to GitHub or whatever you prefer and be done with it. Or just link directly to a tarball, if that's what you prefer.



Bitshook Published On GitHub : https://github.com/bitshook


member
Activity: 70
Merit: 10
member
Activity: 70
Merit: 10
username : ableh
currency : btc
lets rock Smiley and merry x-mas


ableh 13500 satoshi good luck
hero member
Activity: 751
Merit: 500
mrbusto doge pls thank you
sr. member
Activity: 498
Merit: 251
CryptoTalk.Org - Get Paid for every Post!
username : ableh
currency : btc
lets rock Smiley and merry x-mas
member
Activity: 70
Merit: 10
Nice site, good luck guys.

Magisterek
BTC

Magisterek 13500 satoshi good luck Wink
member
Activity: 70
Merit: 10
Username : ravy
Currency : satoshi

ravy 13500 satoshi good luck
hero member
Activity: 518
Merit: 501
Nice site, good luck guys.

Magisterek
BTC
newbie
Activity: 56
Merit: 0
Username : ravy
Currency : satoshi
member
Activity: 70
Merit: 10
username : ije07 BTC

THANK YOU

ije07 13500 satoshi good luck
newbie
Activity: 6
Merit: 0
good promotion to can incraese client
can get return 10% every lost, and ready added faucet too, can get trial gamble to play in there

i think is very good can added promotion use signature campaign
you gambling site can incraese in popularity
Ready added faucet? AFAIK, since bitshook started, they already added faucet. Have you checked before?
They already made a lot giveaway and i think that is also can attracts other people to come playing on their site. It is not bad promotion even though they are not running signature campaign, IMHO.

" signature campaign To do this soon"
Signature campaign is very important to give success to your site. You will get more traffic and your site will be famous like other sites which have signature campaign. Try to start your signature campaign in this Christmas.
full member
Activity: 140
Merit: 100
Cool! BTW just to be clear one of the requirements of using the open source one is that all changes you make must be made available and prominently linked from your site (see: https://www.gnu.org/licenses/agpl-3.0.en.htmlGrin

I'm sorry we delayed it.It will be published on github very soon.Thank you for your warning


It's been another week and as far as I can tell you still haven't released the source code. This is something you should have done at release, i.e. nearly three weeks ago.

I'm not sure what the explanation for your stalling is, not that it would be an excuse. Commit your changes to a repository, upload it to GitHub or whatever you prefer and be done with it. Or just link directly to a tarball, if that's what you prefer.
member
Activity: 70
Merit: 10

How to find custom script?Huh? please Huh Huh

You can find many scripts in the pastebin site.
full member
Activity: 589
Merit: 100

How to find custom script?Huh? please Huh Huh

Quote
/*  Dexon's Random script (% of bankroll)
 *   Current status: Random Cheesy
 *  Version 2.3.0
 *  + When editing the variables, be careful to not remove any ';' or ',' character.
 */

var percentage = 3, // 3% of bankroll
    maxBet = 900, // (900 bits, set to 0 to disable) The bot won't bet higher than this amount
    maxCashout = 100; // (100x) this is the maximum cashout point the script can go
 
var Simulation = false; // (true/false) Setting this to true will make the bot to simulate a betting run.
 
// --- Edit over this line --- \\
 
 var totalLost = 0;
 var lastBet = 0, bet = 0, profit = 0, wins = 0, loss = 0, firstgame = true, cashout;
 var chilling = false;
engine.on('game_starting', function(info) {
    console.log((Simulation?"(SIMULATION) ": "")+"Current Profit: "+(profit/100).toFixed(2)+" bits ("+wins+" Wins | "+loss+" Loses)");
    if(chilling) chilling = false;
    if(firstgame) firstgame = false;
    bet = Math.floor((engine.getBalance()/100)*(percentage/100))*100;
    //var rand = randomInt(1,100);
    for(var i=1;i        var rand = randomInt(1,100);
        var curProb = (9900/(101*((i*100)-1)))*100;
        if(rand==1 && i == 1){
            console.log(" /!\\ 1% protection... Not betting!");
            chilling = true;
            break;
        }
        if(!chilling && rand>curProb){
            cashout = i.toFixed(2);
            cashout = Math.round(cashout*100);
            if(totalLost>0){
                var onLossIncrement = Math.round((totalLost * (randomInt(30, 90)/100)/100))*100;
                bet += onLossIncrement;
                console.log((Simulation?"(SIMULATION) ": "")+"(Recovery mode) adding "+(onLossIncrement/100)+" bits to the bet amount");
            }
            if(bet > maxBet*100 && maxBet != 0){
                console.log(" /!\\ Bet amount higher than the maxBet. For your safty, setting the bet to: "+maxBet+" bits");
                bet = maxBet * 100;
            }
            if(!Simulation){
                engine.placeBet(bet, cashout, function(){
                    console.log("Betting "+(bet/100)+" bits on x"+(cashout/100));
                    lastBet = bet;
                });
            }else{
                console.log("(SIMULATION) Betting "+(bet/100)+" bits on x"+(cashout/100));
                lastBet = bet;
            }
            break;
        }
    }
});
 
engine.on('cashed_out', function(data) {
    if(data.username==engine.getUsername()){
        console.log("(Win) Cashed out at x"+(data.stopped_at/100));
        wins++;
        profit += ((lastBet*(data.stopped_at/100))-lastBet);
        if(totalLost>0){
            totalLost -= ((bet*(data.stopped_at/100))-lastBet);
            if(totalLost<0) totalLost = 0;
        }
    }
});
 
engine.on('game_crash', function(data) {
    if(!chilling && data.game_crash < cashout && !firstgame){
        console.log((Simulation?"(SIMULATION) ": "")+"(Lost)");
        loss++;
        profit -= lastBet;
        totalLost += lastBet;
    }
    if(!chilling && data.game_crash >= cashout && Simulation && !firstgame){
        console.log("(SIMULATION) (Win) Cashed out at x"+(cashout/100));
        wins++;
        profit += ((lastBet*(cashout/100))-lastBet);
        if(totalLost>0){
            totalLost -= ((bet*(cashout/100))-lastBet);
            if(totalLost<0) totalLost = 0;
        }
    }
    if(firstgame) firstgame = false;
});
 
function randomInt(min,max){
    return Math.floor(Math.random()*(max-min+1)+min);
}
newbie
Activity: 16
Merit: 0

How to find custom script?Huh? please Huh Huh
member
Activity: 70
Merit: 10
full member
Activity: 434
Merit: 101
★Bitvest.io★ Play Plinko or Invest!
legendary
Activity: 2898
Merit: 1006
Leading Crypto Sports Betting & Casino Platform
actually this is your ANN thread or giveaway thread because giveaway doesn't able to be here and you must read sticked rule before running the giveaway at this section and giveaway thread only belongs in Games and Rounds board

sticked rule https://bitcointalksearch.org/topic/giveawayspromosetc-do-not-belong-in-this-forum-408265
member
Activity: 70
Merit: 10
Pages:
Jump to: