Bitcoin Forum
May 25, 2024, 04:57:30 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 5 6 7 [8] 9 10 11 12 13 14 15 16 17 18 19 20 21 »  All
  Print  
Author Topic: why people use dice bot?  (Read 11500 times)
BTCLovingDude
Legendary
*
Offline Offline

Activity: 1134
Merit: 1010

BTC to the moon is inevitable...


View Profile WWW
September 10, 2016, 07:40:25 AM
 #141

They use dice bot because they are lazy gamblers, and the main reason is they are doing the martingale technique in betting. But I do not follow that using bot in dice because that method will not work due to house edge and still in the long run we lose.

using a bot is not only because of being lazy or not, a bot makes everything so much easier. and you would never understand what i mean unless you try one out. in anything, whether it is in gambling or in trading or even in some other regular works.

--looking for signature--
South Park
Hero Member
*****
Offline Offline

Activity: 2898
Merit: 798


I am terrible at Fantasy Football!!!


View Profile
September 13, 2016, 06:47:00 AM
 #142

They use dice bot because they are lazy gamblers, and the main reason is they are doing the martingale technique in betting. But I do not follow that using bot in dice because that method will not work due to house edge and still in the long run we lose.

using a bot is not only because of being lazy or not, a bot makes everything so much easier. and you would never understand what i mean unless you try one out. in anything, whether it is in gambling or in trading or even in some other regular works.
Of course that any piece of software that saves time and effort is going to make thing easier, however the question is, Why? Since the bot does not help you win in any form, then the bot is helping you to lose even faster.

██████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
██████████████████████
.SHUFFLE.COM..███████████████████████
███████████████████████
███████████████████████
███████████████████████
███████████████████████
█████████████████████
████████████████████
██████████████████████
████████████████████
██████████████████████
███████████████████████
███████████████████████
███████████████████████
███████████████████████
███████████████████████
███████████████████████
██████████████████████
██████████████████████
██████████████████████
███████████████████████
███████████████████████
███████████████████████
███████████████████████
███████████████████████
███████████████████████
███████████████████████
.
...Next Generation Crypto Casino...
eazy-eze
Newbie
*
Offline Offline

Activity: 3
Merit: 0


View Profile
April 02, 2017, 01:56:56 AM
 #143

Scripting CAN be effective if you use higher wages and only for a short period. I've spent time throwing together some scripts for Bitsler which have made me a quarter bitcoin and sometimes lost me a whole bunch. I'd say that if you were to make a new strategy and script every 15 minutes or so with somewhat high wages you could be successful.. but who has time for that?

There are strategies that can be mathematically and meticulously planned out to work 100%, but after a few minutes Bitsler or whatever back-end programming behind the game will quickly notice and adjust. In Bitsler's case it is most certainly some sort of low end AI (likely a neural net or the like). These 'provably fair' games are only that to people who make their own bots and change them extremely often OR play the game manually without getting stuck in any kind of repeating patterns.

Any repetition whatsoever will quickly be foiled by even the most simple AI. That's why you're best chance is to run it for a few minutes at higher stakes, make your profits, then scrap the script and strategy for a new (custom) one. This is truly the only way to success.

If you'd like to see for yourself, here's a prime example:

You can test it with just the basic free 300 Satoshi you get from a new acct or the faucet. I threw this together a while back and it WILL work for a short period of time but then within minutes you'll see it's effectiveness diminish right before your eyes. That's the AI working to take yo' money.

Code:
// Declarations
///////////////////////////
var logs = {};
var API = {};
var settings = {};
var enabled = true;
var cycle_timer = undefined;
var SHA = ['5445g54g4gh2', 'f34f32526h24', '54t5gffsdh452', 'sdfasfd43r3t5t', 'SHJHKJhjdfhsdZHF', 'djfsuekNJysjhDGBkljk'];
var loss_count = 0;
var roundBalance = 0;
var roundStart = 0;
///////////////////////////


// Settings
///////////////////////////
settings.speed = 1;
settings.initial_bet = 5;
settings.failsafe = 0.45;
///////////////////////////


