Pages:
Author

Topic: Seuntjie' Dice bot programmers mode discussion. - page 41. (Read 125399 times)

sr. member
Activity: 378
Merit: 250
have someone tried some strategy using AI, i think that would be interesting, any one?some prediction algorythm?
HCP
legendary
Activity: 2086
Merit: 4361
and correct me if im wrong, but the chances of 1-2-3-4... red streak are not the same, no?
The probability for each individual roll is the same (as long as your "chance" is not being modified)... so on a 50% chance, every time you roll, there is a 50% chance you will win.

However, the chance of a streak occurring is a conditional probability, because it needs the previous results to be a specific way for there to a streak in the first place. So your chances of getting say 5 losses in a row on a 50% chance is 0.5^5, whereas 10 losses is 0.5^10.

However, once you are actually IN a streak, the odds that it will end on the next roll are still very much 50%.

probability is fun! Wink
full member
Activity: 148
Merit: 100
one more question...
i want print currentprofit but i see this -5E-07  why?
full member
Activity: 148
Merit: 100
tnx a lot!
legendary
Activity: 1717
Merit: 1125
tnx

but if i want loop a script???

take a look at this article describing how the programmer mode works: https://steemit.com/dicebot/@seuntjie/dicebot-programmer-mode-tutorial-02-process
full member
Activity: 148
Merit: 100
tnx

but if i want loop a script???
legendary
Activity: 1717
Merit: 1125
hi,

it's possible auto restart after stop()...like this?

Code:

if (myprofit >= 0.00001000 ) then
stop()
print('wow')
myprofit = 0
start()     <-----------------------
end



 
 

No. If you stop a script, it remains stopped. It should never be necessary to stop a script and restart it.
full member
Activity: 148
Merit: 100
hi,

it's possible auto restart after stop()...like this?

Code:

if (myprofit >= 0.00001000 ) then
stop()
print('wow')
myprofit = 0
start()     <-----------------------
end



 
 
newbie
Activity: 29
Merit: 0
and correct me if im wrong, but the chances of 1-2-3-4... red streak are not the same, no?
newbie
Activity: 29
Merit: 0
It might be, but in milllions of hands, i've not seen 2 streaks of 10 reds consecutive plaing at 50%, si i still want to try it that way Wink
legendary
Activity: 1344
Merit: 1251
Hi everyone!

I have modified this script a little bit https://bot.seuntjie.com/scripts.aspx?id=39  However, would it be possible to program the script to automatically change the lossStartMult to 7 or 8 any lower number when the streak of 10 reds happens? Any help will be appreciatted!

-------------------------------------------


I didn't write the script, so I'm not 100% sure what it does, but you can change lossStartMult = 10 to anything you would like, It looks like it will only increase the next 5 bets regardless what you set that to.  

I must not have comprehended what you were asking.. Smiley  HCP did much better then I did.  But changing lossStartMult after 10 losses won't do anything.  MaxLosses is already set in the init section, so that won't be changed.

    It would only come into effect the next time you get into a losing streak.  But I'm not sure what you were trying to accomplish. 


Thanks everyone for your inputs. What the script does is: bets 0.0000X satoshis (defined on base) and then after a long streak of reds it starts betting. After 10 red streak at 50% chance, it will multiply basebet*100 and then double the bet for 5 more rounds. After the 15 streak red it will multiply not by 2.1 but by 2.5 and chance at 55% until winning.

