Bitcoin Forum
June 20, 2024, 09:28:23 PM *
News: Voting for pizza day contest
 
   Home   Help Search Login Register More  
Pages: « 1 ... 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 274548 times)
dre1982
Sr. Member
****
Offline Offline

Activity: 770
Merit: 284


★Bitvest.io★ Play Plinko or Invest!


View Profile
December 26, 2020, 08:35:40 AM
 #3281

Learned a expensive lesson yesterday. The diffence between Variable and Change Once.
It happened to me too long ago. It's good that I forgot the amount that I lost. I was trying to mix and switch the available options but realized very soon how stupid that move had been. We learn the hard way, always.


Well now I won't forget it anymore. The best way to learn is is like this. Too bad mostly it are expensive lessons
If you really want to test your strategy you could play at crypto.games and use play money. This gave me an idea of how the bot works, also in programmer mode, without risking my real coins.
I hope it can work for you too.

Ok i didn't know that. Thanks for the hint. Will check it out after the holidays. If I am right I still have an account there.



BIG WINNER!
[15.00000000 BTC]


▄████████████████████▄
██████████████████████
██████████▀▀██████████
█████████░░░░█████████
██████████▄▄██████████
███████▀▀████▀▀███████
██████░░░░██░░░░██████
███████▄▄████▄▄███████
████▀▀████▀▀████▀▀████
███░░░░██░░░░██░░░░███
████▄▄████▄▄████▄▄████
██████████████████████
▀████████████████████▀
▄████████████████████▄
██████████████████████
█████▀▀█▀▀▀▀▀▀██▀▀████
█████░░░░░░░░░░░░░▄███
█████░░░░░░░░░░░░▄████
█████░░▄███▄░░░░██████
█████▄▄███▀░░░░▄██████
█████████░░░░░░███████
████████░░░░░░░███████
███████░░░░░░░░███████
███████▄▄▄▄▄▄▄▄███████
██████████████████████
▀████████████████████▀
▄████████████████████▄
███████████████▀▀▀▀▀▀▀
███████████▀▀▄▄█░░░░░█
█████████▀░░█████░░░░█
███████▀░░░░░████▀░░░▀
██████░░░░░░░░▀▄▄█████
█████░▄░░░░░▄██████▀▀█
████░████▄░███████░░░░
███░█████░█████████░░█
███░░░▀█░██████████░░█
███░░░░░░████▀▀██▀░░░░
███░░░░░░███░░░░░░░░░░
▀██░▄▄▄▄░████▄▄██▄░░░░
▄████████████▀▀▀▀▀▀▀██▄
█████████████░█▀▀▀█░███
██████████▀▀░█▀░░░▀█░▀▀
███████▀░▄▄█░█░░░░░█░█▄
████▀░▄▄████░▀█░░░█▀░██
███░▄████▀▀░▄░▀█░█▀░▄░▀
█▀░███▀▀▀░░███░▀█▀░███░
▀░███▀░░░░░████▄░▄████░
░███▀░░░░░░░█████████░░
░███░░░░░░░░░███████░░░
███▀░██░░░░░░▀░▄▄▄░▀░░░
███░██████▄▄░▄█████▄░▄▄
▀██░████████░███████░█▀
▄████████████████████▄
████████▀▀░░░▀▀███████
███▀▀░░░░░▄▄▄░░░░▀▀▀██
██░▀▀▄▄░░░▀▀▀░░░▄▄▀▀██
██░▄▄░░▀▀▄▄░▄▄▀▀░░░░██
██░▀▀░░░░░░█░░░░░██░██
██░░░▄▄░░░░█░██░░░░░██
██░░░▀▀░░░░█░░░░░░░░██
██░░░░░▄▄░░█░░░░░██░██
██▄░░░░▀▀░░█░██░░░░░██
█████▄▄░░░░█░░░░▄▄████
█████████▄▄█▄▄████████
▀████████████████████▀




Rainbot
Daily Quests
Faucet
HCP
Legendary
*
Offline Offline

Activity: 2086
Merit: 4316

<insert witty quote here>


View Profile
December 27, 2020, 07:02:53 PM
 #3282

If you really want to test your strategy you could play at crypto.games and use play money. This gave me an idea of how the bot works, also in programmer mode, without risking my real coins.
I hope it can work for you too.
That's actually a really good idea, and what I generally do with most of my scripts... test them with the "PLAY" currency on cryptogames... The only issue is that the minimum bet values (and current balances) are generally quite different for each currency Tongue

So I use an "if-then-else" at the top of the script that determines which currency is currently selected, and automatically adjusts the basebet amount and other variables as required. Something like this:
Code:
...
if currency == "btc" then
    -- CHANGE THESE ACCORDING TO YOUR BALANCE
    baseBet = 0.00000001
    target = 0.01170333
    maxLossStreak = 20
elseif currency == "doge" then
    -- CHANGE THESE ACCORDING TO YOUR BALANCE
    baseBet = 1
    target = 300000
    maxLossStreak = 60
elseif currency == "play" then
    -- CHANGE THESE ACCORDING TO YOUR BALANCE
    baseBet = 100
    target = 30000000
    maxLossStreak = 90
else
    print("no basebet set for this currency [" .. currency .. "]!!! -- STOPPING!")
    stop()
end
...

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


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

Activity: 1717
Merit: 1125



View Profile WWW
December 27, 2020, 07:10:28 PM
 #3283

If you really want to test your strategy you could play at crypto.games and use play money. This gave me an idea of how the bot works, also in programmer mode, without risking my real coins.
I hope it can work for you too.

I mean you could use the built in simulator that uses the sites own RNG with random seeds to do a simulation at 20+x the speed of actually placing bets...

Karartma1
Legendary
*
Offline Offline

Activity: 2310
Merit: 1422



View Profile
December 28, 2020, 04:57:36 PM
 #3284

If you really want to test your strategy you could play at crypto.games and use play money. This gave me an idea of how the bot works, also in programmer mode, without risking my real coins.
I hope it can work for you too.

I mean you could use the built in simulator that uses the sites own RNG with random seeds to do a simulation at 20+x the speed of actually placing bets...
I use that too but I prefer to implement my strategy while playing because I adjust and tweak many options as the bot runs. It needs to be funny also if you get what I mean! Wink
NameBaby
Newbie
*
Offline Offline

Activity: 66
Merit: 0


View Profile
December 28, 2020, 05:20:52 PM
 #3285

Can you give me a example code on how to change the currency during betting?
As example say that I'm betting with 0.00001000 LTC on 2x Payout. After 5 losses in row can I change the currency to BTC?

Bet 1 : 0.00001000 LTC
Bet 2 : 0.00001000 LTC
Bet 3 : 0.00001000 LTC
Bet 4 : 0.00001000 LTC
Bet 5 : 0.00001000 LTC
Bet 6 : 0.00001000 BTC
Bet 7 : 0.00001000 BTC
Bet 8 : 0.00001000 BTC
.
.
.
HCP
Legendary
*
Offline Offline

Activity: 2086
Merit: 4316

<insert witty quote here>


View Profile
December 28, 2020, 08:14:19 PM
Last edit: November 15, 2023, 12:30:24 AM by HCP
 #3286

Can you give me a example code on how to change the currency during betting?
I've never actually tried... The currency name is stored in the "currency" variable... so just set currency == "currency_that_you_want"...

Code:
...
  if lossstreak == 5 then
    currency = "btc"
  end
...


WARNING: doing this might play havoc with the GUI, charts and stats etc... as they won't be reflecting the change in currency correctly... here you can see a small script that goes from betting 10 PLAY to betting 0.00000001 BTC on crypto.games...
Code:
chance  = 49.5
basebet = 10
nextbet = basebet
bethigh = true

betcount = 0

currency = "play"

function dobet()

    betcount = betcount + 1
    currency = "btc"
   
    nextbet = 0.00000001
   
    if betcount >= 2 then
        stop()
    end
   
end

It purposely stops after 2 bets... but you can see how the graph and stats are messed up as both currencies are combined:




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


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

Activity: 52
Merit: 2


View Profile
December 29, 2020, 05:38:15 PM
 #3287

chance     = 49.50
multiplier = 2
base       = 0.00000001
preroll    = 5
prebet     = 0.00000001
nextbet    = 0.00000001
function dobet()
 if win then
  nextbet=base
 else
  if currentstreak== -preroll then
   nextbet=base
  end
  if currentstreak < -preroll then
   nextbet=previousbet*multiplier
  end
 end
end

hey ,

i am using default preroll script and doing well so far.

i just want to ask , if it possible to add such a feature to this script :

if x amount of red comes in a row return the scripts to beginning.

i appreciate any help , cheers and happt x-mas.
HCP
Legendary
*
Offline Offline

Activity: 2086
Merit: 4316

<insert witty quote here>


View Profile
December 29, 2020, 07:21:30 PM
 #3288

i just want to ask , if it possible to add such a feature to this script :

if x amount of red comes in a row return the scripts to beginning.
Yes... the "streak" of losses will be stored in "currentstreak" as a negative number... which is what the script is currently checking for while doing the preroll.

"if currentstreak < -preroll"... it checks to see if the losing streak is more than 5 losses in a row... then it starts multiplying.

You can add a "maxlosses" variable... and check that, if exceeded then return to default settings:

Code:
chance     = 49.50
multiplier = 2
base       = 0.00000001
preroll    = 5
prebet     = 0.00000001
nextbet    = 0.00000001

maxlosses = 15

function dobet()
 if win then
  nextbet=base
 else
  if currentstreak== -preroll then
   nextbet=base
  end
  if currentstreak < -preroll then
   nextbet=previousbet*multiplier
  end
  if currentstreak < -maxlosses then
   nextbet=base
   currentstreak = 0
  end
 end
end

WARNING: I haven't extensively tested this code... use at your own risk Tongue

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


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

Activity: 52
Merit: 2


View Profile
December 29, 2020, 08:32:32 PM
 #3289

i just want to ask , if it possible to add such a feature to this script :

if x amount of red comes in a row return the scripts to beginning.
Yes... the "streak" of losses will be stored in "currentstreak" as a negative number... which is what the script is currently checking for while doing the preroll.

"if currentstreak < -preroll"... it checks to see if the losing streak is more than 5 losses in a row... then it starts multiplying.

You can add a "maxlosses" variable... and check that, if exceeded then return to default settings:

Code:
chance     = 49.50
multiplier = 2
base       = 0.00000001
preroll    = 5
prebet     = 0.00000001
nextbet    = 0.00000001

maxlosses = 15

function dobet()
 if win then
  nextbet=base
 else
  if currentstreak== -preroll then
   nextbet=base
  end
  if currentstreak < -preroll then
   nextbet=previousbet*multiplier
  end
  if currentstreak < -maxlosses then
   nextbet=base
   currentstreak = 0
  end
 end
end

WARNING: I haven't extensively tested this code... use at your own risk Tongue

Just tested and works like a charm <3

I just wanted to limit max. looses so it wont be betting in the dark Smiley

Thanks a bunch mate you make my day !

Happy new year everyone.
seuntjie (OP)
Legendary
*
Offline Offline

Activity: 1717
Merit: 1125



View Profile WWW
March 02, 2021, 04:40:15 PM
 #3290

DiceBot version 3.4.15 is available to download from https://bot.seuntjie.com/botpage.aspx

Change Log

New Features
None


Changes
pdated edge and implemented flexible edge for crypto.games
added currencies for wolf


Bug Fixes
Bitsler 0 chance and always low,
win multiplier

kwong1983
Newbie
*
Offline Offline

Activity: 54
Merit: 0


View Profile
March 28, 2021, 01:15:54 PM
 #3291

Hi Seuntjies. I have a question on dicebot variable in advanced setting mode.

Let said the bot stop due to profit made, then i reset manually on the stat and the graph chart is enough to stop the bot from multiply from the previous winning?

Thanks
Stalker22
Legendary
*
Offline Offline

Activity: 1540
Merit: 1362



View Profile
March 28, 2021, 02:01:33 PM
 #3292

Hi Seuntjies. I have a question on dicebot variable in advanced setting mode.

Let said the bot stop due to profit made, then i reset manually on the stat and the graph chart is enough to stop the bot from multiply from the previous winning?

Thanks

I don't think graph chart has anything to do with the bot settings. Why don't you show us what settings you used in dicebot's advanced settings mod? It will make it easier to pinpoint the exact issue.


█████████████████████████
██
█████▀▀███████▀▀███████
█████▀░░▄███████▄░░▀█████
██▀░░██████▀░▀████░░▀██
██▀░░▀▀▀████████████░░▀██
██░░█▄████▀▀███▀█████░░██
██░░███▄▄███████▀▀███░░██
██░░█████████████████░░██
██▄░░████▄▄██████▄▄█░░▄██
██▄░░██████▄░░████░░▄██
█████▄░░▀███▌░░▐▀░░▄█████
███████▄▄███████▄▄███████
█████████████████████████
.
.ROOBET 2.0..██████.IIIIIFASTER & SLEEKER.██████.
|

█▄█
▀█▀
████▄▄██████▄▄████
█▄███▀█░░█████░░█▀███▄█
▀█▄▄░▐█████████▌▄▄█▀
██▄▄█████████▄▄████▌
██████▄▄████████
█▀▀████████████████
██████
█████████████
██
█▀▀██████████████
▀▀▀███████████▀▀▀▀
|.
    PLAY NOW    
janggernaut
Legendary
*
Offline Offline

Activity: 2366
Merit: 1130


View Profile
March 29, 2021, 08:16:41 AM
 #3293

Hi Seuntjies. I have a question on dicebot variable in advanced setting mode.

Let said the bot stop due to profit made, then i reset manually on the stat and the graph chart is enough to stop the bot from multiply from the previous winning?

Thanks

I don't think graph chart has anything to do with the bot settings. Why don't you show us what settings you used in dicebot's advanced settings mod? It will make it easier to pinpoint the exact issue.


IIRC when using dicebot, the graph will shown the live result of our bet. It will be stop when we paused or stop the dicebot. But the it will resume the previous graph from previous strategy when we start with new strategy.
DarkDays
Legendary
*
Offline Offline

Activity: 2030
Merit: 1189


View Profile
March 29, 2021, 12:56:20 PM
 #3294

Learned a expensive lesson yesterday. The diffence between Variable and Change Once.
It happened to me too long ago. It's good that I forgot the amount that I lost. I was trying to mix and switch the available options but realized very soon how stupid that move had been. We learn the hard way, always.


Well now I won't forget it anymore. The best way to learn is is like this. Too bad mostly it are expensive lessons
If you really want to test your strategy you could play at crypto.games and use play money. This gave me an idea of how the bot works, also in programmer mode, without risking my real coins.
I hope it can work for you too.
What Karartma1 suggests is really good to practice and learn how bots work. And the best way to get this practice is with the casino's money (not yet yours). As well as the casino mentioned with play money there are other casinos which offer similar 'free/faucet money' it is only a matter of Googling to find a few. Anyways, the tactic is great so if you get around to it you should gain a better understanding of the system. Good luck!
mybtc12
Newbie
*
Offline Offline

Activity: 1
Merit: 0


View Profile
March 29, 2021, 09:42:42 PM
 #3295

Please help need help coding script in a nutshell i want the script to witch between 2 strategies once balance varible is meet then cashout on profit
this is what i have prewritten but its not working please help

basebet=0.0002
nextbet=basebet
chance=23.5