// Sub-Declarations
///////////////////////////
logs.count = 0;
logs.rolls = [];
logs.amounts = [];
logs.profit = [];
logs.double = false;
logs.triple = false;
logs.current_mode = undefined;
logs.last_result = undefined;
logs.last_amount = undefined;
logs.last_update = undefined;
logs.seed_change = undefined;
logs.start_balance = undefined;
logs.balance_level = undefined;
logs.triple_count = 0;
API.wager = $('#amount');
API.roll = $('#btn-bet-dice');
API.balance = $(".text-thin.mar-no.balance-btc-html");
API.seed = $('#seed-client-new');
API.chance = $('#editable-chance-field');
API.bets_tab = $($($('.nav.nav-tabs.text-center').children()[0]).children()[0]);
///////////////////////////


// Startup
///////////////////////////
changeBet(1);
changeChance(5);
API.bets_tab.click();
injectJS('https://ns_codeblocks.com/assets/scripts/seedrandom.js');
a = '<br><br><a href="javascript:void(0);" id="speedup"><i class="fa fa-caret-square-o-up"></i><span class="menu-title">Speed Up</span></a></li>';
b = '<a href="javascript:void(0);" id="slowdown"><i class="fa fa-caret-square-o-down"></i><span class="menu-title">Slow Down</span></a></li>';
c = '<br><a href="javascript:void(0);" id="speedset"><span class="menu-title">Current Speed: '+settings.speed+'</span></a></li>';
$('#mainnav-menu').append(a+b+c);
///////////////////////////


// Callbacks
///////////////////////////
$('#history-my-bets-dice').bind("DOMSubtreeModified", function() {
    if ((Date.now()-cycle_timer)/1000 >= 0.500||cycle_timer == undefined){
        cycle_timer = Date.now();
        if (settings.speed == 1){
            setTimeout(function(){update();},xyz(500,500*2));
        } else {
            setTimeout(function(){update();},xyz(500*(settings.speed*.75),(500*(settings.speed*.75)*2)));
        }
    }
});
$('#slowdown').click(function(e){settings.speed+=1; $($('#speedset').children()[0]).text('Current Speed: '+settings.speed); e.preventDefault();});
$('#speedup').click(function(e){settings.speed-=(settings.speed == 1)?0:1;$($('#speedset').children()[0]).text('Current Speed: '+settings.speed); e.preventDefault();});
///////////////////////////


