Skip to content

Instantly share code, notes, and snippets.

@mydicebot
Last active April 25, 2020 10:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mydicebot/4c020861fa01ed5bdba491ab3cf27543 to your computer and use it in GitHub Desktop.
Save mydicebot/4c020861fa01ed5bdba491ab3cf27543 to your computer and use it in GitHub Desktop.
Demo of start() #mydicebot#
chance = 1
multiplier = 2
basebet = 0.00000001
bethigh = false
nextbet = basebet
my_variable = 1
function sleep(n)
t0 = os.clock()
while os.clock() - t0 <= n do end
end
function dobet()
print('chance is ' .. tostring(chance))
print('my_variable is ' .. tostring(my_variable))
if(chance == 3) then
stop()
print('chance is ' .. tostring(chance) .. ', so start from beginning again.')
start()
end
chance = chance + 1
my_variable = my_variable + 1
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment