Search content
Sort by

Showing 8 of 8 results by jdquick
Post
Topic
Board Gambling discussion
Re: Seuntjie' Dice bot programmers mode discussion.
by
jdquick
on 25/10/2017, 15:18:44 UTC
is there already a winning script what makes profits for a long time, every site takes a security value in behalf of the bank value.
when playing any type of martingale you will lost with long ranges at the end.


i blew up my freebitcoins a few times, by playing automatic in what order ever out of nothing ranges of lost 80 or 90 times in a row comes up, and no one can cover this one.


with my script and 0,1 of value, it will stand long by playing at 10 start at 25.
but i know it will blow up at the end.

Post
Topic
Board Gambling discussion
Re: Seuntjie' Dice bot programmers mode discussion.
by
jdquick
on 25/10/2017, 10:46:14 UTC
found it it was something with the multiply

the final code is
----------------------
--
-- 6-8-10 Strat for jdquick
-- Written by HCP
--
----------------------
--Set these to match your site/currency/bankroll
basebet = 0.00000001
maxBet = 0.00001024

----------------------
chance = 8
bethigh = true --bet high when true, bet low when false

enablezz=false --set to true to use high/low switching
--settings from advanced mode

enablesrc=false --set to true to use stop/reset conditions
--settings from advanced mode

firstPhaseLength = 16
stepLosses = 4

nextbet = basebet

firstPhase = true

lossStreak = 0
stopOnWin = false

function dobet()

  if (win) then
    nextbet = basebet
    firstPhase = true
    lossStreak = 0
    if (stopOnWin) then
      nextbet = 0
      stop()
    end

  else
    lossStreak = lossStreak + 1

    if lossStreak == firstPhaseLength then
      firstPhase = false
      nextbet = previousbet *  2
    elseif lossStreak > firstPhaseLength then
      if lossStreak % stepLosses == 0 then
        nextbet = previousbet * 2
      end
 
    end

  end

  if nextbet > maxBet then
    nextbet = 0
    stop()
  end

end

Post
Topic
Board Gambling discussion
Re: Seuntjie' Dice bot programmers mode discussion.
by
jdquick
on 25/10/2017, 10:35:54 UTC
with the above code the script fails when try to multiply
with this message

[string "chunk"]:26: attempt to perform arithmetic on global 'multiplier' (a nil value)

anyone knows how to resolve?




You realise that you're in the "Seuntjie's Dice bot programmers mode discussion." thread right? Huh

As in https://bot.seuntjie.com/

This thread is for people writing scripts for Seuntjie's Dice Bot... which uses the LUA programming language. You should check it out... it works with a large number of dice sites Smiley

Also, your strategy isn't that great... at 6x payout, your "chance" is only around 16.5% (depending on site and house edge)... the max expected loss streak over only 10,000 rolls at that chance is something like 57. You're going to need a hefty bankroll to cover that Tongue Wink
https://i.imgur.com/P6E2I6i.png
Post
Topic
Board Gambling discussion
Re: Seuntjie' Dice bot programmers mode discussion.
by
jdquick
on 24/10/2017, 13:09:19 UTC
it looks it missing some ;
chrome and Firefox does not like the -- as comment
IE says it missig the ; somewhere but no debugging info is there.

i am not a java or web programmer, but can do a lots of things with powershell.






hi thanks for the script it looks nice
but what language is it i cannot past and work with this code in Firefox and chrome

for the freebitco.in it must be something like this
-------------------
bconfig = {
  maxBet: 0.00001024,
  wait: 1000,
  autoexit: 0.00001,
  want: 0.000014,
  toggleHilo:false,
  startbal: 0,
  won: 0,
};
hilo = 'hi';
multiplier = 1;
rollDice = function() {
 
  if ($('#double_your_btc_bet_lose').html() !== '') {
    $('#double_your_btc_2x').click();
    multiplier = 1;
    if(bconfig.toggleHilo)toggleHiLo();
  } else {
    $('#double_your_btc_min').click();
    multiplier = 1;
  }
 
  if (parseFloat($('#balance').html()) < (parseFloat($('#double_your_btc_stake').val()) * 2) ||
    parseFloat($('#double_your_btc_stake').val()) > bconfig.maxBet) {
    console.log($('#double_your_btc_min'));
  }
  if (parseFloat($('#balance').html()) < bconfig.autoexit) {
    throw "exit";
  }
  if (parseFloat($('#balance').html()) > bconfig.want) {
        var num = parseFloat($('#balance').html());
        bconfig.want = num + 0.00000030;
        bconfig.autoexit = num - 0.00000420;
  bconfig.won++;
  var total = num - bconfig.startbal;
        console.log('Setting bconfig want to: ' + bconfig.want)
        console.log('Setting autoexit to: ' + bconfig.autoexit)
  console.log('Total won: ' + total + ' BTC')
  }
 
  $('#double_your_btc_bet_hi_button').click();
 
  setTimeout(rollDice, (multiplier * bconfig.wait) + Math.round(Math.random() * 1000));
};
 
