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

LUA Scripts

Download a script for your bot, or upload your own to share with other users. Login or Register to upload

How do I use this?


Name:Slow and Steady! :)
Uploaded by: HiDevin1
Discription:
Chance is 13.34% with a 25% increase on lost

This is my first script and I tested this with 0.01 btc on PD

RECOMMENDED TO HAVE 0.01 BTC

( Script will adjust basebet so no need to change anything :)





CommentsLogin or Register
HiDevin126:02:2017 13:52
Recommended to stop once you make about 200k Sats
    Login or Register
tyrannozaur25:03:2017 16:04
With a balance of 80 Doge was a balance of 217 and all merged into 0. you need something to change or not play for long. How many% you need to type to stop? And when can I start again
    Login or Register
Tomy4529:08:2020 00:09
The one thing I forget to tell you. 
I set basebet = ..../18000000  (max 67 steps)
The original is ..../180000    (max 47 steps) - Dangerously. The system may fail.
    Login or Register
Tomy4528:08:2020 23:10
The same system as original above but display some statistical in console like Current Drawdown and Maximum Drawdown.
Seuntjie, this statistical should be as standard in window "Simulate".



chance             = 13.34
bethigh            = true
basebet            = balance/18000000
nextbet            = basebet

CurrentProgression = 0
CurrentDrawdown    = 0
MaximumProgression = 0
MaximumDrawdown    = 0

Spin      = 0

function dobet()
    Spin += 1
    if win then
      nextbet = basebet
      CurrentProgression = 0
      CurrentDrawdown = 0

    else
      nextbet = previousbet * 1.25
      CurrentProgression += 1
      CurrentDrawdown -= previousbet
      if CurrentDrawdown < MaximumDrawdown
        then
          MaximumProgression = CurrentProgression
          MaximumDrawdown = CurrentDrawdown
        end
    end
    print("")
    print("")
    print("CurrentProgression:    "..CurrentProgression.."   CurrentDrawdown:     "..CurrentDrawdown)
    print("")
    print("MaximumProgression: "..MaximumProgression.."   MaximumDrawdown:  "..MaximumDrawdown)
    print("")
    print("Spin:   "..Spin)
    print("Balance:    "..balance)
end
    Login or Register
Tomy4528:08:2020 23:46
Just a simple calculator of progression. We can check how many steps our system survive until bankroll will finish. In console we can check Current progression, Maximum drawdown, Lowest balance. 
Lowest balance = Initial balance - Maximum drawdown.
In that case system above survived 67 steps of progression. No matter how bankroll we used: bigger bankroll = bigger initial bet, always max 67 steps of progression.



--  Tester of progressions

chance             = 49.50
basebet            = balance/18000000
nextbet            = basebet
InitialBalance     = balance
LowestBalance      = balance
CurrentProgression = 0
MaximumDrawdown    = 0


function dobet()
    CurrentProgression += 1
    nextbet = previousbet * 1.25
    LowestBalance -= previousbet
    MaximumDrawdown -= previousbet
    print("")
    print("")
    print("CurrentProgression:  "..CurrentProgression)
    print("")
    print("InitialBalance:     "..InitialBalance)
    print("MaxDrawdown: "..MaximumDrawdown)
    print("LowestBalance:  "..LowestBalance)  
    print("nextbet:               "..nextbet) 
    if LowestBalance < nextbet
      then
        print("")
        print("THE BANKROLL IS OVER !!!") 
        print("")
        stop()
      end
end
    Login or Register