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.
chance = 90
bethigh = true
basebet =0.00000001
nextbet = basebet
startBalance = balance
lowRoll = false
recovering = false
function dobet()
if (win) then
if (balance >= startBalance) then
chance = 90
nextbet = basebet
startBalance = balance
recovering = false
else
if (recovering) then
nextbet = balance
else
chance = 90
nextbet = basebet
end
end
else
if (recovering) then
chance=98
nextbet=balance
else
chance = 90
nextbet = balance/8
recovering = true
end
end
end
chance = 90
bethigh = true
basebet =0.00000001
nextbet = basebet
startBalance = balance
lowRoll = false
recovering = false
function dobet()
if (win) then
if (balance >= startBalance) then -------------------------------edit starts here
chance = 90
nextbet = basebet
recovering = false
else
if (recovering) --------------------------------------------------then????
nextbet = balance
else
chance = 90
nextbet = basebet
end
end ------------------------------end of edit
else
if (recovering) then
chance=98
nextbet=balance
else
chance = 90
nextbet = balance/8
recovering = true
end
end
end
chance = 90
bethigh = true
basebet =0.00000001
nextbet = basebet
startBalance = balance
lowRoll = false
recovering = false
function dobet()
if (win) then
if (balance >= startBalance) then -------------------------------edit starts here
chance = 90
nextbet = basebet
recovering = false
else
if (recovering)
nextbet = balance
else
chance = 90
nextbet = basebet
end
end ------------------------------end of edit
else
if (recovering) then
chance=98
nextbet=balance
else
chance = 90
nextbet = balance/8
recovering = true
end
end
end
chance = 90
bethigh = true
basebet =0.00000001
nextbet = basebet
startBalance = balance
lowRoll = false
recovering = false
function dobet()
if (win) then
if (!recovering || (balance >= startBalance)) then ----------------------------------here I replaced '||' with 'or'
chance = 90
nextbet = basebet
recovering = false
end
else
if (recovering) then
chance=98
nextbet=balance
else
chance = 90
nextbet = balance/8
recovering = true
end
end
end
...
startBalance = balance
runprofit = 0
...
function dobet()
...
runprofit = balance - startBalance
if runProfit <= -0.003 then -- 0.003 BTC loss
nextbet = 0
stop()
end
end
...
startBalance = balance --should i change this to my starting bet or starting balance?
runprofit = 0 -- shopuld i input the number i want it to stop at here? e.g runprofit=0.00300000
...
function dobet()
...
runprofit = balance - startBalance
if runProfit <= -0.003 then -- 0.003 BTC loss
nextbet = 0
stop()
end
end
chance = 90
bethigh = true
basebet =0.00000001
nextbet = basebet
startBalance = balance
lowRoll = false
recovering = false
function dobet()
if (win) then
if (!recovering || (balance >= startBalance)) then
chance = 90
nextbet = basebet
recovering = false
end
else
if (recovering) then
chance=98
nextbet=balance
else
chance = 90
nextbet = balance/8
recovering = true
end
end
end
...
startBalance = balance
runprofit = 0
...
function dobet()
...
runprofit = balance - startBalance
if runProfit <= -0.003 then -- 0.003 BTC loss
nextbet = 0
stop()
end
end
...
startBalance = balance --should i change this to my starting bet or starting balance?
runprofit = 0 -- shopuld i input the number i want it to stop at here? e.g runprofit=0.00300000
...
function dobet()
...
runprofit = balance - startBalance
if runProfit <= -0.003 then -- 0.003 BTC loss
nextbet = 0
stop()
end
end
...
startBalance = balance
runprofit = 0
...
function dobet()
...
runprofit = balance - startBalance
if runProfit <= -0.003 then -- 0.003 BTC loss
nextbet = 0
stop()
end
end
wagered=0
chance0=28.08
chance1=90.4
chance2=94
chance3=95
baseBet=0.00000001
baseBet1=0.00000003
baseBet2=0.00000004
baseBet3=0.00000005
nextbet=baseBet
bethigh=true
betlow=true
profittarget=0.00900000
function dobet()
wagered=wagered+previousbet
chance = chance0
if win then
bethigh=true
nextbet=baseBet
else
nextbet=previousbet*2
end
if currentstreak==-2 then
chance=chance1
betlow=true
nextbet=baseBet1
end
if currentstreak==-3 then
chance=chance2
nextbet=baseBet2
end
if currentstreak==-4 then
chance=chance3
nextbet=baseBet3
end
if currentstreak<-4 then
chance=chance0
nextbet=baseBet
end
if (balance) >= profittarget then
print(balance)
print("TARGET ACHIEVED!!!")
stop();
end
end
wagered=0
chance0=28.08
chance1=90.4
chance2=94
chance3=95
baseBet=0.00000001
baseBet1=0.00000003
baseBet2=0.00000004
baseBet3=0.00000005
nextbet=baseBet
profittarget=0.00900000
function dobet()
wagered=wagered+previousbet
chance = chance0
if win then
nextbet=baseBet
else
nextbet=previousbet*2
end
if currentstreak==-2 then
chance=chance1
nextbet=baseBet1
end
if currentstreak==-3 then
chance=chance2
nextbet=baseBet2
end
if currentstreak==-4 then
chance=chance3
nextbet=baseBet3
end
if currentstreak<-4 then
chance=chance0
nextbet=baseBet
end
if (balance) >= profittarget then
print(balance)
print("TARGET ACHIEVED!!!")
stop();
end
end