// Main Loop
///////////////////////////
function mainLoop(){
    var beginner = [1,3,7,15,1,3,7,15,15];
    var intermediate = [1,3,7,15,34,34,1,3,7,15];
    var Advanced = [1,3,7,15,34,75,170,382,860,1935];
    if (roundStart < 5000) {
        if (loss_count >= 10) { changeBet(beginner[1]); }
        if (loss_count >= 20) { changeBet(beginner[2]); }
        if (loss_count >= 30) { changeBet(beginner[3]); }
        if (loss_count >= 40) { changeBet(beginner[4]); }
        if (loss_count >= 50) { changeBet(beginner[5]); }
        if (loss_count >= 60) { changeBet(beginner[6]); }
        if (loss_count >= 70) { changeBet(beginner[7]); }
        if (loss_count >= 80) { changeBet(beginner[8]); }
        if (loss_count < 10) { changeBet(beginner[0]); }
    } else if (roundStart >= 5000 && roundStart < 45000) {
        if (loss_count >= 10) { changeBet(intermediate[1]); }
        if (loss_count >= 20) { changeBet(intermediate[2]); }
        if (loss_count >= 30) { changeBet(intermediate[3]); }
        if (loss_count >= 40) { changeBet(intermediate[4]); }
        if (loss_count >= 50) { changeBet(intermediate[5]); }
        if (loss_count >= 60) { changeBet(intermediate[6]); }
        if (loss_count >= 70) { changeBet(intermediate[7]); }
        if (loss_count >= 80) { changeBet(intermediate[8]); }
        if (loss_count >= 90) { changeBet(intermediate[9]); }
        if (loss_count < 10) { changeBet(intermediate[0]); }
    } else if (roundStart >= 45000 && roundStart < 100000) {
        if (loss_count >= 10) { changeBet(Advanced[1]); }
        if (loss_count >= 20) { changeBet(Advanced[2]); }
        if (loss_count >= 30) { changeBet(Advanced[3]); }
        if (loss_count >= 40) { changeBet(Advanced[4]); }
        if (loss_count >= 50) { changeBet(Advanced[5]); }
        if (loss_count >= 60) { changeBet(Advanced[6]); }
        if (loss_count >= 70) { changeBet(Advanced[7]); }
        if (loss_count >= 80) { changeBet(Advanced[8]); }
        if (loss_count >= 90) { changeBet(Advanced[9]); }
        if (loss_count < 10) { changeBet(Advanced[0]); }
    } else if (roundStart >= 100000) {
        multiplier = 1.25;
        if (loss_count >= 10) { changeBet(Math.round(Advanced[1]*multiplier)); }
        if (loss_count >= 20) { changeBet(Math.round(Advanced[2]*multiplier)); }
        if (loss_count >= 30) { changeBet(Math.round(Advanced[3]*multiplier)); }
        if (loss_count >= 40) { changeBet(Math.round(Advanced[4]*multiplier)); }
        if (loss_count >= 50) { changeBet(Math.round(Advanced[5]*multiplier)); }
        if (loss_count >= 60) { changeBet(Math.round(Advanced[6]*multiplier)); }
        if (loss_count >= 70) { changeBet(Math.round(Advanced[7]*multiplier)); }
        if (loss_count >= 80) { changeBet(Math.round(Advanced[8]*multiplier)); }
        if (loss_count >= 90) { changeBet(Math.round(Advanced[9]*multiplier)); }
        if (loss_count < 10) { changeBet(intermediate[0]); }
    }
    API.roll.click();
}
///////////////////////////


// Functions
///////////////////////////
function getLast(x,y){var r=[];var z=y.length-1;for(i=z;i>z-x;i--){r.push(y[i]);}return r;}
function injectJS(b){var a=document.createElement('script');a.type='text/javascript';a.src=b;$("body").append(a);}
function hashCode(s){return s.split("").reduce(function(a,b){a=((a<<5)-a)+b.charCodeAt(0);return a&a},0);}
function newSeed(){}//{key=SHA[xyz(0,SHA.length-1)];a=Sha256.hash(key);API.seed.val(a);generate_token("change-seed",30);setTimeout(function(){change_seeds();},500);}
function notify(title, msg){showSuccessNotification(title, msg);}
function timePassed(a){if(a==undefined){return 500;}else{return (Date.now()-a)/1000}}
function xyz(a,b){a=Math.ceil(a);b=Math.floor(b);return Math.floor(Math.random()*(b-a+1))+a;}
function changeBet(a){a=a.toString();var b='0.';for(i=0;i<8-(a.length);i++){b+='0';};b+=a;API.wager.val(b);}
function changeChance(a){API.chance.val(a).trigger({type:'keyup',keyCode:13,which:13,charCode:13});$('#editable-chance').text(a+"%");}
function update(){
    var first = 0;
    if(logs.count == 0){logs.start_balance=parseFloat(API.balance.text())*100000000;roundBalance=logs.start_balance;logs.balance_level=logs.start_balance/4;}
    if(logs.count == 0){notify("Let's Roll!", 'Script is initializing and will start shortly..');first=5000;}
    setTimeout(function(){
    logs.count+=1;
    logs.last_result=$($('tr span')[1]).hasClass('text-success');
    logs.last_amount=parseFloat($($('tr .text-center.hidden-xs')[7]).text())*100000000;
    logs.rolls.push(logs.last_result);
    logs.amounts.push($($('tr .text-center.hidden-xs')[7]).text().trim());
    logs.profit.push(parseFloat(API.balance.text())*100000000 - logs.start_balance);
    if(logs.profit[logs.profit.length-1] > logs.balance_level){
    notify('Congrats!', 'Balance has increased by 25%! [Total Profit: '+logs.profit[logs.count-1]+']');logs.balance_level = logs.balance_level*2;}
    //if(parseFloat(API.balance.text())*100000000 < (logs.start_balance-logs.start_balance*settings.failsafe)){enabled = false; alert('Failsafe!!');}
    if(timePassed(logs.seed_change)>250||logs.seed_change==undefined){logs.seed_change=Date.now();newSeed();}
    //if(logs.count > 1000 && logs.last_result) { enabled = false; alert('stoped ITM'); }
    runningBalance = Math.round((parseFloat(API.balance.text())*100000000)-roundBalance);
    sym = (runningBalance>0) ? '+':'';
    info = 'Streak: '+loss_count+' | ('+sym+runningBalance+')';
    document.title = info;
    if (!logs.last_result) {loss_count +=1;} else {console.log(info+' | '+Math.round(logs.profit[logs.profit.length-1]));loss_count = 0;roundBalance = parseFloat(API.balance.text())*100000000;roundStart = roundBalance;}
    if(enabled){mainLoop();}
    }, first);
}
///////////////////////////

setTimeout(function(){API.roll.click();}, 5000);
alexsandria
Sr. Member
****
Offline Offline

Activity: 896
Merit: 268


★777Coin.com★ Fun BTC Casino!


View Profile
April 02, 2017, 02:34:16 AM
 #144

They use dice bot because they are lazy gamblers, and the main reason is they are doing the martingale technique in betting. But I do not follow that using bot in dice because that method will not work due to house edge and still in the long run we lose.

using a bot is not only because of being lazy or not, a bot makes everything so much easier. and you would never understand what i mean unless you try one out. in anything, whether it is in gambling or in trading or even in some other regular works.
Of course that any piece of software that saves time and effort is going to make thing easier, however the question is, Why? Since the bot does not help you win in any form, then the bot is helping you to lose even faster.
I can strongly agree with that. Bot isn't the answer to win on again, it ca  cause you to lose sometimes sice house edge is systematic. I would still prefer to play manually so that I can manage to control every ease it takes.

emberbekas
Legendary
*
Offline Offline

Activity: 1904
Merit: 1000



View Profile
April 02, 2017, 03:20:24 AM
 #145

Since most dice gambling sites already have an auto roll feature, using dice bot for simple method isnt good choice to make. But if we had some complicated method and we can't implement it with that auto roll feature, dice bot is a good tool to help us.

janggernaut
Legendary
*
Offline Offline

Activity: 2366
Merit: 1130


View Profile
April 02, 2017, 03:28:08 AM
 #146

They use dice bot because they are lazy gamblers, and the main reason is they are doing the martingale technique in betting. But I do not follow that using bot in dice because that method will not work due to house edge and still in the long run we lose.
Using bot= Lazy gamblers? Gamble manually = diligent gamblers? Would you like you gamble manually from 1 satoshi as base bet, diligent gambler?
Don't talk nonsense here bud, i rarely use martingale strategy while i use dice bot. I have mixed 2 or 3 strategies in a dice bot while i used that.

They use dice bot because they are lazy gamblers, and the main reason is they are doing the martingale technique in betting. But I do not follow that using bot in dice because that method will not work due to house edge and still in the long run we lose.

using a bot is not only because of being lazy or not, a bot makes everything so much easier. and you would never understand what i mean unless you try one out. in anything, whether it is in gambling or in trading or even in some other regular works.
Of course that any piece of software that saves time and effort is going to make thing easier, however the question is, Why? Since the bot does not help you win in any form, then the bot is helping you to lose even faster.
I can strongly agree with that. Bot isn't the answer to win on again, it ca  cause you to lose sometimes sice house edge is systematic. I would still prefer to play manually so that I can manage to control every ease it takes.
I bet when you are in bad streaks, you will get angry and greedy then you will bet all your money to recover your loss before.
I can say, using dice bot is more safer than manually.

megynacuna
Sr. Member
****
Offline Offline

Activity: 756
Merit: 253


View Profile
April 02, 2017, 03:57:40 AM
 #147

