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 (!win) then
losecount += 1
if (losecount == 2) then
stop()
end
...
[code]
...
if (!win) then
losecount += 1
if (losecount == 2) then
stop()
end
...
[code]
chance = 95
basebet = .000001131
nextbet = .000001131
bethigh = true
losecount = 0
enablesrc = true --set to true to use stop/reset conditions
--settings from advanced mode
function dobet()
if (win) then
chance = 95
nextbet = basebet
losecount = 0
end
if (!win) then
losecount += 1
if (losecount > 1) then
nextbet = previousbet*1.75
chance = (1/(((nextbet+(nextbet-basebet))/nextbet)))*100
if chance < 49.5 then
chance = 49.5
end
bethigh = !bethigh
print ("LOSE")
print(nextbet)
print(chance)
print(profit)
print(bets)
else
nextbet = previousbet*1.75
chance = (1/(((basebet+nextbet))/nextbet))*100
if chance<49.5 then
chance=49.5
end
bethigh = !bethigh
print ("LOSE")
print(nextbet)
print(chance)
print(profit)
print(bets)
if (losecount == 2) then
stop()
end
end
end
end
...
function dobet()
if (win) then
...
end
if (!win) then
losecount += 1
if (losecount > 1) then
...
else -- losecount must be <= 1
...
if (losecount == 2) then -- THIS CAN NEVER BE TRUE HERE!
stop()
end
end
end
end
chance = 95
basebet = .000001131
nextbet = .000001131
bethigh = true
losecount = 0
enablesrc = true --set to true to use stop/reset conditions
--settings from advanced mode
function dobet()
if (win) then
chance = 95
nextbet = basebet
losecount = 0
end
if (!win) then
losecount += 1
if (losecount > 1) then
nextbet = previousbet*1.75
chance = (1/(((nextbet+(nextbet-basebet))/nextbet)))*100
if chance < 49.5 then
chance = 49.5
end
bethigh = !bethigh
print ("LOSE")
print(nextbet)
print(chance)
print(profit)
print(bets)
else
nextbet = previousbet*1.75
chance = (1/(((basebet+nextbet))/nextbet))*100
if chance<49.5 then
chance=49.5
end
bethigh = !bethigh
print ("LOSE")
print(nextbet)
print(chance)
print(profit)
print(bets)
if (losecount == 2) then
stop()
end
end
end
end
...
function dobet()
if (win) then
...
end
if (!win) then
losecount += 1
if (losecount > 1) then
...
else -- losecount must be <= 1
...
if (losecount == 2) then -- THIS CAN NEVER BE TRUE HERE!
stop()
end
end
end
end
chance = 95
basebet = .000001131
nextbet = .000001131
bethigh = true
losecount = 0
enablesrc = true --set to true to use stop/reset conditions
--settings from advanced mode
function dobet()
if (win) then
chance = 95
nextbet = basebet
losecount = 0
end
if (!win) then
losecount += 1
if (losecount > 1) then
nextbet = previousbet*1.75
chance = (1/(((nextbet+(nextbet-basebet))/nextbet)))*100
if chance < 49.5 then
chance = 49.5
end
bethigh = !bethigh
print ("LOSE")
print(nextbet)
print(chance)
print(profit)
print(bets)
else
nextbet = previousbet*1.75
chance = (1/(((basebet+nextbet))/nextbet))*100
if chance<49.5 then
chance=49.5 end
bethigh = !bethigh
print ("LOSE")
print(nextbet)
print(chance)
print(profit)
print(bets)
if (losecount == 2) then
stop()
end
end
end
end/
chance = 49.5
basebet = 0.00000001
nextbet = basebet
bethigh = true
lossStreak = 0
hibernate = false
lastMartingale = 0
hibernatebet = 0.00000000 -- primedice zero bets!
function dobet()
if win then
if hibernate then
-- first win after losing streak
-- restart Martingale
nextbet = lastMartingale * 2
lossStreak = 0
hibernate = false
else
nextbet = basebet
lossStreak = 0
end
else
lossStreak = lossStreak + 1
if (lossStreak == 3) then
--losing streak detected, hibernate
hibernate = true
lastMartingale = previousbet
end
if hibernate then
nextbet = hibernatebet
else
nextbet = previousbet * 2
end
end
end