Bitcoin Forum
May 06, 2024, 08:23:35 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 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 274500 times)
seuntjie (OP)
Legendary
*
Offline Offline

Activity: 1717
Merit: 1125



View Profile WWW
September 15, 2017, 06:39:25 AM
 #2341

do you know when it will be possible again to use the bot for bit-exo and dice.seuntjie?

No Idea. The issue with bit-exo seems to be a cloudflare issue that could resolve itself. I will have to look into it when I get the time (Which won't be this weekend). I'm not sure when I will have time to update dice.seuntjie.com to v2 of the API.

1715027015
Hero Member
*
Offline Offline

Posts: 1715027015

View Profile Personal Message (Offline)

Ignore
1715027015
Reply with quote  #2

1715027015
Report to moderator
1715027015
Hero Member
*
Offline Offline

Posts: 1715027015

View Profile Personal Message (Offline)

Ignore
1715027015
Reply with quote  #2

1715027015
Report to moderator
1715027015
Hero Member
*
Offline Offline

Posts: 1715027015

View Profile Personal Message (Offline)

Ignore
1715027015
Reply with quote  #2

1715027015
Report to moderator
Even if you use Bitcoin through Tor, the way transactions are handled by the network makes anonymity difficult to achieve. Do not expect your transactions to be anonymous unless you really know what you're doing.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1715027015
Hero Member
*
Offline Offline

Posts: 1715027015

View Profile Personal Message (Offline)

Ignore
1715027015
Reply with quote  #2

1715027015
Report to moderator
xMossx
Newbie
*
Offline Offline

Activity: 121
Merit: 0


View Profile
September 15, 2017, 06:46:56 PM
 #2342

Thanks for the reply. How would I do something like:
if last10bets > x or last10bets < y then
You'd do something like this:

Code:
if lastBell.Roll >= 50 then
  HighCount = HighCount + 1
  LowCount = 0
else
  LowCount = LowCount +1
  HighCount = 0
end

if HighCount >= 10 then
  print("10 high rolls")
  stop()
elseif LowCount >=10 then
  print("10 low rolls")
  stop()
end
Perfect. That will work. Thanks.

That's a bit hard coded for 50% chance to win. You could alternatively try something like:

Code:
if (high and win) or (low and !win) then 
highcount+=1
lowcount=0
elseif (high and !win) or (low and win) then
lowcount+=1
highcount=0
end
Well I changed it around a bit to better suit my application of it. I'll try this new bit too though, it seems simpler. Thanks.
chilly2k
Legendary
*
Offline Offline

Activity: 1007
Merit: 1000


View Profile
September 15, 2017, 09:20:24 PM
 #2343

Thanks for the reply. How would I do something like:
if last10bets > x or last10bets < y then
You'd do something like this:

Code:
if lastBell.Roll >= 50 then
  HighCount = HighCount + 1
  LowCount = 0
else
  LowCount = LowCount +1
  HighCount = 0
end

if HighCount >= 10 then
  print("10 high rolls")
  stop()
elseif LowCount >=10 then
  print("10 low rolls")
  stop()
end
Perfect. That will work. Thanks.

That's a bit hard coded for 50% chance to win. You could alternatively try something like:

Code:
if (high and win) or (low and !win) then 
highcount+=1
lowcount=0
elseif (high and !win) or (low and win) then
lowcount+=1
highcount=0
end

What are high and low?  Must be boolean, but how are they calculated, and can they both be false?  IE chance is 2% and the result is between 2 - 98. 

New hidden secrete...  Smiley

moooonu
Hero Member
*****
Offline Offline

Activity: 560
Merit: 500



View Profile
September 16, 2017, 12:07:46 PM
 #2344

hey Seuntjie

I play with your dicebot on yolodice. In the beginning the bets are at lightning speed but with time they get slower and slower. Can't speed be like the same as the beginning with the bot.
Nick7815
Full Member
***
Offline Offline

Activity: 159
Merit: 101


View Profile
September 17, 2017, 09:17:15 AM
 #2345

do you know when it will be possible again to use the bot for bit-exo and dice.seuntjie?

No Idea. The issue with bit-exo seems to be a cloudflare issue that could resolve itself. I will have to look into it when I get the time (Which won't be this weekend). I'm not sure when I will have time to update dice.seuntjie.com to v2 of the API.

can you recommend any other sites with the same "botting-Speed" like bit-exo or yr own app?

seuntjie (OP)
Legendary
*
Offline Offline

Activity: 1717
Merit: 1125



View Profile WWW
September 17, 2017, 09:44:55 AM
 #2346

hey Seuntjie

I play with your dicebot on yolodice. In the beginning the bets are at lightning speed but with time they get slower and slower. Can't speed be like the same as the beginning with the bot.

Stop and hide the embedded chart, set your live bets panel to display only 1 bet, minimize the bot.

do you know when it will be possible again to use the bot for bit-exo and dice.seuntjie?

No Idea. The issue with bit-exo seems to be a cloudflare issue that could resolve itself. I will have to look into it when I get the time (Which won't be this weekend). I'm not sure when I will have time to update dice.seuntjie.com to v2 of the API.

can you recommend any other sites with the same "botting-Speed" like bit-exo or yr own app?

Yolodice is very fast as long as you bet over 100 sats.

Nick7815
Full Member
***
Offline Offline

Activity: 159
Merit: 101


View Profile
September 17, 2017, 10:03:12 AM
 #2347

hey Seuntjie

I play with your dicebot on yolodice. In the beginning the bets are at lightning speed but with time they get slower and slower. Can't speed be like the same as the beginning with the bot.

Stop and hide the embedded chart, set your live bets panel to display only 1 bet, minimize the bot.

do you know when it will be possible again to use the bot for bit-exo and dice.seuntjie?

No Idea. The issue with bit-exo seems to be a cloudflare issue that could resolve itself. I will have to look into it when I get the time (Which won't be this weekend). I'm not sure when I will have time to update dice.seuntjie.com to v2 of the API.

can you recommend any other sites with the same "botting-Speed" like bit-exo or yr own app?

Yolodice is very fast as long as you bet over 100 sats.


i don't bet that high. seems like i have to find anything else than this dice-game Sad

seuntjie (OP)
Legendary
*
Offline Offline

Activity: 1717
Merit: 1125



View Profile WWW
September 18, 2017, 06:09:49 AM
 #2348

i don't bet that high. seems like i have to find anything else than this dice-game Sad

Let me rephrase: Yolodice is fast. Yolodice is REALLY fast when you bet over 100 sats.

Nick7815
Full Member
***
Offline Offline

Activity: 159
Merit: 101


View Profile
September 18, 2017, 12:48:57 PM
 #2349

i don't bet that high. seems like i have to find anything else than this dice-game Sad

Let me rephrase: Yolodice is fast. Yolodice is REALLY fast when you bet over 100 sats.

let me rephrase: i don't bet that high. i have no script which is safe enough and no balance which is big enough to bid that high

forzendiablo
Legendary
*
Offline Offline

Activity: 1526
Merit: 1000


the grandpa of cryptos


View Profile
September 19, 2017, 01:05:54 AM
 #2350

this is my favorite bot, i made prolly as much as ive lost with it but i just love to use it.
seuntje is an amazing dev and i always try to use his reflinks when registering to exchanges just to make up for his "free" work

yolo
WGates
Newbie
*
Offline Offline

Activity: 29
Merit: 0



View Profile
September 19, 2017, 03:23:09 PM
 #2351

Seuntjie, which Moneypot sites work with DiceBot right now?
houseworx
Full Member
***
Offline Offline

Activity: 319
Merit: 100


View Profile
September 19, 2017, 03:49:32 PM
 #2352

Seuntjie, which Moneypot sites work with DiceBot right now?

how much i know, none...

████          O W N R   W A L L E T          ████   VISA PREPAID CARD    ████  Use crypto to pay in stores with OWNR  ████
❱❱❱❱ ❱❱❱ ❱❱ ❱     Buy, send, receive and exchange crypto        VISA    mastercard   SPA    UnionPay     ❰ ❰❰ ❰❰❰ ❰❰❰❰
BLOG       TWITTER     ██ █▌█ ▌     Manage crypto and VISA card in OWNR Wallet app    ▐ █▐█ ██     REDDIT   YOUTUBE
seuntjie (OP)
Legendary
*
Offline Offline

Activity: 1717
Merit: 1125



View Profile WWW
September 21, 2017, 09:57:31 AM
 #2353

Seuntjie, which Moneypot sites work with DiceBot right now?

I am actually not sure.

Both of my apps do not work. Bit-Exo might work depending on cloudflare and their cloudflare settings. Betterbets should work if they've finished updating to v2 of the moneypot API.

horseman22
Sr. Member
****
Offline Offline

Activity: 329
Merit: 250


View Profile
September 21, 2017, 01:45:40 PM
 #2354

guys, who knows if already the bot is working correctly with stake?
seuntjie (OP)
Legendary
*
Offline Offline

Activity: 1717
Merit: 1125



View Profile WWW
September 23, 2017, 06:40:50 PM
 #2355

DiceBot 3.3.9 is now available! Get it at https://bot.seuntjie.com/botpage.aspx

Change Log

New Features
None


Changes
Added Dash and Ltc for Bit-Exo
Added Bch to DuckDice
Disabled withdraw on DuckDice
Added Bch to SafeDice
999Dice added new mirror
crypto games removed game,added stratis
bitvest added ltc, eth
added lua garbage collection to manage memory


Bug Fixes
Fixed bit-Exo login problems
Stake Fixed 2fa sign on
Stake fixed chance bug
Freebitco.in disabled reset seed, tip, withdraw to prevent crash.
DuckDice Fixed login to use new API key
bitvest fixed betting
fixed reset stats without having started the bot previously bug
fixed lower limit

dhamijad
Full Member
***
Offline Offline

Activity: 169
Merit: 100


View Profile
September 23, 2017, 06:59:44 PM
 #2356

DiceBot 3.3.9 is now available! Get it at https://bot.seuntjie.com/botpage.aspx

Change Log

New Features
None


Changes
Added Dash and Ltc for Bit-Exo
Added Bch to DuckDice
Disabled withdraw on DuckDice
Added Bch to SafeDice
999Dice added new mirror
crypto games removed game,added stratis
bitvest added ltc, eth
added lua garbage collection to manage memory


Bug Fixes
Fixed bit-Exo login problems
Stake Fixed 2fa sign on
Stake fixed chance bug
Freebitco.in disabled reset seed, tip, withdraw to prevent crash.
DuckDice Fixed login to use new API key
bitvest fixed betting
fixed reset stats without having started the bot previously bug
fixed lower limit

I'm very excited about this update.

guys, who knows if already the bot is working correctly with stake?

As you can see, Stake chance bug is now fixed. It was working pretty well in 3.3.8, but the bug really messed things up. Hopefully everything is fixed now. Keep in mind that both Stake and Stake bot support are relatively new.

DiceBot   FreeBTC   MoonBTC   NiceHash   Prime🎲   BTCRush   Stake
houseworx
Full Member
***
Offline Offline

Activity: 319
Merit: 100


View Profile
September 23, 2017, 08:21:21 PM
 #2357

DiceBot 3.3.9 is now available! Get it at https://bot.seuntjie.com/botpage.aspx

Change Log

New Features
None


Changes
Added Dash and Ltc for Bit-Exo
Added Bch to DuckDice
Disabled withdraw on DuckDice
Added Bch to SafeDice
999Dice added new mirror
crypto games removed game,added stratis
bitvest added ltc, eth
added lua garbage collection to manage memory


Bug Fixes
Fixed bit-Exo login problems
Stake Fixed 2fa sign on
Stake fixed chance bug
Freebitco.in disabled reset seed, tip, withdraw to prevent crash.
DuckDice Fixed login to use new API key
bitvest fixed betting
fixed reset stats without having started the bot previously bug
fixed lower limit


GJ, finally! nice1

████          O W N R   W A L L E T          ████   VISA PREPAID CARD    ████  Use crypto to pay in stores with OWNR  ████
❱❱❱❱ ❱❱❱ ❱❱ ❱     Buy, send, receive and exchange crypto        VISA    mastercard   SPA    UnionPay     ❰ ❰❰ ❰❰❰ ❰❰❰❰
BLOG       TWITTER     ██ █▌█ ▌     Manage crypto and VISA card in OWNR Wallet app    ▐ █▐█ ██     REDDIT   YOUTUBE
houseworx
Full Member
***
Offline Offline

Activity: 319
Merit: 100


View Profile
September 24, 2017, 12:02:06 AM
Last edit: September 24, 2017, 11:52:35 AM by houseworx
 #2358

i dont know what you did, but now bot, how much i see after first 3 hours is only ~30MB of ram usage all time!

thats great, maybe now he will not be going up every 10hours till 3GB of ram usage!

thumbsup Smiley

edited: after first night uptime while sleeping, yes still 30mb ram usage, thats are fantastic!

████          O W N R   W A L L E T          ████   VISA PREPAID CARD    ████  Use crypto to pay in stores with OWNR  ████
❱❱❱❱ ❱❱❱ ❱❱ ❱     Buy, send, receive and exchange crypto        VISA    mastercard   SPA    UnionPay     ❰ ❰❰ ❰❰❰ ❰❰❰❰
BLOG       TWITTER     ██ █▌█ ▌     Manage crypto and VISA card in OWNR Wallet app    ▐ █▐█ ██     REDDIT   YOUTUBE
dhamijad
Full Member
***
Offline Offline

Activity: 169
Merit: 100


View Profile
September 24, 2017, 02:57:46 PM
 #2359

fixed lower limit

What was wrong with lower limit? What did you fix? I know that sometimes when I have martingale going, if the bet is really large (even though the bet will take me below lower limit), it will still place bet. Was that the issue or something else?

DiceBot   FreeBTC   MoonBTC   NiceHash   Prime🎲   BTCRush   Stake
seuntjie (OP)
Legendary
*
Offline Offline

Activity: 1717
Merit: 1125



View Profile WWW
September 24, 2017, 03:00:05 PM
 #2360

fixed lower limit

What was wrong with lower limit? What did you fix? I know that sometimes when I have martingale going, if the bet is really large (even though the bet will take me below lower limit), it will still place bet. Was that the issue or something else?

That was the issue.

Pages: « 1 ... 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 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!