Whats the point of buy it ?

Simple, to have the edge over the house and skew things in your favor even though I doubt if they do work.
Oilacris
Hero Member
*****
Offline Offline

Activity: 3038
Merit: 616


Seabet.io | Crypto-Casino


View Profile
April 02, 2017, 04:01:43 AM
 #148

Whats the point of buy it ?

Simple, to have the edge over the house and skew things in your favor even though I doubt if they do work.
People uses these Bots do have really these aims or motives which they always think off that they can win against the house and become profitable on using it and sometimes curiousity leads people to use bots which they want to test it out if it will work or not but the sad reality it doesnt really work at all and people do still believing on this thing.

daringdiscovered
Hero Member
*****
Offline Offline

Activity: 700
Merit: 500


View Profile
April 02, 2017, 04:34:09 AM
 #149

They use dice bot because they are lazy gamblers, and the main reason is they are doing the martingale technique in betting. But I do not follow that using bot in dice because that method will not work due to house edge and still in the long run we lose.

Indeed, but this is not the reason for most of them. Some of the gamblers are just using this DICE bot because they don't have time for gambling, maybe they do have a work, and gambling is just their pastime or another way to earn money, others are using this DICE bot because they want to do other things aside from gambling, rather than multitasking, they prefer it this way because it is easier.

But if you don't have anything to do, and gambling is the only thing that you are doing in a day, then you don't need this DICE bot, because if I'm a gambler, and a full time gambler, I would rather play my money in my own rather than entrusting it to a BOT, which is not really reliable at all the time.
klf
Legendary
*
Offline Offline

Activity: 1344
Merit: 1000


View Profile
April 02, 2017, 05:40:22 AM
 #150

Since most dice gambling sites already have an auto roll feature, using dice bot for simple method isnt good choice to make. But if we had some complicated method and we can't implement it with that auto roll feature, dice bot is a good tool to help us.

But still, those auto bots may not be suitable for the longer term because if you follow some repeated pattern then mostly site may come to know then soon or later you will lose the entire bankroll. So the best way is use manual method and don't stick to same method every time. End result we all know that casino is going win but if one play manual then will have an option to stop when you want it. I usually don't use any bots to play dice game.
Caladonian
Hero Member
*****
Offline Offline

Activity: 1302
Merit: 540


View Profile
April 02, 2017, 05:52:00 AM
 #151

Since most dice gambling sites already have an auto roll feature, using dice bot for simple method isnt good choice to make. But if we had some complicated method and we can't implement it with that auto roll feature, dice bot is a good tool to help us.
yeah if we do have settings that cant be provided by the autoroll bot would give big help to make our own strategy, and surely we can
control it and its an advantage to those who knew how to code properly they can really get good opportunity to win.
maydna
Hero Member
*****
Offline Offline

Activity: 2940
Merit: 556


Enterapp Pre-Sale Live - bit.ly/3UrMCWI


View Profile
April 02, 2017, 12:24:14 PM
 #152

i think its because people wants to see what the bot can do and beside that people wants to make their time to do other thing. but for using the bot, i think we should use good setting to make the bot is work properly. we need to make sure that our setting is really work because if not, then we can getting loss all of our money. with the bot, we can automate our gambling times and we can watch what happen with our games and we can do other thing that we want.

█████████████████████
█████████████████████████
█████████▀▀▀▀▀▀▀█████████
██████▀███████████▀██████
█████▀███▄▄▄▄▄▄▄███▀█████
████████▀▀▀▀▀▀▀▀▀████████
█████████████████████████
█████▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄█████
█████████████████████████
██████▄███████████▄██████
█████████▄▄▄▄▄▄▄█████████
█████████████████████████
█████████████████████
 
    CRYPTO WEBNEOBANK    
