With screenshots, someone has to go through and tick box, untick box, type in numbers etc... with the file, they can use "File -> Import" and it should set everything up instantly.
It was the Bitcointalk forum that inspired us to create Bitcointalksearch.org - Bitcointalk is an excellent site that should be the default page for anybody dealing in cryptocurrency, since it is a virtual gold-mine of data. However, our experience and user feedback led us create our site; Bitcointalk's search is slow, and difficult to get the results you need, because you need to log in first to find anything useful - furthermore, there are rate limiters for their search functionality.
The aim of our project is to create a faster website that yields more results and faster without having to create an account and eliminate the need to log in - your personal data, therefore, will never be in jeopardy since we are not asking for any of your data and you don't need to provide them to use our site with all of its capabilities.
We created this website with the sole purpose of users being able to search quickly and efficiently in the field of cryptocurrency so they will have access to the latest and most accurate information and thereby assisting the crypto-community at large.
if currentstreak>-50 then
--reset logic here
chance = math.random(10,25)
bethigh = true
basebet = 0.0000001
nextbet = basebet
function dobet()
chance = math.random(25,35)
if (win) then --If it's a win, reset and switch
nextbet = basebet
bethigh = !bethigh
elseif (currentstreak%10==0) then --every time you've lost 10 bets in a row, reset
nextbet = basebet
else--if it's any other loss, mutliply by the multiplier
nextbet = previousbet * 1.05
end
end
chance = math.random(10,25)
bethigh = true
basebet = 0.0000001
nextbet = basebet
function dobet()
chance = math.random(25,35)
nexbet=Martingale(win)
end
chance = math.random(10,25)
bethigh = true
basebet = 0.0000001
nextbet = basebet
count = 0
function dobet()
chance = math.random(25,35)
if (win) then
count = 0
nextbet = basebet
bethigh = !bethigh
elseif (count < 10) then
nextbet = previousbet * 1.05
count = count + 1
else
nextbet = basebet
count = 0
end
end
....
function dobet()
...
if (win) then
..do win stuff..
else
-- check if we're on a >= 50 losing streak
if currentstreak <= -50 then
-- yes? time to reset to basebet
nextbet = basebet
else
-- no? keep raising!
nextbet = previousbet * 1.25
end
end
end
....
losscount = 0
...
function dobet()
...
if (win) then
losscount = 0
..do win stuff..
else
losscount = losscount + 1
-- check if we're on a >= 50 losing streak
if losscount >= 50 then
-- yes? time to reset to basebet
nextbet = basebet
losscount = 0
else
-- no? keep raising!
nextbet = previousbet * 1.25
end
end
end