Bitcoin Forum
April 24, 2024, 09:56:02 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 [156] 157 158 159 160 161 162 163 164 165 166 167 168 »
  Print  
Author Topic: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts!  (Read 274492 times)
SM23031997
Hero Member
*****
Offline Offline

Activity: 1092
Merit: 582


View Profile
January 11, 2020, 09:32:46 PM
 #3101

After the first instance, the script went into making basebet one after another. We need to do something else.
2 options...

First option: change it to "if currentstreak == -50 then"

However, if the loss streak continues to 100+, it won't reset again on the next "50", it'll just keep going! Shocked


Second option: Use your own counter like I put in the 2nd code snippet. (I edited that in after my initial post, so you might not have seen it)
Hi, HCP
thanks for your help. it worked at last.
Here is the working code.
Code:
chance  = math.random(10,25)
bethigh = true
basebet = 0.0000001
nextbet = basebet
count   = 0

function dobet()

    chance = math.random(25,35)

if (win) then
   count   = 0
   nextbet = basebet
   bethigh = !bethigh
elseif (count < 10) then
    nextbet = previousbet * 1.05  
    count   = count + 1
else
    nextbet = basebet
    count   = 0
end

end

I was trying to use the extra variable to control that but it wasn't working then. I even tried calling a function in the function that too wasn't working at that time.
Thanks for your help again.
1713995762
Hero Member
*
Offline Offline

Posts: 1713995762

View Profile Personal Message (Offline)

Ignore
1713995762
Reply with quote  #2

1713995762
Report to moderator
If you want to be a moderator, report many posts with accuracy. You will be noticed.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1713995762
Hero Member
*
Offline Offline

Posts: 1713995762

View Profile Personal Message (Offline)

Ignore
1713995762
Reply with quote  #2

1713995762
Report to moderator
seuntjie (OP)
Legendary
*
Offline Offline

Activity: 1717
Merit: 1125



View Profile WWW
January 12, 2020, 04:36:48 PM
Last edit: January 12, 2020, 06:27:32 PM by seuntjie
Merited by HCP (2)
 #3102

Hcp you had a little logic error in your original script.

Code:
if currentstreak>-50 then
--reset logic here

This would trigger for every bet up until you have a losing streak of 50 (-10 is larger than -50, 10 is also larger than -50).

I would also suggest to use the modulus operator instead of using your own counter when you want to do a "every x" something. It's slightly fewer possibilities for errors to occur.

I think the simplest version of this code would be:

Code:
chance  = math.random(10,25)
bethigh = true
basebet = 0.0000001
nextbet = basebet

function dobet()
chance = math.random(25,35)

if (win) then --If it's a win, reset and switch
   nextbet = basebet
   bethigh = !bethigh
elseif (currentstreak%10==0) then --every time you've lost 10 bets in a row, reset
    nextbet = basebet
else--if it's any other loss, mutliply by the multiplier
    nextbet = previousbet * 1.05
end

end


An even easier alternative is to just set everything up in the advanced mode with exception to the random chance, and then call the martingale function.
So set up your basebet, high/low switch and reset up in the advanced mode and then use this as your script:

Code:
chance  = math.random(10,25)
bethigh = true
basebet = 0.0000001
nextbet = basebet

function dobet()
chance = math.random(25,35)
nexbet=Martingale(win)
end

Note, I didn't test any of this code, so it's possible I might have made a typo/miscased a function or variable.

SM23031997
Hero Member
*****
Offline Offline

Activity: 1092
Merit: 582


View Profile
January 12, 2020, 06:45:29 PM
 #3103

Hi seuntjie,

You won't believe but i have once reached 8.7 mbtc from just 5k Satoshi before busting. Could be pure luck but still managed to keep things in profit. All because of your awesome bot.

Best part i was playing on freebitco.in all the time.

When we can expect an update as primedice just added a new token (TRX).
s0lidus
Full Member
***
Offline Offline

Activity: 910
Merit: 118


CryptoGames: Revamped Games, Multiple Coins


View Profile WWW
January 12, 2020, 06:47:38 PM
 #3104

Hi seuntjie,

You won't believe but i have once reached 8.7 mbtc from just 5k Satoshi before busting. Could be pure luck but still managed to keep things in profit. All because of your awesome bot.

Best part i was playing on freebitco.in all the time.

When we can expect an update as primedice just added a new token (TRX).

Maybe you should share your settings/strategy, cuz that's quite a boost! (apart from the busting part, ofc.) Wink

HCP
Legendary
*
Offline Offline