toggleHiLo = function() {
  if (hilo === 'hi') {
    hilo = 'hi';
  } else {
    hilo = 'hi';
  }
};
var num = parseFloat($('#balance').html());
bconfig.startbal = num;
bconfig.want = num + 0.00000030;
bconfig.autoexit = num - 0.00000420;
rollDice();
---------------





I got a nice way to win very frequently

but i am unable to write a good script for it
here is my try to brake it down
So, if I understand this correctly... you are betting on 6x or 8x or 10x payout correct?

- You start with a basebet of 1 unit
- You roll until 12 losses with 6x (or 8x or 10x)
- If 12 losses, then bet = basebet x2
- Then every 3 losses, then bet = previousbet x2

Reset back to basebet on win. Max bet is 1024 units.

Is that about right? If so... this code should do the job (NOTE: you need to set the basebet and maxBet values to suit your currency/bankroll):
Code:
----------------------
--
-- 6-8-10 Strat for jdquick
-- Written by HCP
--
----------------------
--Set these to match your site/currency/bankroll
basebet = 1
maxBet = 1024

----------------------
chance = 16.533
bethigh = true --bet high when true, bet low when false

enablezz=false --set to true to use high/low switching
--settings from advanced mode

enablesrc=false --set to true to use stop/reset conditions
--settings from advanced mode

firstPhaseLength = 12
stepLosses = 3

nextbet = basebet

firstPhase = true

lossStreak = 0
stopOnWin = false

function dobet()

  if (win) then
    nextbet = basebet
    firstPhase = true
    lossStreak = 0
    if (stopOnWin) then
      nextbet = 0
      stop()
    end

  else
    lossStreak = lossStreak + 1

    if lossStreak == firstPhaseLength then
      firstPhase = false
      nextbet = previousbet * multiplier
    elseif lossStreak > firstPhaseLength then
      if lossStreak % stepLosses == 0 then
        nextbet = previousbet * multiplier
      end
 
    end

  end

  if nextbet > maxBet then
    nextbet = 0
    stop()
  end

end


Post
Topic
Board Gambling discussion
Re: Seuntjie' Dice bot programmers mode discussion.
by
jdquick
on 24/10/2017, 11:54:48 UTC
hi thanks for the script it looks nice
but what language is it i cannot past and work with this code in Firefox and chrome

for the freebitco.in it must be something like this
-------------------
bconfig = {
  maxBet: 0.00001024,
  wait: 1000,
  autoexit: 0.00001,
  want: 0.000014,
  toggleHilo:false,
  startbal: 0,
  won: 0,
};
hilo = 'hi';
multiplier = 1;
rollDice = function() {
 
  if ($('#double_your_btc_bet_lose').html() !== '') {
    $('#double_your_btc_2x').click();
    multiplier = 1;
    if(bconfig.toggleHilo)toggleHiLo();
  } else {
    $('#double_your_btc_min').click();
    multiplier = 1;
  }
 
  if (parseFloat($('#balance').html()) < (parseFloat($('#double_your_btc_stake').val()) * 2) ||
    parseFloat($('#double_your_btc_stake').val()) > bconfig.maxBet) {
    console.log($('#double_your_btc_min'));
  }
  if (parseFloat($('#balance').html()) < bconfig.autoexit) {
    throw "exit";
  }
  if (parseFloat($('#balance').html()) > bconfig.want) {
        var num = parseFloat($('#balance').html());
        bconfig.want = num + 0.00000030;
        bconfig.autoexit = num - 0.00000420;
  bconfig.won++;
  var total = num - bconfig.startbal;
        console.log('Setting bconfig want to: ' + bconfig.want)
        console.log('Setting autoexit to: ' + bconfig.autoexit)
  console.log('Total won: ' + total + ' BTC')
  }
 
  $('#double_your_btc_bet_hi_button').click();
 
  setTimeout(rollDice, (multiplier * bconfig.wait) + Math.round(Math.random() * 1000));
};
 
toggleHiLo = function() {
  if (hilo === 'hi') {
    hilo = 'hi';
  } else {
    hilo = 'hi';
  }
};
var num = parseFloat($('#balance').html());
bconfig.startbal = num;
bconfig.want = num + 0.00000030;
bconfig.autoexit = num - 0.00000420;
rollDice();
---------------





I got a nice way to win very frequently

but i am unable to write a good script for it
here is my try to brake it down
So, if I understand this correctly... you are betting on 6x or 8x or 10x payout correct?

- You start with a basebet of 1 unit
- You roll until 12 losses with 6x (or 8x or 10x)
- If 12 losses, then bet = basebet x2
- Then every 3 losses, then bet = previousbet x2

Reset back to basebet on win. Max bet is 1024 units.

Is that about right? If so... this code should do the job (NOTE: you need to set the basebet and maxBet values to suit your currency/bankroll):
Code:
----------------------
--
-- 6-8-10 Strat for jdquick
-- Written by HCP
--
----------------------
--Set these to match your site/currency/bankroll
basebet = 1
maxBet = 1024