function dobet()   
if win then
    nextbet=0.0002
else
    nextbet = previousbet*1.53
end

if balance > 0.7 then
chance = 32.05
resetseed()

function dobet()   
if win then
    nextbet = 0.0008   
else
    nextbet = previousbet*1.625
end

resetseed()
resetstats()

if balance > 1 then
    withdraw(1.0, xxxxxxxxxxxxxxxxxxxxxxxx)
end
HCP
Legendary
*
Offline Offline

Activity: 2086
Merit: 4316

<insert witty quote here>


View Profile
April 04, 2021, 09:17:08 AM
 #3296

You can't have two dobet() functions... you can only have one.

You'll have to adjust your script so that the 2 "strategies" are implemented in one dobet() function... something like this:
Code:
basebet=0.0002
nextbet=basebet
chance=23.5
currentstrat = 1

if balance <= 0.7 then
  currentstrat = 1
else
  currentstrat = 2
end

function dobet()  
  if balance <= 0.7 then
    if currentstrat == 2 then
      currentstrat=1
      resetseed()
      resetstats()
    end
    if win then
      nextbet=0.0002
    else
      nextbet = previousbet*1.53
    end

  elseif balance > 0.7 then
    if currentstrat == 1 then
      currentstrat = 2
      resetseed()
      resetstats()
    end
    chance = 32.05
    
    if win then
      nextbet = 0.0008  
    else
      nextbet = previousbet*1.625
    end
  end

  if balance > 1 then
    stop()
    withdraw(1.0, xxxxxxxxxxxxxxxxxxxxxxxx)
  end

end

the "currentstrat" flag tracks whether we're currently on strategy 1, or strategy 2... so that we know whether or not we need to resetseed() and resetstats() when we switch from one strat to the other...

NOTE: I have not tested this code... not even a basic syntax check! - I take no responsibility if you choose to try and run this script Tongue

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


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

Activity: 1717
Merit: 1125



View Profile WWW
April 04, 2021, 01:03:33 PM
 #3297

This is probably a bit complex for mybtc12 but posting it for users with a bit more experience in programming and the bot in general: https://forum.seuntjie.com/index.php?topic=406.msg769#msg769




PedroJMelo
Newbie
*
Offline Offline

Activity: 532
Merit: 0


View Profile
April 14, 2021, 02:57:54 AM
 #3298

Is there a speed limitation in the primedice as it happened in the stake? Because since last night I can't use the dicebot in the primedice, the message "please slow down" appears and the bets stop and don't bet again!
janggernaut
Legendary
*
Offline Offline

Activity: 2366
Merit: 1130


View Profile
April 22, 2021, 02:51:16 AM
 #3299

hi why is Seuntjies DiceBot
not making a  bet? website https://wolf.bet/ -made a deposit
Do you mean your bot "stuck" and your bot didn't made a bet? Try to increase your bet or increase after lose, or try to re-check your internet connection
HCP
Legendary
*
Offline Offline

Activity: 2086
Merit: 4316

<insert witty quote here>


View Profile
April 23, 2021, 06:46:42 AM
 #3300

seems like it might be an issue with the bot communicating with Wolf.bet... the bot has attempted to make a bet with the site, but has not received any response.

It is possible that Wolf.bet have made a modification to their API or something which is causing the bot to be unable to make the bet successfully... or it's not returning the data in a way that the bot can deal with it (although, if that were the case, the bot would likely throw an error).

It's a bit puzzling really... have you contacted Wolf.bet support to see if they know why it might not be working properly? Huh

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


▄▄████▄▄
▄███▀▀███▄
██████████
▀███▄░▄██▀
▄▄████▄▄░▀█▀▄██▀▄▄████▄▄
▄███▀▀▀████▄▄██▀▄███▀▀███▄
███████▄▄▀▀████▄▄▀▀███████
▀███▄▄███▀░░░▀▀████▄▄▄███▀
▀▀████▀▀████████▀▀████▀▀
Pages: « 1 ... 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!