Need help with the bot or want someone to talk to?
FORUM.SEUNTJIE.COM

The forum is a good platform for asking or offering help with programmer mode scripts

Bot Settings

Download settings for your bot, or upload your own to share with other users.
How do I use this?


Name:DarkStone
Uploaded by: togiy
Bot Version: 3.3.10
Discription:
you start with 1k basebet at %70 chance if you lose 2 bets in row you changing chance to 40 and changing side

if you get 3 wins in row then it changes the chance to %50

zig-zag options are switch after 2 wins and switch after 2 losses in a row.

also at stop conditions "reset the base bet after 2 wins in a row"




CommentsLogin or Register
skimberlin79212:02:2018 01:44
what is the optimal deposit for this strategy?
    Login or Register
Wadhnak26:10:2018 16:04
I just got to know the first time, so I wanted to be a video instructing me some, please help me and give me a link
    Login or Register
skay0113:06:2018 18:38
friend this script did not run here on site 999Dice, which site to run this script?
    Login or Register
seuntjie13:06:2018 20:48
This isn't a script, it's settings for DiceBot. Click on the "How do I use this" box at the top of the screen.
    Login or Register
Tomy4518:10:2020 22:38
Your system does not aim for a total win after losses, therefore it loses in the long run. Use my settings: Resets stake after reaching +1 profit. It's not safer. It only recovers losses. I'll convert this to a script soon:




SaveVersion|3
MinBet|0.00010000
Multiplier|1
Chance|69.999999999999999999999999999
MaxMultiply|15
NBets|2
Devider|1.5
MultiplierMode|3
ResetBetLossEnabled|False
ResetBetLossValue|1
ResetBetWinsEnabled|False
ResetWinsValue|2
WinMultiplier|1
WinMaxMultiplies|999
WinNBets|1
WinDevider|0.00001
WinMultiplyMode|0
StopAfterLoseStreakEnabled|False
StopAfterLoseStreakValue|1
StopAfterLoseStreakBtcEnabled|False
StopAfterLoseStreakBtcValue|0.0000001
StopAfterLoseBtcEnabled|False
StopAfterLoseBtcValue|0.0000001
ChangeAfterLoseStreakEnabled|False
ChangeAfterLoseStreakSize|0
ChangeAfterLoseStreakTo|0
StopAfterWinStreakEnabled|False
StopAfterWinStreakValue|1
StopAfterWinStreakBtcEnabled|False
StopAfterWinStreakBtcValue|0.0000001
StopAfterWinBtcEnabled|False
StopAfterWinBtcValue|0.0000001
ChangeAfterWinStreakEnabled|False
ChangeAfterWinStreakSize|0
ChangeAfterWinStreakTo|0
ChangeChanceAfterLoseStreakEnabled|True
ChangeChanceAfterLoseStreakSize|2
ChangeChanceAfterLoseStreakValue|40
ChangeChanceAfterWinStreakEnabled|True
ChangeChanceAfterWinStreakSize|3
ChangeChanceAfterWinStreakValue|50
MutawaMultiplier|0
MutawaWins|1
MutawaEnabled|False
TrazalWin|3
TrazalWinTo|0.1
TrazalLose|3
TrazalLoseTo|0.1
TrazelMultiPlier|2
TrazelEnabled|False
MKIncrement|0
MKDecrement|0
MKEnabled|False
LabReverse|False
LabValues|0.0001?0.0001?0.0002?0.0002?0.0002?0.0001?0.0001
LabComplete|2
Strategy|0
FibonacciLoss|0
FibonacciWin|1
FibonacciLevel|1
FibonacciLevelEnabled|False
FibonacciLossSteps|1
FibonacciWinSteps|-1
FibonnaciLevelSteps|10
dAlembertLossIncrement|0.00000001
dAlembertLossStretch|0
dAlembertWinIncrement|-0.00000001
dAlembertWinStretch|0
PresetValues|
PresetEnd|2
PresetEndStep|1
PresetLoss|1
PresetLossStep|1
PresetWin|0
PresetWinStep|-1
ReverseWin|True
ReverseWinStreak|False
ReverseLoss|False
ReverseLossStreak|True
ReverseBet|False
ReverseWinValue|2
ReverseWinStreakValue|3
ReverseLossValue|3
ReverseLossStreakValue|2
ReverseBetValue|1
ResetBtcStreakLoss|False
ResetBtcStreakLossValue|0.00000001
ResetBtcLoss|False
ResetBtcLossValue|0.00000001
ResetBtcStreakProfit|False
ResetBtcStreakProfitValue|0.00000001
ResetBtcProfit|True
ResetBtcProfitValue|0.00000001
FirstResetLoss|False
FirstResetWin|False
MartingaleStretchLoss|1
MartingaleStretchWin|1
EnableMaximumBet|False
EnableMinumumBet|False
MaximumBet|0
MinumumBet|0
StopBetsEnable|True
StopBetsValue|5000
ResetBetsEnable|False
ResetBetsValue|1
StopTimeEnable|False
StopTimeHour|0
StopTimeMinute|0
StopTimeSecond|0
StopLossesEnable|False
StopLossesValue|1
ResetLossesEnable|False
ResetLossesValue|1
StopWinsEnable|False
StopWinsValue|1
ResetWinsEnable|False
ResetWinsValue2|1
    Login or Register
Tomy4518:10:2020 22:44
I forgot to add: Out of all 36 settings on these 4 pages, this is one of the best.
    Login or Register
coinguy9809:07:2021 02:24
How much of a balance do you recommend for 1k bet?
    Login or Register
Tomy4514:11:2020 02:50

The above settings converted to the script below:



bethigh = true
chance=70
base=0.00001000
nextbet=base
zysk = 0
wygrane = 0
przegrane = 0
maxroll = 10000
roll = 0
function dobet()
  if win
    then
      if chance==40 and profit <= zysk then chance=70 end
      if chance==50 and profit <= zysk then chance=70 end
      przegrane = 0
      wygrane += 1
      if wygrane == 2
        then
          wygrane = 0
          if bethigh == true
            then
              bethigh = false
          else
            bethigh = true
          end
      end
      if currentstreak == 3 and profit <= zysk then chance=50 end
  else
      przegrane += 1
      if przegrane == 2
        then
          wygrane = 0
          przegrane = 0
          if bethigh == true
            then
              bethigh = false
          else
            bethigh = true
          end
      end
      if currentstreak == -2 then chance=40 end
      if currentstreak <= -2 then nextbet=previousbet*1.50 end
    end

  if profit > zysk then
    nextbet = base
    zysk = profit
  end
  roll += 1
  if roll == 1 then
    print("")
    print("---------------------------------------------------------------------------------------------------------------------------------------------") 
  end
  print("")
  print("roll:    "..roll)
  print("chance:    "..chance)
  print("profit:  "..profit)
  print("zysk:    "..zysk)
  print("wygrane:    "..wygrane)
  print("przegrane:  "..przegrane)
  print("currentstreak:"..currentstreak)
  if roll == maxroll then stop() end  
end
    Login or Register
WillStoW06:12:2021 14:51
Bro how can we half the amount we play with?please
    Login or Register