Bitcoin Forum
May 17, 2024, 11:54:14 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 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 ... 168 »
  Print  
Author Topic: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts!  (Read 274511 times)
chilly2k
Legendary
*
Offline Offline

Activity: 1007
Merit: 1000


View Profile
November 26, 2016, 12:51:00 AM
 #1661

Hi,

Why does the script not stop automatically?
Bug code?

Quote
--Tier et Tout Script V1.0 by StarBruck
--Tips appreciated - 18FLaw2fkzzua7C72BdVs613wuAsuw9jvb, or tip "StarBruck" on PrimeDice
--More strategy info at http://www.roulette30.com/2010/04/tier-et-tout.html
startingbet = 0.00000009 --This is the total amount when
basebet = startingbet/3 --Bets work better when basebet is divisible by 3. Try 3, 9, 12 , 15 , 18, etc.
nextbet = basebet
sessionprofit = 0 --How much you made in total.
profitamount = 0 --How much you made until a reset.
profittarget = 0.00000020 --Bot resets after this profit target is reached.
profitlimit = 0.00000200 --Bot stops after this profit limit is reached.
chance = 49.50 --MUST be 49.50
won = 0
lost = 0

function dobet()

if (win) then
    nextbet = previousbet + previousbet/3
    profitamount=profitamount+currentprofit
    won = won+1
    lost = 0
    if profitamount >= profittarget then
   profitamount = 0
   nextbet = basebet
    end
    if sessionprofit >= profitlimit then
   print("Profit Limit reached. Stopping now...")
   print("Session Profit: " .. sessionprofit)
   sessionprofit = 0
   nextbet = basebet
   stop()
    end
    else
    nextbet = previousbet * 2
    profitamount=profitamount+currentprofit
    lost = lost+1
    won = 0 
   if (bethigh) then
   bethigh = false
   else
   bethigh = true
        end
   if lost >= 2  then
   nextbet = basebet
        end
end                                         <- Ends the if win statement
end                                         <- ends the dobet function.  Following code will never execute.   
   if sessionprofit <= profitamount then
   sessionprofit = profitamount
   end
   

Thx

  See my notes in red, in your code.  I don't know if moving the if sessionprofit code between the 2 end statements is going to do anything.

You should add print statement to the code and make sure sessionprofit is getting updated like your expecting. 

Funscalping
Newbie
*
Offline Offline

Activity: 10
Merit: 0


View Profile
November 26, 2016, 02:17:32 AM
 #1662

Hi,

Why does the script not stop automatically?
Bug code?

Quote
--Tier et Tout Script V1.0 by StarBruck
--Tips appreciated - 18FLaw2fkzzua7C72BdVs613wuAsuw9jvb, or tip "StarBruck" on PrimeDice
--More strategy info at http://www.roulette30.com/2010/04/tier-et-tout.html
startingbet = 0.00000009 --This is the total amount when
basebet = startingbet/3 --Bets work better when basebet is divisible by 3. Try 3, 9, 12 , 15 , 18, etc.
nextbet = basebet
sessionprofit = 0 --How much you made in total.
profitamount = 0 --How much you made until a reset.
profittarget = 0.00000020 --Bot resets after this profit target is reached.
profitlimit = 0.00000200 --Bot stops after this profit limit is reached.
chance = 49.50 --MUST be 49.50
won = 0
lost = 0

function dobet()

if (win) then
    nextbet = previousbet + previousbet/3
    profitamount=profitamount+currentprofit
    won = won+1
    lost = 0
    if profitamount >= profittarget then
   profitamount = 0
   nextbet = basebet
    end
    if sessionprofit >= profitlimit then
   print("Profit Limit reached. Stopping now...")
   print("Session Profit: " .. sessionprofit)
   sessionprofit = 0
   nextbet = basebet
   stop()
    end
    else
    nextbet = previousbet * 2
    profitamount=profitamount+currentprofit
    lost = lost+1
    won = 0 
   if (bethigh) then
   bethigh = false
   else
   bethigh = true
        end
   if lost >= 2  then
   nextbet = basebet
        end
end                                         <- Ends the if win statement
end                                         <- ends the dobet function.  Following code will never execute.   
   if sessionprofit <= profitamount then
   sessionprofit = profitamount
   end
   

Thx

  See my notes in red, in your code.  I don't know if moving the if sessionprofit code between the 2 end statements is going to do anything.

You should add print statement to the code and make sure sessionprofit is getting updated like your expecting. 

This code is not mine.
I do not know how to program.
Can you fix the script?

Thank's
Funscalping
Newbie
*
Offline Offline

Activity: 10
Merit: 0


View Profile
November 26, 2016, 02:25:02 AM
 #1663

Hi,

How to code auto withdraw in script?
 I tested this:
   
    if (balance > 0.16) then withdraw (10000, BTC addr)

Dont work


Thx

   What happens?  First off, do you have BTC addr defined or are you using your eal address there?  Do you have 10000 BTC to withdraw? 
What site are you trying to do this on?  Some don't work, but I',m not sure which ones. 

I found the answer.
This does not work on Bitsler.

Thank you for your reply.
seuntjie (OP)
Legendary
*
Offline Offline

Activity: 1717
Merit: 1125



View Profile WWW
November 26, 2016, 07:28:13 AM
 #1664

  What happens?  First off, do you have BTC addr defined or are you using your eal address there?  Do you have 10000 BTC to withdraw?  
What site are you trying to do this on?  Some don't work, but I',m not sure which ones.  
Here's a list of supported sites and what features are enabled on them: https://bot.seuntjie.com/features.aspx

Funscalping
Newbie
*
Offline Offline

Activity: 10
Merit: 0


View Profile
November 26, 2016, 12:19:06 PM
Last edit: November 26, 2016, 12:44:21 PM by Funscalping
 #1665

Hi all,
My first script Tongue

Quote
-- Martingale avec 0.99% de chance d'avoir un spin gagnant et
-- qui paye 100 fois le bet en cours.
-- Elle augmente le bet de 1% si le spin est perdant et s'il est gagnant
-- on repart au bet de base.

nextbet = 0.000001
speed = 5.0
maxbal = balance+0.01000000 -- Réglage de l'objectif des gains
chance = 0.99
base = 0.000001
function dobet()
if win then
      nextbet=base
      else
      nextbet = previousbet+(previousbet*0.01)
end
      if balance > maxbal then
   print("Profit Objectif atteint. Arrêt du Script...")
   ching()
   ching()
   ching()
   stop()
    end
end

Please can you help me for auto withdraw on PrimeDice (BTC)
exemple:
if balance > maxbal then withdraw.............
seuntjie (OP)
Legendary
*
Offline Offline

Activity: 1717
Merit: 1125



View Profile WWW
November 26, 2016, 02:11:40 PM
 #1666

Hi all,
My first script Tongue

Quote
-- Martingale avec 0.99% de chance d'avoir un spin gagnant et
-- qui paye 100 fois le bet en cours.
-- Elle augmente le bet de 1% si le spin est perdant et s'il est gagnant
-- on repart au bet de base.

nextbet = 0.000001
speed = 5.0
maxbal = balance+0.01000000 -- Réglage de l'objectif des gains
chance = 0.99
base = 0.000001
function dobet()
if win then
      nextbet=base
      else
      nextbet = previousbet+(previousbet*0.01)
end
      if balance > maxbal then
   print("Profit Objectif atteint. Arrêt du Script...")
   ching()
   ching()
   ching()
   stop()
    end
end

Please can you help me for auto withdraw on PrimeDice (BTC)
exemple:
if balance > maxbal then withdraw.............

Here's a page with some information about the programmer mode as well as some links to video and written tutorials: https://bot.seuntjie.com/programmermode.aspx

Funscalping
Newbie
*
Offline Offline

Activity: 10
Merit: 0


View Profile
November 26, 2016, 08:06:28 PM
Last edit: November 26, 2016, 08:58:53 PM by Funscalping
 #1667

Hi all,
My first script Tongue

Quote
-- Martingale avec 0.99% de chance d'avoir un spin gagnant et
-- qui paye 100 fois le bet en cours.
-- Elle augmente le bet de 1% si le spin est perdant et s'il est gagnant
-- on repart au bet de base.

nextbet = 0.000001
speed = 5.0
maxbal = balance+0.01000000 -- Réglage de l'objectif des gains
chance = 0.99
base = 0.000001
function dobet()
if win then
      nextbet=base
      else
      nextbet = previousbet+(previousbet*0.01)
end
      if balance > maxbal then
   print("Profit Objectif atteint. Arrêt du Script...")
   ching()
   ching()
   ching()
   stop()
    end
end

Please can you help me for auto withdraw on PrimeDice (BTC)
exemple:
if balance > maxbal then withdraw.............

Here's a page with some information about the programmer mode as well as some links to video and written tutorials: https://bot.seuntjie.com/programmermode.aspx
Quote
-- Martingale avec 0.99% de chance d'avoir un spin gagnant et
-- qui paye 100 fois le bet en cours.
-- Elle augmente le bet de 1% si le spin est perdant et s'il est gagnant
-- on repart au bet de base.

nextbet = 0.000001
speed = 5.0
maxbal = balance+0.01100000 -- Réglage de l'objectif des gains
chance = 0.99
base = 0.000001
function dobet()
if win then
      nextbet=base
      else
      nextbet = previousbet+(previousbet*0.01)
end
      if balance > maxbal then
        print("$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$")
        print("$                BINGO TP TOUCHE               $")
        print("$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$")
   ching()
   ching()
   ching()
   -- stop()
   withdraw(0.0102, "33X8JJnduuuvuDHbpDQjTfRZWWQfpC7mxn")
    end
end

Here is my code with auto withdraw on Primedice.
It does not work.
Why?

forzendiablo
Legendary
*
Offline Offline

Activity: 1526
Merit: 1000


the grandpa of cryptos


View Profile
November 29, 2016, 01:03:48 AM
 #1668

trying the new version fo the bot Smiley seuntje rocks!

yolo
emsjvh
Full Member
***
Offline Offline

Activity: 324
Merit: 100



View Profile
November 29, 2016, 05:51:12 AM
 #1669

I can't seem to log into FortuneJack.

Error below: (I've tried waiting for a bit and re-logging)
Is there anyway to manually login within DiceBot?

seuntjie (OP)
Legendary
*
Offline Offline

Activity: 1717
Merit: 1125



View Profile WWW
November 29, 2016, 06:34:08 AM
 #1670

I can't seem to log into FortuneJack.

Error below: (I've tried waiting for a bit and re-logging)
Is there anyway to manually login within DiceBot?



That is the manual way of logging in the FJ. Their cloudflare protection became weird again and is causing trouble for the bot. I'm not sure how to fix it yet.

BoXXoB
Legendary
*
Offline Offline

Activity: 2018
Merit: 1108



View Profile
November 29, 2016, 07:22:22 AM
 #1671

I can't seem to log into FortuneJack.

Error below: (I've tried waiting for a bit and re-logging)
Is there anyway to manually login within DiceBot?



That is the manual way of logging in the FJ. Their cloudflare protection became weird again and is causing trouble for the bot. I'm not sure how to fix it yet.

Luckily there's plenty of better options than FortuneJack that don't cause similar problems and are still better in almost every way Wink

Decisions, decisions. I'm sure it's not the worst option though Cheesy

.
████████████████████████████████████████████████████████
███████████████████████████████████████████████████████
████████████████████████████████████████████████████████
██████████████████████████████████████████████████████
██████████████████████████████████████████████████████
████████████████████████████████████████████████████████
████████████████████████████████████████████████████████
████████████████████████████████████████████████████████
.
⚫︎  ⚫︎  ⚫︎  ⚫︎  ⚫︎
⚫︎  ⚫︎  ⚫︎  ⚫︎  ⚫︎
⚫︎  ⚫︎  ⚫︎  ⚫︎  ⚫︎
.
.
████████████
████████████████████
████████████████████
██
██████████████████████
██
██████████████████████
██
██████████████████████
██
██████████████████████
████████████████████████
██
██████████████████████
██
██████████████████
████████████████████
████████████
|
 UNIQUE 
GAMES
|
 NO 
KYC
|
 WITHDRAW 
IN MINUTES
|
░█▀███████
█▀▀█░░░█████████▀▀█
██░█▄█████████
████████▀█▀█▀██
███████▀▀░▀██
▀▄█████▀█░█▀▄▀
████████
██████
████
████
████
▄▄████████▄▄
██████████████
oneyesoneno
Sr. Member
****
Offline Offline

Activity: 476
Merit: 250



View Profile
November 29, 2016, 02:24:49 PM
 #1672

can i know how to reset setting to default? anything that i modify on advance mode seems still there.
forzendiablo
Legendary
*
Offline Offline

Activity: 1526
Merit: 1000


the grandpa of cryptos


View Profile
November 29, 2016, 07:15:44 PM
 #1673

im having problem playing bitlser.

lets say i choose to play LTC.

i setup the bot run it.. and after 5-8 bets it just stops playing.

my conditions are not set to stop..



any ideas ?

yolo
john85gotti
Newbie
*
Offline Offline

Activity: 8
Merit: 0


View Profile
November 29, 2016, 11:40:45 PM
 #1674

Hey,

Please help, after 11 hours of running the bot is Not responding and force to close.
seuntjie (OP)
Legendary
*
Offline Offline

Activity: 1717
Merit: 1125



View Profile WWW
November 30, 2016, 06:29:31 AM
 #1675

can i know how to reset setting to default? anything that i modify on advance mode seems still there.

see "How do I reset my bot to default settings?" on https://bot.seuntjie.com/faqs.aspx#faq18

im having problem playing bitlser.

lets say i choose to play LTC.

i setup the bot run it.. and after 5-8 bets it just stops playing.

my conditions are not set to stop..



any ideas ?

does it do the same when playing with btc?

Hey,

Please help, after 11 hours of running the bot is Not responding and force to close.
try renaming the dicebot.db file while the bot is closed and see if that helps

ranlo
Legendary
*
Offline Offline

Activity: 1974
Merit: 1007



View Profile
November 30, 2016, 07:06:11 AM
 #1676

can i know how to reset setting to default? anything that i modify on advance mode seems still there.

see "How do I reset my bot to default settings?" on https://bot.seuntjie.com/faqs.aspx#faq18

im having problem playing bitlser.

lets say i choose to play LTC.

i setup the bot run it.. and after 5-8 bets it just stops playing.

my conditions are not set to stop..



any ideas ?

does it do the same when playing with btc?

Hey,

Please help, after 11 hours of running the bot is Not responding and force to close.
try renaming the dicebot.db file while the bot is closed and see if that helps

On Bitsler, I had to set it to 1.00 bets per second myself. Anything higher and it does what he said (even at 1.1/s). This is on the latest version. Runs flawlessly once it's set to 1/s.

https://nanogames.io/i-bctalk-n/
Message for info on how to get kickbacks on sites like Nano (above) and CryptoPlay!
john85gotti
Newbie
*
Offline Offline

Activity: 8
Merit: 0


View Profile
November 30, 2016, 09:02:07 AM
 #1677

Please help, after 11 hours of running the bot is Not responding and force to close.
try renaming the dicebot.db file while the bot is closed and see if that helps

i tried to rename de .db , it's always the same error...and stuck

https://i.imgsafe.org/e94eb48713.png


and this is the content of error:


Code:
See the end of this message for details on invoking 
just-in-time (JIT) debugging instead of this dialog box.

************** Exception Text **************
System.OutOfMemoryException: Exception of type 'System.OutOfMemoryException' was thrown.
   at System.TimeZoneInfo.GetDaylightTime(Int32 year, AdjustmentRule rule)
   at System.TimeZoneInfo.GetIsDaylightSavingsFromUtc(DateTime time, Int32 Year, TimeSpan utc, AdjustmentRule rule, Boolean& isAmbiguousLocalDst, TimeZoneInfo zone)
   at System.TimeZoneInfo.GetDateTimeNowUtcOffsetFromUtc(DateTime time, Boolean& isAmbiguousLocalDst)
   at System.DateTime.get_Now()
   at DiceBot.cDiceBot.tmBetting_Tick(Object sender, EventArgs e)
   at System.Windows.Forms.Timer.OnTick(EventArgs e)
   at System.Windows.Forms.Timer.TimerNativeWindow.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.6.1055.0 built by: NETFXREL2
    CodeBase: file:///C:/Windows/Microsoft.NET/Framework/v4.0.30319/mscorlib.dll
----------------------------------------
DiceBot
    Assembly Version: 3.2.3.0
    Win32 Version: 3.2.3.0
    CodeBase: file[Suspicious link removed]
----------------------------------------
System.Windows.Forms
    Assembly Version: 4.0.0.0
    Win32 Version: 4.6.1055.0 built by: NETFXREL2
    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.6.1055.0 built by: NETFXREL2
    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.6.1055.0 built by: NETFXREL2
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Drawing/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll
----------------------------------------
SharpLua
    Assembly Version: 2.0.4696.34005
    Win32 Version: 2.0.0.0
    CodeBase: file:///C:/Users/wpuser05/Desktop/DiceBot-3.2.4/SharpLua.DLL
----------------------------------------
System.Windows.Forms.DataVisualization
    Assembly Version: 4.0.0.0
    Win32 Version: 4.6.1055.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
----------------------------------------
System.Configuration
    Assembly Version: 4.0.0.0
    Win32 Version: 4.6.1055.0 built by: NETFXREL2
    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.6.1055.0 built by: NETFXREL2
    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.6.1055.0 built by: NETFXREL2
    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.94.0
    Win32 Version: 1.0.94.0
    CodeBase: file:///C:/Users/wpuser05/Desktop/DiceBot-3.2.4/System.Data.SQLite.DLL
----------------------------------------
System.Data
    Assembly Version: 4.0.0.0
    Win32 Version: 4.6.1055.0 built by: NETFXREL2
    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.6.1055.0 built by: NETFXREL2
    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.6.1055.0 built by: NETFXREL2
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_32/System.EnterpriseServices/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.EnterpriseServices.dll
----------------------------------------
System.Net.Http
    Assembly Version: 4.0.0.0
    Win32 Version: 4.6.1055.0 built by: NETFXREL2
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Net.Http/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Net.Http.dll
----------------------------------------
PresentationCore
    Assembly Version: 4.0.0.0
    Win32 Version: 4.6.1055.0 built by: NETFXREL2
    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.6.1055.0 built by: NETFXREL2
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/WindowsBase/v4.0_4.0.0.0__31bf3856ad364e35/WindowsBase.dll
----------------------------------------
System.Runtime.Serialization
    Assembly Version: 4.0.0.0
    Win32 Version: 4.6.1055.0 built by: NETFXREL2
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Runtime.Serialization/v4.0_4.0.0.0__b77a5c561934e089/System.Runtime.Serialization.dll
----------------------------------------
SMDiagnostics
    Assembly Version: 4.0.0.0
    Win32 Version: 4.6.1055.0 built by: NETFXREL2
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/SMDiagnostics/v4.0_4.0.0.0__b77a5c561934e089/SMDiagnostics.dll
----------------------------------------
System.ServiceModel.Internals
    Assembly Version: 4.0.0.0
    Win32 Version: 4.6.1055.0 built by: NETFXREL2
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.ServiceModel.Internals/v4.0_4.0.0.0__31bf3856ad364e35/System.ServiceModel.Internals.dll
----------------------------------------
Microsoft.VisualBasic
    Assembly Version: 10.0.0.0
    Win32 Version: 14.6.1055.0 built by: NETFXREL2
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/Microsoft.VisualBasic/v4.0_10.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualBasic.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 Offline

Activity: 1717
Merit: 1125



View Profile WWW
November 30, 2016, 09:24:15 AM
 #1678

Please help, after 11 hours of running the bot is Not responding and force to close.
try renaming the dicebot.db file while the bot is closed and see if that helps

i tried to rename de .db , it's always the same error...and stuck




and this is the content of error:


Code:
See the end of this message for details on invoking 
just-in-time (JIT) debugging instead of this dialog box.

************** Exception Text **************
System.OutOfMemoryException: Exception of type 'System.OutOfMemoryException' was thrown.
   at System.TimeZoneInfo.GetDaylightTime(Int32 year, AdjustmentRule rule)
   at System.TimeZoneInfo.GetIsDaylightSavingsFromUtc(DateTime time, Int32 Year, TimeSpan utc, AdjustmentRule rule, Boolean& isAmbiguousLocalDst, TimeZoneInfo zone)
   at System.TimeZoneInfo.GetDateTimeNowUtcOffsetFromUtc(DateTime time, Boolean& isAmbiguousLocalDst)
   at System.DateTime.get_Now()
   at DiceBot.cDiceBot.tmBetting_Tick(Object sender, EventArgs e)
   at System.Windows.Forms.Timer.OnTick(EventArgs e)
   at System.Windows.Forms.Timer.TimerNativeWindow.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.6.1055.0 built by: NETFXREL2
    CodeBase: file:///C:/Windows/Microsoft.NET/Framework/v4.0.30319/mscorlib.dll
----------------------------------------
DiceBot
    Assembly Version: 3.2.3.0
    Win32 Version: 3.2.3.0
    CodeBase: file[Suspicious link removed]
----------------------------------------
System.Windows.Forms
    Assembly Version: 4.0.0.0
    Win32 Version: 4.6.1055.0 built by: NETFXREL2
    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.6.1055.0 built by: NETFXREL2
    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.6.1055.0 built by: NETFXREL2
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Drawing/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll
----------------------------------------
SharpLua
    Assembly Version: 2.0.4696.34005
    Win32 Version: 2.0.0.0
    CodeBase: file:///C:/Users/wpuser05/Desktop/DiceBot-3.2.4/SharpLua.DLL
----------------------------------------
System.Windows.Forms.DataVisualization
    Assembly Version: 4.0.0.0
    Win32 Version: 4.6.1055.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
----------------------------------------
System.Configuration
    Assembly Version: 4.0.0.0
    Win32 Version: 4.6.1055.0 built by: NETFXREL2
    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.6.1055.0 built by: NETFXREL2
    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.6.1055.0 built by: NETFXREL2
    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.94.0
    Win32 Version: 1.0.94.0
    CodeBase: file:///C:/Users/wpuser05/Desktop/DiceBot-3.2.4/System.Data.SQLite.DLL
----------------------------------------
System.Data
    Assembly Version: 4.0.0.0
    Win32 Version: 4.6.1055.0 built by: NETFXREL2
    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.6.1055.0 built by: NETFXREL2
    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.6.1055.0 built by: NETFXREL2
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_32/System.EnterpriseServices/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.EnterpriseServices.dll
----------------------------------------
System.Net.Http
    Assembly Version: 4.0.0.0
    Win32 Version: 4.6.1055.0 built by: NETFXREL2
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Net.Http/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Net.Http.dll
----------------------------------------
PresentationCore
    Assembly Version: 4.0.0.0
    Win32 Version: 4.6.1055.0 built by: NETFXREL2
    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.6.1055.0 built by: NETFXREL2
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/WindowsBase/v4.0_4.0.0.0__31bf3856ad364e35/WindowsBase.dll
----------------------------------------
System.Runtime.Serialization
    Assembly Version: 4.0.0.0
    Win32 Version: 4.6.1055.0 built by: NETFXREL2
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Runtime.Serialization/v4.0_4.0.0.0__b77a5c561934e089/System.Runtime.Serialization.dll
----------------------------------------
SMDiagnostics
    Assembly Version: 4.0.0.0
    Win32 Version: 4.6.1055.0 built by: NETFXREL2
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/SMDiagnostics/v4.0_4.0.0.0__b77a5c561934e089/SMDiagnostics.dll
----------------------------------------
System.ServiceModel.Internals
    Assembly Version: 4.0.0.0
    Win32 Version: 4.6.1055.0 built by: NETFXREL2
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.ServiceModel.Internals/v4.0_4.0.0.0__31bf3856ad364e35/System.ServiceModel.Internals.dll
----------------------------------------
Microsoft.VisualBasic
    Assembly Version: 10.0.0.0
    Win32 Version: 14.6.1055.0 built by: NETFXREL2
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/Microsoft.VisualBasic/v4.0_10.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualBasic.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.



Your issues seems to be unrelated.

Your errors aren't originating from the same place, even if it is the same error. The origin of the previous error you sent me in PM originated from somewhere else. This leads me to believe that the error is caused by your computer running out of memory and reducing the allocated memory that dicebot is allowed to use. I know you have 24gb of memory as you showed me in a previous screenshot, but that doesn't help if you have other programs and systems running that take up most of them. Look in your task manager or resource monitor how much memory you have AVAILABLE when running dicebot and when you get that error.


oneyesoneno  issues is likely caused by:
1. The bet log becoming too large and takes up a lot of time to open
2. The chart having too many data points and becoming slow. disabling the chart or resetting it at intervals should fix it
3. An error in the settings/scripts that cause the bot the become unresponsive because it tries to reset seeds/tip/withdraw etc the whole time.

There could be a hundred other reasons for this to happen, these are just the most likely.

john85gotti
Newbie
*
Offline Offline

Activity: 8
Merit: 0


View Profile
November 30, 2016, 09:34:49 AM
Last edit: November 30, 2016, 10:07:39 AM by john85gotti
 #1679




Your issues seems to be unrelated.


I don't know what to say, i tried the same settings on different computers, different windows.
And yes, i don't have any other programs running to "eat" my Rams...
I think i m paranoic.... the PD, blocking me  Huh Huh Huh
seuntjie (OP)
Legendary
*
Offline Offline

Activity: 1717
Merit: 1125



View Profile WWW
November 30, 2016, 02:17:12 PM
 #1680




Your issues seems to be unrelated.


I don't know what to say, i tried the same settings on different computers, different windows.
And yes, i don't have any other programs running to "eat" my Rams...
I think i m paranoic.... the PD, blocking me  Huh Huh Huh

try using another script and see if that works.

Pages: « 1 ... 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 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 ... 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!