----------------------
chance = 16.533
bethigh = true --bet high when true, bet low when false

enablezz=false --set to true to use high/low switching
--settings from advanced mode

enablesrc=false --set to true to use stop/reset conditions
--settings from advanced mode

firstPhaseLength = 12
stepLosses = 3

nextbet = basebet

firstPhase = true

lossStreak = 0
stopOnWin = false

function dobet()

  if (win) then
    nextbet = basebet
    firstPhase = true
    lossStreak = 0
    if (stopOnWin) then
      nextbet = 0
      stop()
    end

  else
    lossStreak = lossStreak + 1

    if lossStreak == firstPhaseLength then
      firstPhase = false
      nextbet = previousbet * multiplier
    elseif lossStreak > firstPhaseLength then
      if lossStreak % stepLosses == 0 then
        nextbet = previousbet * multiplier
      end
 
    end

  end

  if nextbet > maxBet then
    nextbet = 0
    stop()
  end

end


Post
Topic
Board Gambling discussion
Re: Seuntjie' Dice bot programmers mode discussion.
by
jdquick
on 24/10/2017, 08:45:03 UTC
here is my try to brake it down

some statistics
normally ranges of loose 7 times of the bet is the max, but some times on a day it will hit 12 times or more
what means if you still play Martingale you're account will be zero by 2 /24
1,2,4,8,16,32,64,128,256,512,1024,2048,4048,and so on

an other trick to win most of he times, and yes i know when hitting the third you loose a less

on bet 6 (expect that the normal loose range is 6*7 so 42) i setup the table to 60 times but m advise is do not more then 7

bet on 6   loose   win      ben on 8   loose   win
1   1   5      1   1   7
1   2   4      1   2   6
1   3   3      1   3   5
1   4   2      1   4   4
1   5   1      1   5   3
1   6   0      1   6   2
1   7   -1      1   7   1
1   8   -2      1   8   0
1   9   -3      1   9   -1
1   10   -4      1   10   -2
1   11   -5      1   11   -3
1   12   -6      1   12   -4
2   14   -2      1   13   -5
2   16   -4      1   14   -6
2   18   -6      1   15   -7
4   22   2      1   16   -8
4   26   -2      2   18   -2
4   30   -6      2   20   -4
8   38   10      2   22   -6
8   46   2      2   24   -8
8   54   -6      4   28   4
16   70   26      4   32   0
16   86   10      4   36   -4
16   102   -6      4   40   -8
32   134   58      8   48   16
32   166   26      8   56   8
32   198   -6      8   64   0
64   262   122      8   72   -8
64   326   58      16   88   40
64   390   -6      16   104   24
128   518   250      16   120   8
128   646   122      16   136   -8
128   774   -6      32   168   88
256   1030   506      32   200   56
256   1286   250      32   232   24
256   1542   -6      32   264   -8
512   2054   1018      64   328   184
512   2566   506      64   392   120
512   3078   -6      64   456   56
1024   4102   2042      64   520   -8
1024   5126   1018      128   648   376
1024   6150   -6      128   776   248
2048   8198   4090      128   904   120
2048   10246   2042      128   1032   -8
2048   12294   -6      256   1288   760
4096   16390   8186      256   1544   504
4096   20486   4090      256   1800   248
4096   24582   -6      256   2056   -8
8192   32774   16378      512   2568   1528
8192   40966   8186      512   3080   1016
8192   49158   -6      512   3592   504
16384   65542   32762      512   4104   -8
16384   81926   16378      1024   5128   3064
16384   98310   -6      1024   6152   2040
32768   131078   65530      1024   7176   1016
32768   163846   32762      1024   8200   -8
32768   196614   -6      2048   10248   6136
65536   262150   131066      2048   12296   4088
65536   327686   65530      2048   14344   2040
65536   393222   -6      2048   16392   -8


Post
Topic
Board Gambling discussion
Re: Seuntjie' Dice bot programmers mode discussion.
by
jdquick
on 22/10/2017, 12:02:22 UTC
I got a nice way to win very frequently

but i am unable to write a good script for it

the key is

play at 6 or 8 or 10
play for double at a time for loose so loose 12 in a row by playing for 6
the double the start from 1 to 2
and bet half of the time 
then double again from 2 to 4 and play 3 again
again from 4  8
by a win start over again

with a max of 1024
 
most of the time it will win, and otherwise lose less

is someone can write a script with this settings for 6 or 8 time
Post
Topic
Board Gambling
Re: losing from freebitco.in
by
jdquick
on 21/10/2017, 12:14:11 UTC
I got a nice way to win very frequently

but i am unable to write a good script for it

the key is

play at 6 or 8 or 10
play for double at a time for loose so loose 12 in a row by playing for 6
the double the start from 1 to 2
and bet half of the time 
then double again from 2 to 4 and play 3 again
again from 4  8
by a win start over again

with a max of 1024
 
most of the time it will win, and otherwise lose less

is someone can write a script with this settings for 6 or 8 time