Skip to content

Instantly share code, notes, and snippets.

@mydicebot
Last active April 2, 2020 07:29
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mydicebot/155ca3c1ff54c6b6707d2dc869154da0 to your computer and use it in GitHub Desktop.
Save mydicebot/155ca3c1ff54c6b6707d2dc869154da0 to your computer and use it in GitHub Desktop.
Basic Martingale #MyDiceBot#
chance = 49.5
multiplier = 2
basebet = 0.00000010
bethigh = false
function dobet()
if profit >= 0.1 then
stop()
end
if win then
nextbet = basebet
else
nextbet = previousbet * multiplier
end
end
@mydicebot
Copy link
Author

test

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment