houseworx
|
|
November 19, 2018, 12:35:40 PM Last edit: November 19, 2018, 12:46:03 PM by houseworx |
|
The obvious solution is to bet slower... How is the script detecting the wins/losses? Are you using inbuilt streak values or using "custom" variables? if currentstreak == X then nextbet = X elseif currentstreak == X then nextbet = X else nextbet = basebet using this kind of thing. Can you post a screenshot of it happening, including your script? It is more likely that it is something in your script causing this, and if you (like always) refuse to post your script (even in pm) so I can look into the issue, I'm not going to look into it until I get another, independent report of it happening. From the way the programmer mode works and when and where the bot assigns variables to and reads variables from the programmer mode, it is highly unlikely that it's a timing issue or has anything to do with the betting speed. If you do post your script (or PM/email it to me), I will look through the script to see if I can find anything and let you know what's wrong with it. If I don't find anything, I will take steps to try to reproduce the problem and if I can find the problem, I will fix it. basebet = 0.15000010 nextbet = basebet chance = 33 function dobet() if (win) then if currentstreak == +1 then nextbet = previousbet*1.9 elseif currentstreak == +2 then nextbet = previousbet*1.9 elseif currentstreak == +3 then nextbet = previousbet*1.9 elseif currentstreak == +4 then nextbet = previousbet*1.9 elseif currentstreak == +5 then nextbet = basebet*2 elseif currentstreak == +6 then nextbet = previousbet*1.9 elseif currentstreak == +7 then nextbet = previousbet*1.9 elseif currentstreak == +8 then nextbet = previousbet*1.9 elseif currentstreak == +9 then nextbet = previousbet*1.9 elseif currentstreak == +10 then nextbet = basebet*3 elseif currentstreak == +11 then nextbet = previousbet*1.9 elseif currentstreak == +12 then nextbet = previousbet*1.9 elseif currentstreak == +13 then nextbet = previousbet*1.9 elseif currentstreak == +14 then nextbet = previousbet*1.9 else nextbet = basebet end end if (!win) then nextbet = basebet end end end end thins kind of stuff, its not frequent bug, it's rare, but time after time, maybe 2-3 times in day(24hours/400 000 bets) bot are makind "missbets" when they need to stop increasing, and bet "basebet" they keep betting one more bet... maybe its web site bug(YOLOdice) because time ago iv found that they have problems with fast updating balance, and then many of bugbets occurs with very fast betting, if balance are not updeiting right in milliseconds, and basebets are calcualted from currrent balance at the moment but this one seems like bot bug, because of very fast bets. and yes another thing, new update had bugs when minimizing bot, and do some things. https://imgur.com/a/gjA9vMs
|
|
|
|
Bit-Exo.com
|
|
November 19, 2018, 12:48:52 PM |
|
Dicebot users on our site are reporting the balance doesn't show with Doge, Bxo and Clam bets in dicebot.
|
|
|
|
seuntjie (OP)
Legendary
Offline
Activity: 1717
Merit: 1125
|
|
November 19, 2018, 01:14:10 PM |
|
basebet = 0.15000010 nextbet = basebet chance = 33 function dobet() if (win) then if currentstreak == +1 then nextbet = previousbet*1.9 elseif currentstreak == +2 then nextbet = previousbet*1.9 elseif currentstreak == +3 then nextbet = previousbet*1.9 elseif currentstreak == +4 then nextbet = previousbet*1.9 elseif currentstreak == +5 then nextbet = basebet*2 elseif currentstreak == +6 then nextbet = previousbet*1.9 elseif currentstreak == +7 then nextbet = previousbet*1.9 elseif currentstreak == +8 then nextbet = previousbet*1.9 elseif currentstreak == +9 then nextbet = previousbet*1.9 elseif currentstreak == +10 then nextbet = basebet*3 elseif currentstreak == +11 then nextbet = previousbet*1.9 elseif currentstreak == +12 then nextbet = previousbet*1.9 elseif currentstreak == +13 then nextbet = previousbet*1.9 elseif currentstreak == +14 then nextbet = previousbet*1.9 else nextbet = basebet end end if (!win) then nextbet = basebet end end end end thins kind of stuff, its not frequent bug, it's rare, but time after time, maybe 2-3 times in day(24hours/400 000 bets) bot are makind "missbets" when they need to stop increasing, and bet "basebet" they keep betting one more bet... maybe its web site bug(YOLOdice) because time ago iv found that they have problems with fast updating balance, and then many of bugbets occurs with very fast betting, if balance are not updeiting right in milliseconds, and basebets are calcualted from currrent balance at the moment but this one seems like bot bug, because of very fast bets. and yes another thing, new update had bugs when minimizing bot, and do some things. https://imgur.com/a/gjA9vMsIs that your whole script? Can you include a screenshot of it happening please? You should learn how to use the modulus (%), larger than (>) and less than (<) operators, it will make your scripts much shorter, easier to understand and more efficient. Re the minimizing bug: https://bot.seuntjie.com/bugreport.aspx?id=4169
|
|
|
|
seuntjie (OP)
Legendary
Offline
Activity: 1717
Merit: 1125
|
|
November 19, 2018, 01:15:00 PM |
|
Dicebot users on our site are reporting the balance doesn't show with Doge, Bxo and Clam bets in dicebot.
Are there any API differences between using these currencies and those provided by moneypot?
|
|
|
|
houseworx
|
|
November 19, 2018, 01:42:09 PM |
|
basebet = 0.15000010 nextbet = basebet chance = 33 function dobet() if (win) then if currentstreak == +1 then nextbet = previousbet*1.9 elseif currentstreak == +2 then nextbet = previousbet*1.9 elseif currentstreak == +3 then nextbet = previousbet*1.9 elseif currentstreak == +4 then nextbet = previousbet*1.9 elseif currentstreak == +5 then nextbet = basebet*2 elseif currentstreak == +6 then nextbet = previousbet*1.9 elseif currentstreak == +7 then nextbet = previousbet*1.9 elseif currentstreak == +8 then nextbet = previousbet*1.9 elseif currentstreak == +9 then nextbet = previousbet*1.9 elseif currentstreak == +10 then nextbet = basebet*3 elseif currentstreak == +11 then nextbet = previousbet*1.9 elseif currentstreak == +12 then nextbet = previousbet*1.9 elseif currentstreak == +13 then nextbet = previousbet*1.9 elseif currentstreak == +14 then nextbet = previousbet*1.9 else nextbet = basebet end end if (!win) then nextbet = basebet end end end end thins kind of stuff, its not frequent bug, it's rare, but time after time, maybe 2-3 times in day(24hours/400 000 bets) bot are makind "missbets" when they need to stop increasing, and bet "basebet" they keep betting one more bet... maybe its web site bug(YOLOdice) because time ago iv found that they have problems with fast updating balance, and then many of bugbets occurs with very fast betting, if balance are not updeiting right in milliseconds, and basebets are calcualted from currrent balance at the moment but this one seems like bot bug, because of very fast bets. and yes another thing, new update had bugs when minimizing bot, and do some things. https://imgur.com/a/gjA9vMsIs that your whole script? Can you include a screenshot of it happening please? You should learn how to use the modulus (%), larger than (>) and less than (<) operators, it will make your scripts much shorter, easier to understand and more efficient. Re the minimizing bug: https://bot.seuntjie.com/bugreport.aspx?id=4169yes this script make that what im talking about. yes I need to learn more things I will be difficult to play and try to catch another one time... but what I can say, really nothing you will see, simple in graph will be tryed to catch 6 winning streak, when my script was made for catching only 5 winnings in row, and then decrease betsize to basebet(or basebet*2) and in console you simple will be 5 winnings in row, and bet 6th with increase while bot/script need to decrease it to basebet. its simple some kind of functionally error because of abnormal veryfast bets without speed limit.
|
|
|
|
seuntjie (OP)
Legendary
Offline
Activity: 1717
Merit: 1125
|
|
November 21, 2018, 09:06:53 AM |
|
yes this script make that what im talking about. yes I need to learn more things I will be difficult to play and try to catch another one time... but what I can say, really nothing you will see, simple in graph will be tryed to catch 6 winning streak, when my script was made for catching only 5 winnings in row, and then decrease betsize to basebet(or basebet*2) and in console you simple will be 5 winnings in row, and bet 6th with increase while bot/script need to decrease it to basebet. its simple some kind of functionally error because of abnormal veryfast bets without speed limit. Unfortunately my internet is not fast enough to be able to do 5 bets a second, so I did the next best thing. I ran a simulation of 60 000 bets using the exact script you gave me. The simulation uses the same code and executes the same functions as normal betting does significantly more bets/s than 5. I exported the bets from the simulation and processed them and what you explained did not occur once. Thinking about how the bot assigns values to those variables, if the currentstreak variable is not updated, the previousbet variable cannot be updated either, meaning if what you think is wrong is actually wrong, you would duplicate a bet, not place a bigger one. The only thing I can think of that can cause this is if the bot tries to place a specific bet twice or it received a result unexpectedly because 1) you placed a bet on the site while the bot was running, 2) you placed a manual bet from the bot while it was running, 3) you started the bot again while it was running, 4) You're playing on the same account with more than one bot, 5) There was a network/server error which caused the result of a bet to be delayed by more than 30 seconds and the bot retried the bet. The bot has checks in place to identify these situations but it's possible that it doesn't work as well as it should with sites that use sockets like yolodice does. I will see if I can find another way to try to reproduce the problem, or to improve the quality of these checks. In the meantime, I suggest you look through your script for anything that might cause it, if the script that you posted is not your full script. Run a simulation, export the files and try to find an occurrence of the bug in your exported file. If it's in there, it's a problem with your script. If it's not, it's a problem with the interface between the site and the bot that I will need to look in to
|
|
|
|
seuntjie (OP)
Legendary
Offline
Activity: 1717
Merit: 1125
|
|
November 21, 2018, 12:29:38 PM |
|
I bet in primedice in doge, but if amount> 0.001 the bots have error: Please try in a few second. Please check , thanks.
Primedice and stake both throttle bets, set the "bot speed" setting in the advanced mode to something that works for you. 1 bet per second should do the trick to remove "Please wait a few seconds and try again" message that is received from primedice and stake. Also, don't chat or bet on the site while the bot is running. I cannot hardcode a throttle because the throttles change regularly.
|
|
|
|
shartbox
Newbie
Offline
Activity: 4
Merit: 0
|
|
November 24, 2018, 01:51:28 AM |
|
betking must have changed something. i can't login through dicebot
|
|
|
|
seuntjie (OP)
Legendary
Offline
Activity: 1717
Merit: 1125
|
|
November 29, 2018, 07:25:37 AM |
|
betking must have changed something. i can't login through dicebot
I'm able to log in without a problem. It seems like they have removed most of the ethereum based tokens and now only support btc, ltc, eth and bkb. Make sure when you log in that you have one of these selected.
|
|
|
|
Sirtaky
Newbie
Offline
Activity: 1
Merit: 0
|
|
November 30, 2018, 12:34:25 PM |
|
Hello seuntjie, maybe would you mind to add Bitsler coin ( BTSLR ) to the next update? could be really nice Thank you very much!
|
|
|
|
seuntjie (OP)
Legendary
Offline
Activity: 1717
Merit: 1125
|
|
December 02, 2018, 09:38:30 AM |
|
Hello seuntjie, maybe would you mind to add Bitsler coin ( BTSLR ) to the next update? could be really nice Thank you very much! Will be added in next version
|
|
|
|
anunnaki1202
Jr. Member
Offline
Activity: 78
Merit: 1
|
|
December 02, 2018, 08:32:11 PM |
|
Hi, stop on win button is stopping even on loss
|
|
|
|
seuntjie (OP)
Legendary
Offline
Activity: 1717
Merit: 1125
|
|
December 02, 2018, 09:12:23 PM |
|
Hi, stop on win button is stopping even on loss
Can you send me a screenshot of it happening please? including the status at the bottom of the screen after it has stopped?
|
|
|
|
anunnaki1202
Jr. Member
Offline
Activity: 78
Merit: 1
|
|
December 02, 2018, 10:31:00 PM |
|
Hi, stop on win button is stopping even on loss
Can you send me a screenshot of it happening please? including the status at the bottom of the screen after it has stopped? Sorry is all OK just now I see was the scroll bar 1 line down
|
|
|
|
:wq
Copper Member
Member
Offline
Activity: 258
Merit: 49
|
|
December 03, 2018, 03:40:30 AM |
|
Hi Seuntjie, Just reporting that I'm getting the following error when betting. Not too sure whats causing it. I also have a question, how does the bot speed setting work? I've heard that there's issues with the speed for sites which have rate limits such as primedice and stake, but I haven;t been able to speed up the bot enough to hit it yet.
|
|
|
|
seuntjie (OP)
Legendary
Offline
Activity: 1717
Merit: 1125
|
|
December 03, 2018, 06:44:21 AM |
|
Hi Seuntjie, Just reporting that I'm getting the following error when betting. Not too sure whats causing it. I also have a question, how does the bot speed setting work? I've heard that there's issues with the speed for sites which have rate limits such as primedice and stake, but I haven;t been able to speed up the bot enough to hit it yet. This happens when you minimize the bot or resize it to a really small windows. If you click continue, it will continue to bet normally. When the bot speed setting is disabled, the bot bets as fast as your internet allows (and the site allows if the site delays the bet result). The bot speed setting cannot speed up bets (unless you are getting errors), it can only slow it down. If you don't hit the speed limits on primedice with the bot speed setting disabled, you probably won't. This can be because of your physical location (if you have a high latency to the server, your bets will be slower), your internet speed or the current limits of the site (They changes the rates every now and then). I'm not 100% sure what affects the rate limits on PD these days, but I know that chatting, resetting seeds, withdrawing/tipping or even just navigating the different site menus count as requests and can cause you to get throttled. Bet amount might alleviate the throttle, but I'm not 100% sure of that.
|
|
|
|
mjhadd
Newbie
Offline
Activity: 50
Merit: 0
|
|
December 03, 2018, 11:36:22 AM |
|
i amazed if a program works 100% in long run , why people you put it for free?
|
|
|
|
anunnaki1202
Jr. Member
Offline
Activity: 78
Merit: 1
|
|
December 03, 2018, 02:22:29 PM |
|
Is anyone able o modify the bot and put 2 new betting settings? They are already there but not activated hopefully (can be activated)
The winning mode could be much longer is using martingale sound scary already but should work I believe
|
|
|
|
anunnaki1202
Jr. Member
Offline
Activity: 78
Merit: 1
|
|
December 06, 2018, 06:59:30 PM |
|
I have this error keeps popping out See the end of this message for details on invoking just-in-time (JIT) debugging instead of this dialog box.
************** Exception Text ************** System.ArgumentOutOfRangeException: Value of '-478' is not valid for 'SplitterDistance'. 'SplitterDistance' must be greater than 0. Parameter name: SplitterDistance at System.Windows.Forms.SplitContainer.set_SplitterDistance(Int32 value) at DiceBot.cDiceBot.cDiceBot_Resize(Object sender, EventArgs e) at System.Windows.Forms.Control.OnResize(EventArgs e) at System.Windows.Forms.Form.OnResize(EventArgs e) at System.Windows.Forms.Control.OnSizeChanged(EventArgs e) at System.Windows.Forms.Control.UpdateBounds(Int32 x, Int32 y, Int32 width, Int32 height, Int32 clientWidth, Int32 clientHeight) at System.Windows.Forms.Control.UpdateBounds() at System.Windows.Forms.Control.WndProc(Message& m) at System.Windows.Forms.ScrollableControl.WndProc(Message& m) at System.Windows.Forms.Form.WndProc(Message& m) at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m) at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m) at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
************** Loaded Assemblies ************** mscorlib Assembly Version: 4.0.0.0 Win32 Version: 4.7.3260.0 built by: NET472REL1LAST_C CodeBase: file:///C:/Windows/Microsoft.NET/Framework/v4.0.30319/mscorlib.dll ---------------------------------------- DiceBot Assembly Version: 3.3.22.0 Win32 Version: 3.3.212.0 CodeBase: file[Suspicious link removed] ---------------------------------------- System.Windows.Forms Assembly Version: 4.0.0.0 Win32 Version: 4.7.3221.0 built by: NET472REL1LAST_C CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Windows.Forms/v4.0_4.0.0.0__b77a5c561934e089/System.Windows.Forms.dll ---------------------------------------- System Assembly Version: 4.0.0.0 Win32 Version: 4.7.3190.0 built by: NET472REL1LAST_C CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System/v4.0_4.0.0.0__b77a5c561934e089/System.dll ---------------------------------------- System.Drawing Assembly Version: 4.0.0.0 Win32 Version: 4.7.3056.0 built by: NET472REL1 CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Drawing/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll ---------------------------------------- System.Windows.Forms.DataVisualization Assembly Version: 4.0.0.0 Win32 Version: 4.7.3056.0 CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Windows.Forms.DataVisualization/v4.0_4.0.0.0__31bf3856ad364e35/System.Windows.Forms.DataVisualization.dll ---------------------------------------- SharpLua Assembly Version: 2.0.4696.34005 Win32 Version: 2.0.0.0 CodeBase: file:///C:/Users/giurg/Desktop/DiceBot%203.3.22/SharpLua.DLL ---------------------------------------- System.Configuration Assembly Version: 4.0.0.0 Win32 Version: 4.7.3056.0 built by: NET472REL1 CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Configuration/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll ---------------------------------------- System.Core Assembly Version: 4.0.0.0 Win32 Version: 4.7.3221.0 built by: NET472REL1LAST_C CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Core/v4.0_4.0.0.0__b77a5c561934e089/System.Core.dll ---------------------------------------- System.Xml Assembly Version: 4.0.0.0 Win32 Version: 4.7.3056.0 built by: NET472REL1 CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Xml/v4.0_4.0.0.0__b77a5c561934e089/System.Xml.dll ---------------------------------------- System.Data.SQLite Assembly Version: 1.0.109.0 Win32 Version: 1.0.109.0 CodeBase: file:///C:/Users/giurg/Desktop/DiceBot%203.3.22/System.Data.SQLite.DLL ---------------------------------------- System.Data Assembly Version: 4.0.0.0 Win32 Version: 4.7.3260.0 built by: NET472REL1LAST_C CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_32/System.Data/v4.0_4.0.0.0__b77a5c561934e089/System.Data.dll ---------------------------------------- System.Transactions Assembly Version: 4.0.0.0 Win32 Version: 4.7.3221.0 built by: NET472REL1LAST_C CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_32/System.Transactions/v4.0_4.0.0.0__b77a5c561934e089/System.Transactions.dll ---------------------------------------- System.EnterpriseServices Assembly Version: 4.0.0.0 Win32 Version: 4.7.3056.0 built by: NET472REL1 CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_32/System.EnterpriseServices/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.EnterpriseServices.dll ---------------------------------------- Accessibility Assembly Version: 4.0.0.0 Win32 Version: 4.7.3056.0 built by: NET472REL1 CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/Accessibility/v4.0_4.0.0.0__b03f5f7f11d50a3a/Accessibility.dll ---------------------------------------- PresentationCore Assembly Version: 4.0.0.0 Win32 Version: 4.7.3221.0 built by: NET472REL1LAST_C CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_32/PresentationCore/v4.0_4.0.0.0__31bf3856ad364e35/PresentationCore.dll ---------------------------------------- WindowsBase Assembly Version: 4.0.0.0 Win32 Version: 4.7.3221.0 built by: NET472REL1LAST_C CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/WindowsBase/v4.0_4.0.0.0__31bf3856ad364e35/WindowsBase.dll ---------------------------------------- GraphQL.Client Assembly Version: 1.0.3.0 Win32 Version: 1.0.3.0 CodeBase: file:///C:/Users/giurg/Desktop/DiceBot%203.3.22/GraphQL.Client.DLL ---------------------------------------- System.Runtime Assembly Version: 4.0.0.0 Win32 Version: 4.7.3056.0 CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Runtime/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Runtime.dll ---------------------------------------- System.Net.Http Assembly Version: 4.0.0.0 Win32 Version: 4.7.3056.0 built by: NET472REL1 CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Net.Http/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Net.Http.dll ---------------------------------------- GraphQL.Common Assembly Version: 1.0.3.0 Win32 Version: 1.0.3.0 CodeBase: file:///C:/Users/giurg/Desktop/DiceBot%203.3.22/GraphQL.Common.DLL ---------------------------------------- System.Threading.Tasks Assembly Version: 4.0.0.0 Win32 Version: 4.7.3056.0 CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Threading.Tasks/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Threading.Tasks.dll ---------------------------------------- Newtonsoft.Json Assembly Version: 11.0.0.0 Win32 Version: 11.0.2.21924 CodeBase: file:///C:/Users/giurg/Desktop/DiceBot%203.3.22/Newtonsoft.Json.DLL ---------------------------------------- System.IO Assembly Version: 4.0.0.0 Win32 Version: 4.7.3056.0 CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.IO/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.IO.dll ---------------------------------------- System.Runtime.Serialization Assembly Version: 4.0.0.0 Win32 Version: 4.7.3260.0 built by: NET472REL1LAST_C CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Runtime.Serialization/v4.0_4.0.0.0__b77a5c561934e089/System.Runtime.Serialization.dll ---------------------------------------- System.Numerics Assembly Version: 4.0.0.0 Win32 Version: 4.7.3056.0 built by: NET472REL1 CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Numerics/v4.0_4.0.0.0__b77a5c561934e089/System.Numerics.dll ---------------------------------------- System.Dynamic.Runtime Assembly Version: 4.0.0.0 Win32 Version: 4.7.3056.0 CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Dynamic.Runtime/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Dynamic.Runtime.dll ---------------------------------------- System.Net.Primitives Assembly Version: 4.0.0.0 Win32 Version: 4.7.3056.0 CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Net.Primitives/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Net.Primitives.dll ---------------------------------------- Microsoft.CSharp Assembly Version: 4.0.0.0 Win32 Version: 4.7.3056.0 CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/Microsoft.CSharp/v4.0_4.0.0.0__b03f5f7f11d50a3a/Microsoft.CSharp.dll ---------------------------------------- System.Dynamic Assembly Version: 4.0.0.0 Win32 Version: 4.7.3056.0 CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Dynamic/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Dynamic.dll ---------------------------------------- Anonymously Hosted DynamicMethods Assembly Assembly Version: 0.0.0.0 Win32 Version: 4.7.3260.0 built by: NET472REL1LAST_C CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_32/mscorlib/v4.0_4.0.0.0__b77a5c561934e089/mscorlib.dll ----------------------------------------
************** JIT Debugging ************** To enable just-in-time (JIT) debugging, the .config file for this application or computer (machine.config) must have the jitDebugging value set in the system.windows.forms section. The application must also be compiled with debugging enabled.
For example:
<configuration> <system.windows.forms jitDebugging="true" /> </configuration>
When JIT debugging is enabled, any unhandled exception will be sent to the JIT debugger registered on the computer rather than be handled by this dialog box.
|
|
|
|
seuntjie (OP)
Legendary
Offline
Activity: 1717
Merit: 1125
|
|
December 06, 2018, 07:00:23 PM |
|
I have this error keeps popping out See the end of this message for details on invoking just-in-time (JIT) debugging instead of this dialog box.
************** Exception Text ************** System.ArgumentOutOfRangeException: Value of '-478' is not valid for 'SplitterDistance'. 'SplitterDistance' must be greater than 0. Parameter name: SplitterDistance at System.Windows.Forms.SplitContainer.set_SplitterDistance(Int32 value) at DiceBot.cDiceBot.cDiceBot_Resize(Object sender, EventArgs e) at System.Windows.Forms.Control.OnResize(EventArgs e) at System.Windows.Forms.Form.OnResize(EventArgs e) at System.Windows.Forms.Control.OnSizeChanged(EventArgs e) at System.Windows.Forms.Control.UpdateBounds(Int32 x, Int32 y, Int32 width, Int32 height, Int32 clientWidth, Int32 clientHeight) at System.Windows.Forms.Control.UpdateBounds() at System.Windows.Forms.Control.WndProc(Message& m) at System.Windows.Forms.ScrollableControl.WndProc(Message& m) at System.Windows.Forms.Form.WndProc(Message& m) at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m) at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m) at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
************** Loaded Assemblies ************** mscorlib Assembly Version: 4.0.0.0 Win32 Version: 4.7.3260.0 built by: NET472REL1LAST_C CodeBase: file:///C:/Windows/Microsoft.NET/Framework/v4.0.30319/mscorlib.dll ---------------------------------------- DiceBot Assembly Version: 3.3.22.0 Win32 Version: 3.3.212.0 CodeBase: file[Suspicious link removed] ---------------------------------------- System.Windows.Forms Assembly Version: 4.0.0.0 Win32 Version: 4.7.3221.0 built by: NET472REL1LAST_C CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Windows.Forms/v4.0_4.0.0.0__b77a5c561934e089/System.Windows.Forms.dll ---------------------------------------- System Assembly Version: 4.0.0.0 Win32 Version: 4.7.3190.0 built by: NET472REL1LAST_C CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System/v4.0_4.0.0.0__b77a5c561934e089/System.dll ---------------------------------------- System.Drawing Assembly Version: 4.0.0.0 Win32 Version: 4.7.3056.0 built by: NET472REL1 CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Drawing/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll ---------------------------------------- System.Windows.Forms.DataVisualization Assembly Version: 4.0.0.0 Win32 Version: 4.7.3056.0 CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Windows.Forms.DataVisualization/v4.0_4.0.0.0__31bf3856ad364e35/System.Windows.Forms.DataVisualization.dll ---------------------------------------- SharpLua Assembly Version: 2.0.4696.34005 Win32 Version: 2.0.0.0 CodeBase: file:///C:/Users/giurg/Desktop/DiceBot%203.3.22/SharpLua.DLL ---------------------------------------- System.Configuration Assembly Version: 4.0.0.0 Win32 Version: 4.7.3056.0 built by: NET472REL1 CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Configuration/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll ---------------------------------------- System.Core Assembly Version: 4.0.0.0 Win32 Version: 4.7.3221.0 built by: NET472REL1LAST_C CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Core/v4.0_4.0.0.0__b77a5c561934e089/System.Core.dll ---------------------------------------- System.Xml Assembly Version: 4.0.0.0 Win32 Version: 4.7.3056.0 built by: NET472REL1 CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Xml/v4.0_4.0.0.0__b77a5c561934e089/System.Xml.dll ---------------------------------------- System.Data.SQLite Assembly Version: 1.0.109.0 Win32 Version: 1.0.109.0 CodeBase: file:///C:/Users/giurg/Desktop/DiceBot%203.3.22/System.Data.SQLite.DLL ---------------------------------------- System.Data Assembly Version: 4.0.0.0 Win32 Version: 4.7.3260.0 built by: NET472REL1LAST_C CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_32/System.Data/v4.0_4.0.0.0__b77a5c561934e089/System.Data.dll ---------------------------------------- System.Transactions Assembly Version: 4.0.0.0 Win32 Version: 4.7.3221.0 built by: NET472REL1LAST_C CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_32/System.Transactions/v4.0_4.0.0.0__b77a5c561934e089/System.Transactions.dll ---------------------------------------- System.EnterpriseServices Assembly Version: 4.0.0.0 Win32 Version: 4.7.3056.0 built by: NET472REL1 CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_32/System.EnterpriseServices/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.EnterpriseServices.dll ---------------------------------------- Accessibility Assembly Version: 4.0.0.0 Win32 Version: 4.7.3056.0 built by: NET472REL1 CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/Accessibility/v4.0_4.0.0.0__b03f5f7f11d50a3a/Accessibility.dll ---------------------------------------- PresentationCore Assembly Version: 4.0.0.0 Win32 Version: 4.7.3221.0 built by: NET472REL1LAST_C CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_32/PresentationCore/v4.0_4.0.0.0__31bf3856ad364e35/PresentationCore.dll ---------------------------------------- WindowsBase Assembly Version: 4.0.0.0 Win32 Version: 4.7.3221.0 built by: NET472REL1LAST_C CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/WindowsBase/v4.0_4.0.0.0__31bf3856ad364e35/WindowsBase.dll ---------------------------------------- GraphQL.Client Assembly Version: 1.0.3.0 Win32 Version: 1.0.3.0 CodeBase: file:///C:/Users/giurg/Desktop/DiceBot%203.3.22/GraphQL.Client.DLL ---------------------------------------- System.Runtime Assembly Version: 4.0.0.0 Win32 Version: 4.7.3056.0 CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Runtime/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Runtime.dll ---------------------------------------- System.Net.Http Assembly Version: 4.0.0.0 Win32 Version: 4.7.3056.0 built by: NET472REL1 CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Net.Http/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Net.Http.dll ---------------------------------------- GraphQL.Common Assembly Version: 1.0.3.0 Win32 Version: 1.0.3.0 CodeBase: file:///C:/Users/giurg/Desktop/DiceBot%203.3.22/GraphQL.Common.DLL ---------------------------------------- System.Threading.Tasks Assembly Version: 4.0.0.0 Win32 Version: 4.7.3056.0 CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Threading.Tasks/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Threading.Tasks.dll ---------------------------------------- Newtonsoft.Json Assembly Version: 11.0.0.0 Win32 Version: 11.0.2.21924 CodeBase: file:///C:/Users/giurg/Desktop/DiceBot%203.3.22/Newtonsoft.Json.DLL ---------------------------------------- System.IO Assembly Version: 4.0.0.0 Win32 Version: 4.7.3056.0 CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.IO/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.IO.dll ---------------------------------------- System.Runtime.Serialization Assembly Version: 4.0.0.0 Win32 Version: 4.7.3260.0 built by: NET472REL1LAST_C CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Runtime.Serialization/v4.0_4.0.0.0__b77a5c561934e089/System.Runtime.Serialization.dll ---------------------------------------- System.Numerics Assembly Version: 4.0.0.0 Win32 Version: 4.7.3056.0 built by: NET472REL1 CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Numerics/v4.0_4.0.0.0__b77a5c561934e089/System.Numerics.dll ---------------------------------------- System.Dynamic.Runtime Assembly Version: 4.0.0.0 Win32 Version: 4.7.3056.0 CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Dynamic.Runtime/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Dynamic.Runtime.dll ---------------------------------------- System.Net.Primitives Assembly Version: 4.0.0.0 Win32 Version: 4.7.3056.0 CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Net.Primitives/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Net.Primitives.dll ---------------------------------------- Microsoft.CSharp Assembly Version: 4.0.0.0 Win32 Version: 4.7.3056.0 CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/Microsoft.CSharp/v4.0_4.0.0.0__b03f5f7f11d50a3a/Microsoft.CSharp.dll ---------------------------------------- System.Dynamic Assembly Version: 4.0.0.0 Win32 Version: 4.7.3056.0 CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Dynamic/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Dynamic.dll ---------------------------------------- Anonymously Hosted DynamicMethods Assembly Assembly Version: 0.0.0.0 Win32 Version: 4.7.3260.0 built by: NET472REL1LAST_C CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_32/mscorlib/v4.0_4.0.0.0__b77a5c561934e089/mscorlib.dll ----------------------------------------
************** JIT Debugging ************** To enable just-in-time (JIT) debugging, the .config file for this application or computer (machine.config) must have the jitDebugging value set in the system.windows.forms section. The application must also be compiled with debugging enabled.
For example:
<configuration> <system.windows.forms jitDebugging="true" /> </configuration>
When JIT debugging is enabled, any unhandled exception will be sent to the JIT debugger registered on the computer rather than be handled by this dialog box.
This happens when you minimize the bot or resize it to a really small windows. If you click continue, it will continue to bet normally.
When the bot speed setting is disabled, the bot bets as fast as your internet allows (and the site allows if the site delays the bet result). The bot speed setting cannot speed up bets (unless you are getting errors), it can only slow it down. If you don't hit the speed limits on primedice with the bot speed setting disabled, you probably won't. This can be because of your physical location (if you have a high latency to the server, your bets will be slower), your internet speed or the current limits of the site (They changes the rates every now and then). I'm not 100% sure what affects the rate limits on PD these days, but I know that chatting, resetting seeds, withdrawing/tipping or even just navigating the different site menus count as requests and can cause you to get throttled. Bet amount might alleviate the throttle, but I'm not 100% sure of that.
|
|
|
|
|