A 10 red streak is not uncommon, but it takes a lot of hands to happen. My idea is that the script would automatically change the losstartmult to 7-8 for example after achieving a 10 red streak (and winning) because the chance of another 10 red streak in the following (let's say 10,000 hands) are extremely low.

So far i've been  earning profits all the time with the script. Here u have a picture of it, playing at 60% chance and a 6 red streak lossstartmult.



I guess that automatically change the losstrmult after long red streaks are achieved will even make it more profitable.

I'm sorry to break your dreams but...
No. Basically no.
Especially this part: "because the chance of another 10 red streak in the following (let's say 10,000 hands) are extremely low. "
nooooooooooo... Not at all. That's why you're going to lose EVERYTHING. The chance of another 10 red streak in the following are EXACTLY the same as before the red streak...
newbie
Activity: 29
Merit: 0
Yes exactly, it's that modification. Playing at 60% and 6 streak.
sr. member
Activity: 434
Merit: 250
Hi everyone!

I have modified this script a little bit https://bot.seuntjie.com/scripts.aspx?id=39  However, would it be possible to program the script to automatically change the lossStartMult to 7 or 8 any lower number when the streak of 10 reds happens? Any help will be appreciatted!

-------------------------------------------


I didn't write the script, so I'm not 100% sure what it does, but you can change lossStartMult = 10 to anything you would like, It looks like it will only increase the next 5 bets regardless what you set that to.  

I must not have comprehended what you were asking.. Smiley  HCP did much better then I did.  But changing lossStartMult after 10 losses won't do anything.  MaxLosses is already set in the init section, so that won't be changed.

    It would only come into effect the next time you get into a losing streak.  But I'm not sure what you were trying to accomplish. 


Thanks everyone for your inputs. What the script does is: bets 0.0000X satoshis (defined on base) and then after a long streak of reds it starts betting. After 10 red streak at 50% chance, it will multiply basebet*100 and then double the bet for 5 more rounds. After the 15 streak red it will multiply not by 2.1 but by 2.5 and chance at 55% until winning.

A 10 red streak is not uncommon, but it takes a lot of hands to happen. My idea is that the script would automatically change the losstartmult to 7-8 for example after achieving a 10 red streak (and winning) because the chance of another 10 red streak in the following (let's say 10,000 hands) are extremely low.

So far i've been  earning profits all the time with the script. Here u have a picture of it, playing at 60% chance and a 6 red streak lossstartmult.



I guess that automatically change the losstrmult after long red streaks are achieved will even make it more profitable.

Is the screenshot you posted using the modifications you previously posted plus the additional change of "playing at 60% chance and a 6 red streak lossstartmult."?
newbie
Activity: 29
Merit: 0
Hi everyone!

I have modified this script a little bit https://bot.seuntjie.com/scripts.aspx?id=39  However, would it be possible to program the script to automatically change the lossStartMult to 7 or 8 any lower number when the streak of 10 reds happens? Any help will be appreciatted!

-------------------------------------------


I didn't write the script, so I'm not 100% sure what it does, but you can change lossStartMult = 10 to anything you would like, It looks like it will only increase the next 5 bets regardless what you set that to.  

I must not have comprehended what you were asking.. Smiley  HCP did much better then I did.  But changing lossStartMult after 10 losses won't do anything.  MaxLosses is already set in the init section, so that won't be changed.

    It would only come into effect the next time you get into a losing streak.  But I'm not sure what you were trying to accomplish. 


Thanks everyone for your inputs. What the script does is: bets 0.0000X satoshis (defined on base) and then after a long streak of reds it starts betting. After 10 red streak at 50% chance, it will multiply basebet*100 and then double the bet for 5 more rounds. After the 15 streak red it will multiply not by 2.1 but by 2.5 and chance at 55% until winning.

A 10 red streak is not uncommon, but it takes a lot of hands to happen. My idea is that the script would automatically change the losstartmult to 7-8 for example after achieving a 10 red streak (and winning) because the chance of another 10 red streak in the following (let's say 10,000 hands) are extremely low.

So far i've been  earning profits all the time with the script. Here u have a picture of it, playing at 60% chance and a 6 red streak lossstartmult.

https://i.imgur.com/HE5Xqa4.png

I guess that automatically change the losstrmult after long red streaks are achieved will even make it more profitable.
hero member
Activity: 1372
Merit: 512
Hi, is there any option to log all rolls into a txt or something like that?

Thanks!

Rolls are logged in a SQL-lite database (dicebot.db) and you can open it with http://sqlitebrowser.org/

Awesome! thanks a lot Dre1982!

You're welcome. I just found out myself.  Grin Just experimenting around now in programmer mode.
HCP
legendary
Activity: 2086
Merit: 4361
Hello anyone get profit using this bot program for playing dice games?? i search in google there many people tell, they can get big profit by using bot in dice game.
What you need to understand is that this bot is not a "magic money making device"... It is effectively just like playing Dice on the individual sites manually (or using autobet)... The added value comes from the fact that it allows you to set up a whole bunch of different settings that a lot of sites don't provide and allows you to automate a bunch of more complicated things...

like raise bet for 5 losses, then decrease twice, then increase until bet > X then reset to basebet etc... Or it will allow you to run more complex strategies than a simple martingale, like Labouchere etc...

It isn't some sort of "cheat" or "hack" and there is no guarantee you will win using this bot...
legendary
Activity: 1680
Merit: 1001
Hello anyone get profit using this bot program for playing dice games?? i search in google there many people tell, they can get big profit by using bot in dice game.
Sometimes i made nice profit, but sometimes i lost when i'm using this bot. This bot doesn't guarantee you will get or make big profit (If they made big profit from this bot, they were just lucky). This bot only make your bets become easier because you don't need to play it manually, you can gamble when you sleep too.
legendary
Activity: 1007
Merit: 1000
Hi everyone!

I have modified this script a little bit https://bot.seuntjie.com/scripts.aspx?id=39  However, would it be possible to program the script to automatically change the lossStartMult to 7 or 8 any lower number when the streak of 10 reds happens? Any help will be appreciatted!

--------------------------------------------
--@ Start User Vars
initbalance=balance
base = 0.000010
lossStartMult = 10
bethigh = false
randomHighLow = true
useDebugInfo = false
--@ End User Vars

--@ Start Script Vars
stopnow = false
lossCount = 0
maxLosses = lossStartMult + 5
chance = 50.50
curbet = base
nextbet = base
--@ End Script Vars

--@ Start Debug Vars
biggestLossStreak = 0
biggestBet = 0
--@ End Debug Vars

function dobet()
  if (lossStartMult > 20) then
    print("\nVariable \"lossStartMult\" must be less than 20\n")
    stop()
  end

  if (randomHighLow) then
    if (math.random() < .1) then bethigh = !bethigh end
  end
  
  if (stopnow and win) then
    debugInfo()
    stop()
  end
  
  if (!win) then
    lossCount += 1
  else
    lossCount = 0
  end
  
  if (lossCount < lossStartMult) then
    chance = 50.50
    curbet = base
    nextbet = curbet
  end
  
  if (lossCount == lossStartMult) then
    curbet = base * 100
    chance = 50
    nextbet = curbet
  end

  if (lossCount > lossStartMult and lossCount < maxLosses) then
    curbet = curbet * 2.1
    chance = 50
    nextbet = curbet
  end

  if (lossCount == maxLosses) then
    chance = 55
    curbet = curbet * 2.5
    nextbet = curbet
  end
  
  if (lossCount > maxLosses) then
    curbet = curbet * 2.5
    nextbet = curbet
  end
  
  if (lossCount > biggestLossStreak) then
    biggestLossStreak = lossCount
  end
  
  if (nextbet > biggestBet) then
    biggestBet = nextbet
  end

end

-------------------------------------------


I didn't write the script, so I'm not 100% sure what it does, but you can change lossStartMult = 10 to anything you would like, It looks like it will only increase the next 5 bets regardless what you set that to.  

I must not have comprehended what you were asking.. Smiley  HCP did much better then I did.  But changing lossStartMult after 10 losses won't do anything.  MaxLosses is already set in the init section, so that won't be changed.

    It would only come into effect the next time you get into a losing streak.  But I'm not sure what you were trying to accomplish. 
full member
Activity: 228
Merit: 100
Hello anyone get profit using this bot program for playing dice games?? i search in google there many people tell, they can get big profit by using bot in dice game.
HCP
legendary
Activity: 2086
Merit: 4361
Hi everyone!

I have modified this script a little bit https://bot.seuntjie.com/scripts.aspx?id=39  However, would it be possible to program the script to automatically change the lossStartMult to 7 or 8 any lower number when the streak of 10 reds happens? Any help will be appreciatted!
Seems like the script is already (attempting) to track the lossCount, so that shouldn't, in theory, be a problem...

EDIT:
Huh, apparently the bot DOES support the += syntax Tongue

Anyway, once that is fixed, you should be able to just do something like this, underneath where you are incrementing lossCount:
  
Quote
 if (lossCount == 10) then
    -- set lossStartMult to X
    lossStartMult = 7 -- or 8, or whatever
  end

DISCLAIMER: I haven't actually bothered to work out all the logic of your script, so I'm not saying that this will magically achieve what it is you're attempting to achieve with your script modifications Wink
Pages:
Jump to: