Bitcoin Forum
July 06, 2024, 03:45:43 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 [2]
21  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: May 02, 2017, 09:07:20 AM
Hello
Thanks again for all your help
I have one more question
Why when my chances are 49.50 when playing low it is ok but when changed to Hi it changes to 49.49??
22  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: April 30, 2017, 12:47:57 PM
Thank you
It looks like i need to learn a lot.
But i am on my way
23  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: April 29, 2017, 08:52:40 PM
OK thanks so to bo more specific
i want the bot to do


bet1
1 satoshi high chances 49.5%
if lose it will bet previous  amount *2 until wins
if win it wait 2 seconds go to the bet2
bet2
1 satoshi high chances 49.5%
if lose it will bet previous  amount *2 until wins
if win it wait 2 seconds go to the bet2
bet3
1 satoshi low chances 49.5%
if lose it will bet previous  amount *2 until wins
if win it wait 2 seconds go to the bet4
bet4
1 satoshi low chances 49.5%
if lose it will bet previous  amount *2 until wins
if win it wait 2 seconds go to the bet5
bet5
1 satoshi high chances 49.5%
if lose it will bet previous  amount *2 until wins
if win it wait 2 seconds go to the bet6
bet6
1 satoshi high chances 49.5%
if lose it will bet previous  amount *2 until wins
if win it wait 2 seconds go to the bet7
bet7
1 satoshi high chances 49.5%
if lose it will bet previous  amount *2 until wins
if win it wait 2 seconds go to the bet8
bet8
1 satoshi low chances 49.5%
if lose it will bet previous  amount *2 until wins
if win it wait 2 seconds go to the bet9
bet9
1 satoshi low chances 49.5%
if lose it will bet previous  amount *2 until wins
if win it wait 2 seconds go to the bet10
bet10
1 satoshi high chances 49.5%
if lose it will bet previous  amount *2 until wins
if win
wait 10 seconds
check if the profit is higher than 0.001
if yes stop
if not go to bet 1


I am not even trying to put it into a code it sound so simple
hihi
hihi
hihihi
lololo
but now it is getting so complicated.

Anyone could write it so i could see how it should look like?
24  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: April 29, 2017, 12:51:56 AM
Ok so i want it to be
Lo
Lo
Hi
Hi
Lo
Lo
Lo
Hi
Hi
Hi

multiply on lose going to the next bet on win
I know that what i have is not working but i need to know why?
Code:
chance=7.14
multiplier=1.1555
base=0.00000001
bethigh = false
function dobet()
if !win then
else
nextbet=previousbet*multiplier
else
----What to put there if i want tit to be this
chance=7.14
multiplier=1.1555
base=0.00000001
bethigh = false
if !win then
nextbet=previousbet*multiplier
else
chance=7.14
multiplier=1.1555
base=0.00000001
bethigh = false
if !win then
nextbet=previousbet*multiplier
else
chance=7.14
multiplier=1.1555
base=0.00000001
bethigh = true
if !win then
nextbet=previousbet*multiplier
else
chance=7.14
multiplier=1.1555
base=0.00000001
bethigh = true
if !win then
nextbet=previousbet*multiplier
chance=7.14
multiplier=1.1
base=0.00000001
bethigh = false
if !win then
nextbet=previousbet*multiplier
else
chance=7.14
multiplier=1.1555
base=0.00000001
bethigh = false
if !win then
nextbet=previousbet*multiplier
else
chance=7.14
multiplier=1.1555
base=0.00000001
bethigh = false
if !win then
nextbet=previousbet*multiplier
else
chance=7.14
multiplier=1.1555
base=0.00000001
bethigh = true
if !win then
nextbet=previousbet*multiplier chance=7.14
multiplier=1.1555
base=0.00000001
bethigh = true
if !win then
nextbet=previousbet*multiplier chance=7.14
multiplier=1.1555
base=0.00000001
bethigh = true
if !win then
nextbet=previousbet*multiplier
---- now i want it to go to bet 1
end
end

dobet runs after EVERY bet.  So if your first check for !win is true, it's true for all of your checks.  It doesn't do the first check and roll, then do the second and roll.  

So your code just needs to check if !win. once.  You can then use other variables to keep track of where you are in your sequence.  

Ok so i want it to be
Lo
Lo
Hi
Hi
Lo
Lo
Lo
Hi
Hi
Hi
    Does this mean you want the bot to bet on the low side 2 times then the high side 2 times then low 3 then high 3, then back to the top?  

You'll have to look this up.  But there is a way to create an array in LUA  it might be something like
betseq = {"Lo","Lo","Hi","Hi","Lo" etc......}

then make  rollcounter = 1
and
bethigh = false

These would go in the beginning before the dobet function.  

then right after dobet
rollcounter += 1  //bump roll counter to point to the next place in the array.

if betseq[rollcounter] == "Lo" then
   bethigh = false
else
   bethigh = true
end
if rollcounter == 10 then  //reset roll counter when you hit the end of the array.
   rollcounter = 0
end






Thanks for some pointer but now it is way over my level.
I wonder if i will put the counter would it not count lost multiplied games to?
25  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: April 28, 2017, 11:21:58 PM
Ok so i want it to be
Lo
Lo
Hi
Hi
Lo
Lo
Lo
Hi
Hi
Hi

multiply on lose going to the next bet on win
I know that what i have is not working but i need to know why?
Code:
chance=7.14
multiplier=1.1555
base=0.00000001
bethigh = false
function dobet()
if !win then
else
nextbet=previousbet*multiplier
else
----What to put there if i want tit to be this
chance=7.14
multiplier=1.1555
base=0.00000001
bethigh = false
if !win then
nextbet=previousbet*multiplier
else
chance=7.14
multiplier=1.1555
base=0.00000001
bethigh = false
if !win then
nextbet=previousbet*multiplier
else
chance=7.14
multiplier=1.1555
base=0.00000001
bethigh = true
if !win then
nextbet=previousbet*multiplier
else
chance=7.14
multiplier=1.1555
base=0.00000001
bethigh = true
if !win then
nextbet=previousbet*multiplier
chance=7.14
multiplier=1.1
base=0.00000001
bethigh = false
if !win then
nextbet=previousbet*multiplier
else
chance=7.14
multiplier=1.1555
base=0.00000001
bethigh = false
if !win then
nextbet=previousbet*multiplier
else
chance=7.14
multiplier=1.1555
base=0.00000001
bethigh = false
if !win then
nextbet=previousbet*multiplier
else
chance=7.14
multiplier=1.1555
base=0.00000001
bethigh = true
if !win then
nextbet=previousbet*multiplier chance=7.14
multiplier=1.1555
base=0.00000001
bethigh = true
if !win then
nextbet=previousbet*multiplier chance=7.14
multiplier=1.1555
base=0.00000001
bethigh = true
if !win then
nextbet=previousbet*multiplier
---- now i want it to go to bet 1
end
end
26  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: April 28, 2017, 04:38:44 PM
Thanks guys for all help now i got another idea
how to do the script that will play something like that
Can anyone just write ma 2 sequences to demonstrate how it goes from 1 bet to another?

1xHi
if lose multiply *2
if wins go to next step
1xHi
if lose multiply *2
if wins go to next step
only 2 times now
1Lo
if lose multiply *2
if wins go to next step
1Lo
if lose multiply *2
if wins go to next step

again only 2 times
 and now
1xHi
3xLo

same principles
and start the loop again?
27  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: April 27, 2017, 08:06:21 PM
Another idea of the script 39.6
bet 1sat
on win decrise 10%
on loose increase 100%
reset to the base and start from 1sat  when wins 10 000 sat

so how to reset it once reaches that 10k sat from the base bet and do it each loop?
I got to this but i have an error insufficient funds it is trying to bet some large amounts like 8000sat
Also, i do not know how to make the first bet base bet not the previous one as it is different it is from the previous bet in a different strategy.

Code:
chance=39.6

base=0.00000001
function dobet()
if win then
nextbet=previousbet*0.9
else
nextbet=previousbet*2
end
if profit > 0.00001000 then
resetstats()
print("Reset")
end
end

28  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: April 27, 2017, 05:31:45 PM
Hello
I want to start to use a script instead of using dicebot manually and have this idea to create the script that i need some help to create

The idea is to have a script that will
bet1
1 satoshi high chances 49.5%
if lose it will bet amount *3
if win it wait 2 seconds go to the bet2
bet2
3 satoshi high chances 39.06%
if  lose beta amount *0.48
if win  wait 3 seconds go to bet3
bet3
1000 satoshi low chances 80%
if lose bet amount *5
if win  wait 4 seconds go to next bet
bet4
10 satoshi low chances 7.14
if lose bet amount *25%
if win
wait 10 seconds
check if the profit is higher than 0.001 and stop
if not go to bet 1

Any help? Huh
Please
29  Economy / Gambling / Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts! on: April 27, 2017, 05:20:01 PM
Thank you for the answer
I was under impression that waiting simulates more human behavior so maybe does not attract system attention?
I will ask that question on other address as you have suggested.
30  Economy / Gambling / Re: HeyYouGuys - High Performance DiceBot Script - Version 1.4 JACKPOT Edition on: April 27, 2017, 05:13:48 PM
Registered with ref and testing 1.4 Cheesy
And does it work or have you already lost?
31  Economy / Gambling / Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts! on: April 27, 2017, 04:46:24 PM
Hello
I need to write a simple script for DiceBot but need some help
The idea is to have a script that will
bet1
1 satoshi high chances 49.5%
if lose it will bet amount *3
if win it wait 2 seconds go to the bet2
bet2
3 satoshi high chances 39.06%
if  lose beta amount *0.48
if win  wait 3 seconds go to bet3
bet3
1000 satoshi low chances 80%
if lose bet amount *5
if win  wait 4 seconds go to next bet
bet4
10 satoshi low chances 7.14
if lose bet amount *25%
if win
wait 10 seconds
check if the profit is higher than 0.001 and stop
if not go to bet 1

Any help? Huh
Please
Pages: « 1 [2]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!