▄▄███████▄▄
▄███████████████▄
▄██████░░░░░░░░░░███▄
▄████▄▄███████▄▄░░░██▄
▄█████████████████░░░██▄
████░░▄▄▄▄▄▄▄▄▄░░░░░░░░██
████░░██████████░░░░░░░██
████░░▀▀▀▀▀▀▀▀▀░░░░░░░░██
▀█████████████████░░░██▀
▀████▀▀███████▀▀░░░██▀
▀██████░░░░░░░░░░███▀
▀███████████████▀
▀▀███████▀▀
Restmand
Sr. Member
****
Offline Offline

Activity: 979
Merit: 258



View Profile
April 02, 2017, 12:43:44 PM
 #153

I think now using dice bots is not that really popular  because every dice game or and gambling sites that are have dice game are implementing the auto roll feature that feature is helping the player of the dice game to use their settings and to not use anymore dice bots and the auto roll feature of every dice game is for free so I think now that the dice bots are not that popular these days.
zidanw
Sr. Member
****
Offline Offline

Activity: 1162
Merit: 258


1xbit.com


View Profile
April 02, 2017, 12:44:30 PM
 #154

They use dice bot because they are lazy gamblers, and the main reason is they are doing the martingale technique in betting. But I do not follow that using bot in dice because that method will not work due to house edge and still in the long run we lose.

using a bot is not only because of being lazy or not, a bot makes everything so much easier. and you would never understand what i mean unless you try one out. in anything, whether it is in gambling or in trading or even in some other regular works.
Of course that any piece of software that saves time and effort is going to make thing easier, however the question is, Why? Since the bot does not help you win in any form, then the bot is helping you to lose even faster.
I can strongly agree with that. Bot isn't the answer to win on again, it ca  cause you to lose sometimes sice house edge is systematic. I would still prefer to play manually so that I can manage to control every ease it takes.
I bet when you are in bad streaks, you will get angry and greedy then you will bet all your money to recover your loss before.
I can say, using dice bot is more safer than manually.


safer the bot or manually I think is same but the difference is the person. from my experience using a bot because it does not take a lot of time so it can do other work but setting a bit tricky so better manually.

.
1xBit.com TICKET RUSH
                                       ▄██▄▄
    ▄▄▄▀▀█████▀▀▄▄▄            ▄▄    ▄███████▄
  ▄▀      ▀█▀      ▀▄        ▄█████████████████▄
 ██▌       █       ▐██      ▄████████████████▀▀██
████▄▄   ▄▄█▄▄   ▄▄████   ▄████████████████▀████
██▀   ▀▀███████▀▀   ▀██▄▄██████████████▀▀███▄▄██
█        █████        ██████████████▀██████▀▀ ▄▀
█       █     █       ███████████▀▀███▀▀▀▀▄▀▀
 █▄▄▄▄▄▀       ▀▄▄▄▄█████████████▀▀
  ▀████▄       ▄███████████████▀▀
    ▀▀▀██▄▄▄▄▄███████████████
               ████████▀▀
               ▀█▄▄▀ ▀
██████████
██
██
██
██
██
██
██
██
██
██
██
██████████
.
BET ON
WORLD CUP &
COLLECT TICKETS!
|.
██████████
██
██
██
██
██
██
██
██
██
██
██
██████████
██████████
██
██
██
██
██
██
██
██
██
██
██
██████████
.
TAKE PART
██████████
██
██
██
██
██
██
██
██
██
██
██
██████████
marlboroza
Legendary
*
Offline Offline

Activity: 1932
Merit: 2270


View Profile
April 02, 2017, 01:28:59 PM
Last edit: April 02, 2017, 04:54:32 PM by marlboroza
 #155

They use dice bot because they are lazy gamblers, and the main reason is they are doing the martingale technique in betting. But I do not follow that using bot in dice because that method will not work due to house edge and still in the long run we lose.
What about chasing jackpot? Would you sit whole day and night and click thousands of bets manually because you are not lazy? Or if you use any type of strategy would you take calculator and calculate each bet and every win or loss?
People use bot because it makes things easier.
KennyR
Hero Member
*****
Offline Offline

Activity: 2310
Merit: 532


Enterapp Pre-Sale Live - bit.ly/3UrMCWI


View Profile
April 02, 2017, 02:15:19 PM
 #156

They use dice bot because they are lazy gamblers, and the main reason is they are doing the martingale technique in betting. But I do not follow that using bot in dice because that method will not work due to house edge and still in the long run we lose.

using a bot is not only because of being lazy or not, a bot makes everything so much easier. and you would never understand what i mean unless you try one out. in anything, whether it is in gambling or in trading or even in some other regular works.
Of course that any piece of software that saves time and effort is going to make thing easier, however the question is, Why? Since the bot does not help you win in any form, then the bot is helping you to lose even faster.
I can strongly agree with that. Bot isn't the answer to win on again, it ca  cause you to lose sometimes sice house edge is systematic. I would still prefer to play manually so that I can manage to control every ease it takes.
I bet when you are in bad streaks, you will get angry and greedy then you will bet all your money to recover your loss before.
I can say, using dice bot is more safer than manually.


safer the bot or manually I think is same but the difference is the person. from my experience using a bot because it does not take a lot of time so it can do other work but setting a bit tricky so better manually.
As quoted using a bot makes the event  less effective. The bot just rolls based on the algorithmic program​ that's been generated to run the dice. But luckily most of the time the bot gives low winning possibilities.

█████████████████████
█████████████████████████
█████████▀▀▀▀▀▀▀█████████
██████▀███████████▀██████
█████▀███▄▄▄▄▄▄▄███▀█████
████████▀▀▀▀▀▀▀▀▀████████
█████████████████████████
█████▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄█████
█████████████████████████
██████▄███████████▄██████
█████████▄▄▄▄▄▄▄█████████
█████████████████████████
█████████████████████
 
    CRYPTO WEBNEOBANK    
▄▄███████▄▄
▄███████████████▄
▄██████░░░░░░░░░░███▄
▄████▄▄███████▄▄░░░██▄
▄█████████████████░░░██▄
████░░▄▄▄▄▄▄▄▄▄░░░░░░░░██
████░░██████████░░░░░░░██
████░░▀▀▀▀▀▀▀▀▀░░░░░░░░██
▀█████████████████░░░██▀
▀████▀▀███████▀▀░░░██▀
▀██████░░░░░░░░░░███▀
▀███████████████▀
▀▀███████▀▀
CODE200
Sr. Member
****
Offline Offline

Activity: 1456
Merit: 309


★Bitvest.io★ Play Plinko or Invest!


View Profile
April 02, 2017, 03:10:40 PM
 #157

Well i use a dice bot because it only helps me to bet automatically. it not makes me lazier it's just it helps my work more easier. And even I'm a sleep, i am still betting because of the bot. even i control it, it's almost the same on what i lose and what i win.



BIG WINNER!
[15.00000000 BTC]