Activity: 2086
Merit: 4316

<insert witty quote here>


View Profile
January 12, 2020, 07:50:24 PM
 #3105

Hcp you had a little logic error in your original script.
LoL... this is why I shouldn't write code before my morning coffee Tongue Roll Eyes

Thanks for the heads-up, I've modified the post.


Quote
I would also suggest to use the modulus operator instead of using your own counter when you want to do a "every x" something. It's slightly fewer possibilities for errors to occur.
Yeah, that's a great idea... I always forget about using modulus... it's perfectly suited for simple situations like this! Wink

█████████████████████████
████▐██▄█████████████████
████▐██████▄▄▄███████████
████▐████▄█████▄▄████████
████▐█████▀▀▀▀▀███▄██████
████▐███▀████████████████
████▐█████████▄█████▌████
████▐██▌█████▀██████▌████
████▐██████████▀████▌████
█████▀███▄█████▄███▀█████
███████▀█████████▀███████
██████████▀███▀██████████
█████████████████████████
.
BC.GAME
▄▄░░░▄▀▀▄████████
▄▄▄
██████████████
█████░░▄▄▄▄████████
▄▄▄▄▄▄▄▄▄██▄██████▄▄▄▄████
▄███▄█▄▄██████████▄████▄████
███████████████████████████▀███
▀████▄██▄██▄░░░░▄████████████
▀▀▀█████▄▄▄███████████▀██
███████████████████▀██
███████████████████▄██
▄███████████████████▄██
█████████████████████▀██
██████████████████████▄
.
..CASINO....SPORTS....RACING..
█░░░░░░█░░░░░░█
▀███▀░░▀███▀░░▀███▀
▀░▀░░░░▀░▀░░░░▀░▀
░░░░░░░░░░░░
▀██████████
░░░░░███░░░░
░░█░░░███▄█░░░
░░██▌░░███░▀░░██▌
░█░██░░███░░░█░██
░█▀▀▀█▌░███░░█▀▀▀█▌
▄█▄░░░██▄███▄█▄░░▄██▄
▄███▄
░░░░▀██▄▀


▄▄████▄▄
▄███▀▀███▄
██████████
▀███▄░▄██▀
▄▄████▄▄░▀█▀▄██▀▄▄████▄▄
▄███▀▀▀████▄▄██▀▄███▀▀███▄
███████▄▄▀▀████▄▄▀▀███████
▀███▄▄███▀░░░▀▀████▄▄▄███▀
▀▀████▀▀████████▀▀████▀▀
anunnaki1202
Jr. Member
*
Offline Offline

Activity: 78
Merit: 1


View Profile
January 12, 2020, 11:40:36 PM
 #3106

How do one save a system to share it I might got something very interesting into Fibonacci progression starts from very low bet 0.00000001 and making around 0.001 in 24h can some days making more.

But need to have a balance of 2.0

I let it run like 2 weeks nonstop and did not lose
HCP
Legendary
*
Offline Offline

Activity: 2086
Merit: 4316

<insert witty quote here>


View Profile
January 13, 2020, 12:38:11 AM
 #3107

Was it a script in "Programmer" mode? Or was it just settings you configured in "Advanced" mode?

If it's a script, you can just copy/paste the script into a text document... if it is settings you have configured in "Advanced" mode, you should be able to use "File -> Export" and save it as "my_settings.txt" etc. I don't think that export file will save an "sensitive" info like username/password etc... But maybe open it with a text editor and check it out before you give it to anyone Wink

█████████████████████████
████▐██▄█████████████████
████▐██████▄▄▄███████████
████▐████▄█████▄▄████████
████▐█████▀▀▀▀▀███▄██████
████▐███▀████████████████
████▐█████████▄█████▌████
████▐██▌█████▀██████▌████
████▐██████████▀████▌████
█████▀███▄█████▄███▀█████
███████▀█████████▀███████
██████████▀███▀██████████
█████████████████████████
.
BC.GAME
▄▄░░░▄▀▀▄████████
▄▄▄
██████████████
█████░░▄▄▄▄████████
▄▄▄▄▄▄▄▄▄██▄██████▄▄▄▄████
▄███▄█▄▄██████████▄████▄████
███████████████████████████▀███
▀████▄██▄██▄░░░░▄████████████
▀▀▀█████▄▄▄███████████▀██
███████████████████▀██
███████████████████▄██
▄███████████████████▄██
█████████████████████▀██
██████████████████████▄
.
..CASINO....SPORTS....RACING..
█░░░░░░█░░░░░░█
▀███▀░░▀███▀░░▀███▀
▀░▀░░░░▀░▀░░░░▀░▀
░░░░░░░░░░░░
▀██████████
░░░░░███░░░░
░░█░░░███▄█░░░
░░██▌░░███░▀░░██▌
░█░██░░███░░░█░██
░█▀▀▀█▌░███░░█▀▀▀█▌
▄█▄░░░██▄███▄█▄░░▄██▄
▄███▄
░░░░▀██▄▀


▄▄████▄▄
▄███▀▀███▄
██████████
▀███▄░▄██▀
▄▄████▄▄░▀█▀▄██▀▄▄████▄▄
▄███▀▀▀████▄▄██▀▄███▀▀███▄
███████▄▄▀▀████▄▄▀▀███████
▀███▄▄███▀░░░▀▀████▄▄▄███▀
▀▀████▀▀████████▀▀████▀▀
anunnaki1202
Jr. Member
*
Offline Offline

Activity: 78
Merit: 1


View Profile
January 13, 2020, 01:06:30 AM
 #3108

Is just Advanced mode i saved as a file i look inside and no logins details in it.  Grin

But is more easy with 2 screenshots than the file itself
HCP
Legendary
*
Offline Offline

Activity: 2086
Merit: 4316

<insert witty quote here>


View Profile
January 13, 2020, 01:12:49 AM
 #3109

But is more easy with 2 screenshots than the file itself
Yes and No...

With screenshots, someone has to go through and tick box, untick box, type in numbers etc... with the file, they can use "File -> Import" and it should set everything up instantly.

█████████████████████████
████▐██▄█████████████████
████▐██████▄▄▄███████████
████▐████▄█████▄▄████████
████▐█████▀▀▀▀▀███▄██████
████▐███▀████████████████
████▐█████████▄█████▌████
████▐██▌█████▀██████▌████
████▐██████████▀████▌████
█████▀███▄█████▄███▀█████
███████▀█████████▀███████
██████████▀███▀██████████
█████████████████████████
.
BC.GAME
▄▄░░░▄▀▀▄████████
▄▄▄
██████████████
█████░░▄▄▄▄████████
▄▄▄▄▄▄▄▄▄██▄██████▄▄▄▄████
▄███▄█▄▄██████████▄████▄████
███████████████████████████▀███
▀████▄██▄██▄░░░░▄████████████
▀▀▀█████▄▄▄███████████▀██
███████████████████▀██
███████████████████▄██
▄███████████████████▄██
█████████████████████▀██
██████████████████████▄
.
..CASINO....SPORTS....RACING..
█░░░░░░█░░░░░░█
▀███▀░░▀███▀░░▀███▀
▀░▀░░░░▀░▀░░░░▀░▀
░░░░░░░░░░░░
▀██████████
░░░░░███░░░░
░░█░░░███▄█░░░
░░██▌░░███░▀░░██▌
░█░██░░███░░░█░██
░█▀▀▀█▌░███░░█▀▀▀█▌
▄█▄░░░██▄███▄█▄░░▄██▄
▄███▄
░░░░▀██▄▀


▄▄████▄▄
▄███▀▀███▄
██████████
▀███▄░▄██▀
▄▄████▄▄░▀█▀▄██▀▄▄████▄▄
▄███▀▀▀████▄▄██▀▄███▀▀███▄
███████▄▄▀▀████▄▄▀▀███████
▀███▄▄███▀░░░▀▀████▄▄▄███▀
▀▀████▀▀████████▀▀████▀▀
seuntjie (OP)
Legendary
*
Offline Offline

Activity: 1717
Merit: 1125



View Profile WWW
January 13, 2020, 05:59:09 AM
 #3110

Is just Advanced mode i saved as a file i look inside and no logins details in it.  Grin

But is more easy with 2 screenshots than the file itself

Also, you can share settings files at https://bot.seuntjie.com/settings.aspx once you've created an account

anunnaki1202
Jr. Member
*
Offline Offline

Activity: 78
Merit: 1


View Profile
January 13, 2020, 01:26:03 PM
Last edit: January 13, 2020, 03:54:20 PM by anunnaki1202
 #3111

Alright i upload it into your site seuntjie if anyone wants a win/win system can get it from there.

Or get it from here http://www.mediafire.com/file/789x4f89itg53nd/Fibonacci_%2526_Anunnaki/file
arisatox
Member
**
Offline Offline

Activity: 309
Merit: 12


View Profile WWW
January 14, 2020, 09:56:00 AM
 #3112

hi seuntjie, i saw the latest version of the bot and it showed a fix for wolf.bet but login still seems to not be working and it wasn't noted on the changelist so i was wondering if that should be fixed already or if it is still pending

Check out JacksClub.io, a 1% house edge casino that offers great rewards, including free cash and cars!

LuckyBird

ff
seuntjie (OP)
Legendary
*
Offline Offline

Activity: 1717
Merit: 1125



View Profile WWW
January 14, 2020, 10:03:03 AM
 #3113

hi seuntjie, i saw the latest version of the bot and it showed a fix for wolf.bet but login still seems to not be working and it wasn't noted on the changelist so i was wondering if that should be fixed already or if it is still pending

The login issue is due to them having cloudflare on high at the moment. Nothing I can do to fix that. Once whomever is trying to attack them lets off a bit and they can lower the protection, DiceBot will work again.

anunnaki1202
Jr. Member
*
Offline Offline

Activity: 78
Merit: 1


View Profile
January 15, 2020, 03:42:39 PM
 #3114

Thanks for the update seuntjie  Cool and is a little bit faster on the bets like 25% faster than previous version of the bot
housework
Newbie
*
Offline Offline

Activity: 48
Merit: 0


View Profile
January 16, 2020, 05:47:07 PM
 #3115

here uploaded db file its ~280mb, but its only 800k hands, its something like last 40hours

https://easyupload.io/2ccf3i

on this period watch last ~50-100k bets there was "that kind of thing" what im talking. (if im remember right)

btw, if you need I can help you track that, I can "hunt" another times it, if there is need in that, and you can't see nothing in this period.

Waiting for your answer, Seuntjie! Smiley

Seuntjie, you still dont anwered me, and forget maybe?! Huh
Seuntjie, you still forget to answer and check something?!
seuntjie (OP)
Legendary
*
Offline Offline

Activity: 1717
Merit: 1125



View Profile WWW
January 17, 2020, 06:39:14 AM
 #3116

here uploaded db file its ~280mb, but its only 800k hands, its something like last 40hours

https://easyupload.io/2ccf3i

on this period watch last ~50-100k bets there was "that kind of thing" what im talking. (if im remember right)

btw, if you need I can help you track that, I can "hunt" another times it, if there is need in that, and you can't see nothing in this period.

Waiting for your answer, Seuntjie! Smiley

Seuntjie, you still dont anwered me, and forget maybe?! Huh
Seuntjie, you still forget to answer and check something?!

I haven't forgotten, I've just been busy.

I did do some tests on the site though. I left 2 accounts betting at the site, one using a fixed RNG for seed and one not for 24 hours. One account did around 900k bets and the other around 700k. During that time I got a max losing streak of 19 losses at 49.5% and a max winning streak of 20 at 49.5% one the 900k account and max losing streak of 19 (twice) and a max winning streak of 17 or the 700k account. I had no skipped or repeated nonces on either account. I used a fixed verifier for the site to check thousands of bets, especially the bets where I had a losing streak and all of the bets verified correctly.

If there are skipped nonces in the bet history database for DiceBot, it's probably because the SQLite interface can't keep up with the speed of the bets when you're close to their server. Since the all time graphs draw from the database, that explains why the graph might not show the same number of bets as your nonce. I haven't had time to verify this using either your or one of my own DBs. It's also very possible that with the time it takes to draw charts with hundreds of thousands points and because it's multi threaded, the bot is suppressing errors that arises when trying to add points to the charts.

housework
Newbie
*
Offline Offline

Activity: 48
Merit: 0


View Profile
January 17, 2020, 02:12:12 PM
Last edit: January 17, 2020, 06:37:44 PM by housework
 #3117

here uploaded db file its ~280mb, but its only 800k hands, its something like last 40hours

https://easyupload.io/2ccf3i

on this period watch last ~50-100k bets there was "that kind of thing" what im talking. (if im remember right)

btw, if you need I can help you track that, I can "hunt" another times it, if there is need in that, and you can't see nothing in this period.

Waiting for your answer, Seuntjie! Smiley

Seuntjie, you still dont anwered me, and forget maybe?! Huh
Seuntjie, you still forget to answer and check something?!

I haven't forgotten, I've just been busy.

I did do some tests on the site though. I left 2 accounts betting at the site, one using a fixed RNG for seed and one not for 24 hours. One account did around 900k bets and the other around 700k. During that time I got a max losing streak of 19 losses at 49.5% and a max winning streak of 20 at 49.5% one the 900k account and max losing streak of 19 (twice) and a max winning streak of 17 or the 700k account. I had no skipped or repeated nonces on either account. I used a fixed verifier for the site to check thousands of bets, especially the bets where I had a losing streak and all of the bets verified correctly.

If there are skipped nonces in the bet history database for DiceBot, it's probably because the SQLite interface can't keep up with the speed of the bets when you're close to their server. Since the all time graphs draw from the database, that explains why the graph might not show the same number of bets as your nonce. I haven't had time to verify this using either your or one of my own DBs. It's also very possible that with the time it takes to draw charts with hundreds of thousands points and because it's multi threaded, the bot is suppressing errors that arises when trying to add points to the charts.
i have runned last 10days without rng streak, so ofc you has not get it in last time(because how much i understand of my test this streaks need to be in same time for all users), and idk about other pecentage, if you want really test it run on 5%(im talking only about 5% chance play, idk if streaks was on others percentages) chance and left it next week/twos, how much i remember before christmas was two weeks without streaks it was record long period without.
and yes, in my last uploaded database last 450bets was losing on 5% i simple pressed stop, that was enough ridiculus
but maybe simple they technical team turned it off for some time until this all stuff quites down, because its strange long period without rng streaks
btw, even owner contacted me about thats stuff he dont like this kind of posts in internet, so maybe while i pushing up this talks streaks will not gonna occurs 😁
anunnaki1202
Jr. Member
*
Offline Offline

Activity: 78
Merit: 1


View Profile
January 18, 2020, 12:34:35 AM
 #3118

Is any way to delete all my betting history because it seems slows the bot down after a while  Huh
HCP
Legendary
*
Offline Offline

Activity: 2086
Merit: 4316

<insert witty quote here>


View Profile
January 18, 2020, 03:11:38 AM
Last edit: November 15, 2023, 01:55:19 AM by HCP
 #3119

You can simply shutdown dicebot and then delete the dicebot database file named "DiceBot.db"... or simply rename that file it if you think you want/need to access that history again at some point... The file will be in the directory you run the dicebot.



NOTE: If your Windows is setup to hide file extensions, it might just show up as "DiceBot"... but the file type will be listed as "Data Base File" like in the screenshot above. You can read how to show file extensions for Windows 10 here: https://www.tenforums.com/tutorials/62842-hide-show-file-name-extensions-windows-10-a.html

█████████████████████████
████▐██▄█████████████████
████▐██████▄▄▄███████████
████▐████▄█████▄▄████████
████▐█████▀▀▀▀▀███▄██████
████▐███▀████████████████
████▐█████████▄█████▌████
████▐██▌█████▀██████▌████
████▐██████████▀████▌████
█████▀███▄█████▄███▀█████
███████▀█████████▀███████
██████████▀███▀██████████
█████████████████████████
.
BC.GAME
▄▄░░░▄▀▀▄████████
▄▄▄
██████████████
█████░░▄▄▄▄████████
▄▄▄▄▄▄▄▄▄██▄██████▄▄▄▄████
▄███▄█▄▄██████████▄████▄████
███████████████████████████▀███
▀████▄██▄██▄░░░░▄████████████
▀▀▀█████▄▄▄███████████▀██
███████████████████▀██
███████████████████▄██
▄███████████████████▄██
█████████████████████▀██
██████████████████████▄
.
..CASINO....SPORTS....RACING..
█░░░░░░█░░░░░░█
▀███▀░░▀███▀░░▀███▀
▀░▀░░░░▀░▀░░░░▀░▀
░░░░░░░░░░░░
▀██████████
░░░░░███░░░░
░░█░░░███▄█░░░
░░██▌░░███░▀░░██▌
░█░██░░███░░░█░██
░█▀▀▀█▌░███░░█▀▀▀█▌
▄█▄░░░██▄███▄█▄░░▄██▄
▄███▄
░░░░▀██▄▀


▄▄████▄▄
▄███▀▀███▄
██████████
▀███▄░▄██▀
▄▄████▄▄░▀█▀▄██▀▄▄████▄▄
▄███▀▀▀████▄▄██▀▄███▀▀███▄
███████▄▄▀▀████▄▄▀▀███████
▀███▄▄███▀░░░▀▀████▄▄▄███▀
▀▀████▀▀████████▀▀████▀▀
anunnaki1202
Jr. Member
*
Offline Offline

Activity: 78
Merit: 1


View Profile
January 18, 2020, 01:46:47 PM
 #3120

@HCP Thanks i'll look into that
Pages: « 1 ... 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 [156] 157 158 159 160 161 162 163 164 165 166 167 168 »
  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!