Show Posts
|
Pages: [1]
|
Great project. I am thrilled to be a part of this project. Things are starting rolling out. People who does not have heard of this project, have surely dive into the material. And if you can get some freakin coins, get it! , thank me later.
|
|
|
Current problems with Sites in the bot that I know of: - Bitsler: Betting stops for ~30 seconds the whole time. Setting a betting speed of 1 bet/s should fix this until I release an update
- Bitdice: Can log in, but bets aren't going through. The bets are actually going through (so don't spam the button thinking nothing is happening), the bot just encounters an error when trying to display it
- Fortunejack: Can't log in. It's a cloudflare issue, I've been trying to fix it but there's something weird with their setup.
- Rollin.io: Can't log in because of the captcha on the login page. Rollin has committed to helping me find a solution, but they have other priorities. No ETA on a fix yet
- Kingdice: Can't log in due to the captcha on login page. Also committed to ginding a solution but no ETA yet.
- Betterbets: Not sure about the list of things broken, but things are broken. I need to sit with Lobos to fix it.
I'm not yet sure when the next release will be. In addition to Rollin and Kingdice, I'm waiting on 3 other sites that might be added to the bot soon for some changes, and I'm extremely busy with other work at the moment. Just letting everyone know that I haven't abandoned the project, there will be an update before the end of February at the latest, I've just been a bit busy. So if i am understand it right in the new update of the bot, the speed of the bets for bitsler will then be the same as on the site as within the bot. Hopefully it does Now it is performing very slow when betting under 1000sathosi.
|
|
|
Hi,
When a script is running with a martingale part in it, and the bot is running very fast so it is almost impossible to see if there is a big negative bet running when stopping, is there a way (command) to stop the bot on last win while the bot is running? In the advance mode there is a button for it, hope also in programmer mode, could be very useful.
You can add it to your code. I usually have something called stoponwin. I start by initializing it to false. stoponwin = false Then in my win path, where I want to stop I check that. if (stoponwin == true) then stop() end. Then while the bot is running, if I want to stop it on a win. Just type stoponwin = true on the console and hit enter. You can check and set variables on the console while the bot is running. I'm not sure how the build in martingale works, so I'm not exactly sure how to fit it in. Thanks man! I have test it and works great with i litte extra in the code otherwise it will not stop on last win did test this. if (stoponwin == true and lastBet.Profit > 0) then stop() end This was excatly what i'm looking for. Now i do not have to time when to stop. just hit stoponwin = true and my runningscript stops on the first next win Many many thanks for this and help to put me in the right direction.
|
|
|
Hi,
When a script is running with a martingale part in it, and the bot is running very fast so it is almost impossible to see if there is a big negative bet running when stopping, is there a way (command) to stop the bot on last win while the bot is running? In the advance mode there is a button for it, hope also in programmer mode, could be very useful.
|
|
|
Hi, I think i found a little problem with the tray setting. When enable this and giving the program a trayname then when minimizing, the program is not visible anymore right below on the taskbar. The program is only visible in the taskmanager, and can only ended there while the bot is running. This can be a little dangerous for your bankroll when you end the program task while there is a bad streak, you cannot see that . Did test it 3 times and cannot find a way to get a tray icon visible you can double click it from there to open the running program on your screen. Did the test in version 3.2.4 and the latest 3.3.0, both have the same behaviour. Hope i explain it good enough to understand. uh... I didn't expect anyone actually used that setting so I haven't checked on it in a long time... I'd suggest you disable it for now and I'll look into it for the next version. Which windows are you using? I last tested on windows 7... Hahaha not a problem. It makes the program even more perfect I have test it om my own home PC and my work PC both are Win 10 x64 fully updated.
|
|
|
Hi, I think i found a little problem with the tray setting. When enable this and giving the program a trayname then when minimizing, the program is not visible anymore right below on the taskbar. The program is only visible in the taskmanager, and can only ended there while the bot is running. This can be a little dangerous for your bankroll when you end the program task while there is a bad streak, you cannot see that . Did test it 3 times and cannot find a way to get a tray icon visible you can double click it from there to open the running program on your screen. Did the test in version 3.2.4 and the latest 3.3.0, both have the same behaviour. Hope i explain it good enough to understand.
|
|
|
hi,
is there a switch to set the botspeed setting. if yes, how to use it in programmer mode?
--Enable betting speed: setvaluebool('BotSpeedEnabled',true)
--Disable betting speed: setvaluebool('BotSpeedEnabled',false)
--set betting speed to 10 bets per second setvaluedecimal('BetSpeedValue',10)
--set betting speed to 1 bet every 3 seconds setvaluedecimal('BetSpeedValue',1.0/3.0);
This can be done for any setting in the bot, you just need to use the setting name as defined in the settings files in %appdata%\dicebot2\ Thanks Seuntje for your fast reply. This is all i need
|
|
|
hi,
is there a switch to set the botspeed setting. if yes, how to use it in programmer mode?
|
|
|
Hi there, I am running a script for a while now and it seems like that somethings going crappy, and things happening that is not written in the script. Maybe it has something to do with the computer it is running on. Okay, it does not matter because with a little help i can prevent this error if the following question is possible, maybe it is also useful for others: Is there a way to track like last 4 bets, and if they all have the High = true or high = false then stop the script. What i'm looking for when the script is going to live by itself due errors, then this tracking function is going to stop the script when condition is met what is written in the function. See screenshot for the high/low i mean. Hope somebody can help me out how to do this. Thanks! This is pretty easy. Setup 2 counters bethighcount and betlowcount. set both to 0 in the init section (Before the dobet function) Then at the begining of your dobet function add, if (bethigh) then // if bethigh is true bethighcount += 1 betlowcount = 0 else // bethigh is false betlowcount += 1 bethighcount = 0 end
if (bethighcount == 4 or betlowcount == 4) then stop() end
That just keeps a count of how many high or low bets you've made in a row and stops on 4 in a row. Wow haha that is easy, yes . And this is exactly what i am looking for, but i did not get it by myself, my head was thinking to difficult Thanks man.
|
|
|
Hi there, I am running a script for a while now and it seems like that somethings going crappy, and things happening that is not written in the script. Maybe it has something to do with the computer it is running on. Okay, it does not matter because with a little help i can prevent this error if the following question is possible, maybe it is also useful for others: Is there a way to track like last 4 bets, and if they all have the High = true or high = false then stop the script. What i'm looking for when the script is going to live by itself due errors, then this tracking function is going to stop the script when condition is met what is written in the function. See screenshot for the high/low i mean. Hope somebody can help me out how to do this. Thanks!
|
|
|
DiceBot 3.2.3 has been released! https://bot.seuntjie.com/botpage.aspxChange Log New FeaturesAdded Satoshi DiceChangesBitsler delays (no more need to set betting speeds) BB and WD sends client seeds instead of letting site generate them Changed MP seed calculator to use uint instead of int (max value increased) Bug Fixes999Dice possible withdrawal decimal problems Invalid address message when using withdraw button on non btc withdrawals. API Key display for wealthy dice bet history not loading bets from selected date range Bitsler betting errors betking login issues better bets betting errors Bit late but much apriciate for the new release. I'm using it right now and left version 3.2.2, thanks!
|
|
|
Hi,
When we will be enable again to play? Stil see only the main page, but cannot login. Is there any progres on the ddos situation?
Thanks
i can log in and play, maybe the problem is on your side or there maybe some kind of attack that the site can't block atleast every few minutes. try it again Hmmm, maybe it need some extra time to get though for my country. Still getting a page that says "Page not found" when trying to enter a game page. Will try it later today and tomorrow. When it still not get through i'll post again. Thanks for letting know that the site is working Website is now working smooth. Clear your cache or try with other browser, you should login normaly. Hi again, did try to clear cache, other browser, resetting modem and router, tried other computer, laptop and phone but stil get this when try to enter on all devices: Website is accesible but cannot find the login pages or redirections or something. When i try it from my work PC then it is working fine see: Is it possible that the ip-range where i am in is blocked or something? Before the downtime it was no problem to login and enter the website at all. The ip range from work is 83.98.*.* from here it working fine. Range from home is: 83.128.*.* this is not working from here. Hope somebody can look or advice in this. Thanks. Yes, your ip was on blacklist. Try now, it should work. Whoohooo! thanks it works Much appriciate
|
|
|
Hi,
When we will be enable again to play? Stil see only the main page, but cannot login. Is there any progres on the ddos situation?
Thanks
i can log in and play, maybe the problem is on your side or there maybe some kind of attack that the site can't block atleast every few minutes. try it again Hmmm, maybe it need some extra time to get though for my country. Still getting a page that says "Page not found" when trying to enter a game page. Will try it later today and tomorrow. When it still not get through i'll post again. Thanks for letting know that the site is working Website is now working smooth. Clear your cache or try with other browser, you should login normaly. Hi again, did try to clear cache, other browser, resetting modem and router, tried other computer, laptop and phone but stil get this when try to enter on all devices: Website is accesible but cannot find the login pages or redirections or something. When i try it from my work PC then it is working fine see: Is it possible that the ip-range where i am in is blocked or something? Before the downtime it was no problem to login and enter the website at all. The ip range from work is 83.98.*.* from here it working fine. Range from home is: 83.128.*.* this is not working from here. Hope somebody can look or advice in this. Thanks.
|
|
|
Hi,
When we will be enable again to play? Stil see only the main page, but cannot login. Is there any progres on the ddos situation?
Thanks
i can log in and play, maybe the problem is on your side or there maybe some kind of attack that the site can't block atleast every few minutes. try it again Hmmm, maybe it need some extra time to get though for my country. Still getting a page that says "Page not found" when trying to enter a game page. Will try it later today and tomorrow. When it still not get through i'll post again. Thanks for letting know that the site is working
|
|
|
Hi,
When we will be enable again to play? Stil see only the main page, but cannot login. Is there any progres on the ddos situation?
Thanks
|
|
|
Hi, can somebody help me out to extend the script of chilly2k. I have tried it and tried it but none of my changes work. I'm not a programmer :/ What i want to change in this script is as follows. What this script do is if the first loss streak comes in it will keep betting on basebet, after 1 win it wil try to bet with a high value to get losses back like previousbet * 10, when it fails it wil betting the same again but and will wait till wins come in, then again after the losses and 1 win it wil bet much bigger bet size to get all previous losses back including the 1st time. If this is keep going you will loose everything. The change what i'm looking for is when the 1st loss strike comes in it will behave as original and doing basebets till first win and then it will do the bigbet like previousbet * 10. The when it wins turn to basebet but when it fails then do martingale till win and then return to basebet. Hope my discription is clear and someone can help me out. Sorry for the bad english Many thanks. Here is the original script: chance = 39.6 martimulti = 40 basebet = .00000001 startbalance = balance nextbet = basebet savefactor = 1.25 target = .01 targetbalance = balance + target bethigh = true low = 0 high = 0 losecount = 0 stopnow = false totallose = 0 wincount = 0 nextwinbet = basebet * martimulti go = false set = false function dobet() if (lastBet.roll < chance) then low += 1 end if (lastBet.roll > (100 - chance)) then high += 1 end if (win) then wincount += 1 totallose = 0 newbalance = balance if (high > low) then bethigh = true else bethigh = false end if (wincount == 1 and go) then nextbet = nextwinbet go = false set = false else nextbet = basebet end if (wincount == 2 and previousbet != basebet) then if (stopnow) then stop() end martimulti = 40 nextwinbet = basebet * martimulti set = true losecount = 0 if (balance > targetbalance) then invest((balance - targetbalance)+target) targetbalance = targetbalance + target newbalance = targetbalance end if (newbalance > startbalance * savefactor) then invest(balance-startbalance) targetbalance = startbalance + target startbalance = startbalance * savefactor end end if (wincount == 2) then go = true end else if (wincount == 1 and previousbet != basebet ) then nextwinbet = previousbet * martimulti martimulti = martimulti / 2 if (martimulti < 1.85) then martimulti = 1.85 end losecount += 1 print(losecount) else end wincount = 0 totallose = totallose + 1 if (totallose == 2) then go = true end nextbet = basebet end end
|
|
|
|