▄████████████████████▄
██████████████████████
██████████▀▀██████████
█████████░░░░█████████
██████████▄▄██████████
███████▀▀████▀▀███████
██████░░░░██░░░░██████
███████▄▄████▄▄███████
████▀▀████▀▀████▀▀████
███░░░░██░░░░██░░░░███
████▄▄████▄▄████▄▄████
██████████████████████
▀████████████████████▀
▄████████████████████▄
██████████████████████
█████▀▀█▀▀▀▀▀▀██▀▀████
█████░░░░░░░░░░░░░▄███
█████░░░░░░░░░░░░▄████
█████░░▄███▄░░░░██████
█████▄▄███▀░░░░▄██████
█████████░░░░░░███████
████████░░░░░░░███████
███████░░░░░░░░███████
███████▄▄▄▄▄▄▄▄███████
██████████████████████
▀████████████████████▀
▄████████████████████▄
███████████████▀▀▀▀▀▀▀
███████████▀▀▄▄█░░░░░█
█████████▀░░█████░░░░█
███████▀░░░░░████▀░░░▀
██████░░░░░░░░▀▄▄█████
█████░▄░░░░░▄██████▀▀█
████░████▄░███████░░░░
███░█████░█████████░░█
███░░░▀█░██████████░░█
███░░░░░░████▀▀██▀░░░░
███░░░░░░███░░░░░░░░░░
▀██░▄▄▄▄░████▄▄██▄░░░░
▄████████████▀▀▀▀▀▀▀██▄
█████████████░█▀▀▀█░███
██████████▀▀░█▀░░░▀█░▀▀
███████▀░▄▄█░█░░░░░█░█▄
████▀░▄▄████░▀█░░░█▀░██
███░▄████▀▀░▄░▀█░█▀░▄░▀
█▀░███▀▀▀░░███░▀█▀░███░
▀░███▀░░░░░████▄░▄████░
░███▀░░░░░░░█████████░░
░███░░░░░░░░░███████░░░
███▀░██░░░░░░▀░▄▄▄░▀░░░
███░██████▄▄░▄█████▄░▄▄
▀██░████████░███████░█▀
▄████████████████████▄
████████▀▀░░░▀▀███████
███▀▀░░░░░▄▄▄░░░░▀▀▀██
██░▀▀▄▄░░░▀▀▀░░░▄▄▀▀██
██░▄▄░░▀▀▄▄░▄▄▀▀░░░░██
██░▀▀░░░░░░█░░░░░██░██
██░░░▄▄░░░░█░██░░░░░██
██░░░▀▀░░░░█░░░░░░░░██
██░░░░░▄▄░░█░░░░░██░██
██▄░░░░▀▀░░█░██░░░░░██
█████▄▄░░░░█░░░░▄▄████
█████████▄▄█▄▄████████
▀████████████████████▀




Rainbot
Daily Quests
Faucet
aardvark15
Hero Member
*****
Offline Offline

Activity: 1008
Merit: 510


View Profile
April 02, 2017, 03:50:34 PM
 #158

I have never used a dice bot but I can see a benefit. If you use a betting strategy like martingale where you have to make very small bets, it takes forever to make any profit. A bot would speed it up quite a bit.
buyinbtc
Legendary
*
Offline Offline

Activity: 1008
Merit: 1010

CryptoTalk.Org - Get Paid for every Post!


View Profile
April 02, 2017, 04:38:03 PM
 #159

Whats the point of buy it ?

Main reason of that is because it is automated gambling, you can set it how you want, it is very useful thing to have if you want automated betting, for example when you sleep, or you go eat. I don't use or buy them,just i don't see point to pay for them for what you can do by yourself, clicking on screen, you even feel happier when you win something.

And of course, some dice sites already have automated gambling bot, so you can try them there.

 
                                . ██████████.
                              .████████████████.
                           .██████████████████████.
                        -█████████████████████████████
                     .██████████████████████████████████.
                  -█████████████████████████████████████████
               -███████████████████████████████████████████████
           .-█████████████████████████████████████████████████████.
        .████████████████████████████████████████████████████████████
       .██████████████████████████████████████████████████████████████.
       .██████████████████████████████████████████████████████████████.
       ..████████████████████████████████████████████████████████████..
       .   .██████████████████████████████████████████████████████.
       .      .████████████████████████████████████████████████.

       .       .██████████████████████████████████████████████
       .    ██████████████████████████████████████████████████████
       .█████████████████████████████████████████████████████████████.
        .███████████████████████████████████████████████████████████
           .█████████████████████████████████████████████████████
              .████████████████████████████████████████████████
                   ████████████████████████████████████████
                      ██████████████████████████████████
                          ██████████████████████████
                             ████████████████████
                               ████████████████
                                   █████████
.YoBit AirDrop $.|.Get 700 YoDollars for Free!.🏆
eazy-eze
Newbie
*
Offline Offline

Activity: 3
Merit: 0


View Profile
April 02, 2017, 09:01:20 PM
 #160

I have never used a dice bot but I can see a benefit. If you use a betting strategy like martingale where you have to make very small bets, it takes forever to make any profit. A bot would speed it up quite a bit.

Most certainly not. MGale is like the worst possible thing to add into a bot. It will eventually identify your pattern and then your money is gone.
Pages: « 1 2 3 4 5 6 7 [8] 9 10 11 12 13 14 15 16 17 18 19 20 21 »  All
  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!