Demo of resume() #mydicebot#
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
print('chance is ' .. tostring(chance) .. ', so stop and sleep for a while and resume from here again.') | |
stop() | |
sleep(2) | |
resume() | |
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