Calculated Randomness RE-DONE BTC/LTC/XMR
Due to popular demand, I bring you a RE-DONE Version of Calculated Randomness.
ONLY DOWNLOAD THE REAL DICEBOT!https://bot.seuntjie.com/botpage.aspx
Patreon: https://www.patreon.com/ltdicebotter
Please Read New Post After This!
UPDATE 2017-11-18: Currently testing a work around of the glitch that occurs over extended script runs. I still recommend only running for 1 hour and monitoring the script, it can still lose money but I alone have made over $50 USD in one day.
http://zap.in/5cPzF <--- I could stop now but I set profit stop to 1BTC.
http://zap.in/8a6iu
Temporary Glitch fix, made more aggressive with increased bets but still running strong.
http://zap.in/0CMZA
Images of current run!
http://zap.in/5H2Jk
At the bottom of the script there are adjustable greater then/less then loss counter to pick when you want your betting zone to change. Change your "BET" value range along with your "CHANCE" range for each zone. Clearly and easily understandable with little knowledge of code you can calculate your own randomized settings! Make sure to post your own changes!
Note: Feel free to make any changes as long as its non-profit, this script is free and I will keep it that way. Also change the target to something realistic 1000 BTC is not.
http://zap.in/0WtxY <--- Compatable with all of these websites as long as they support the minimum bet for the script.
http://zap.in/3jpP0 <----- Error removed, it will start now! Good luck, happy winning!
http://zap.in/8Rrjp <------ Script Edited: Reset at 16 losses, still testing!
http://zap.in/4yK0o <-- running on doge for fun
http://zap.in/7JwNC <--- BTC SIMULATION 1 A
http://zap.in/0QLuF < ------- BTC SIMULATION 1 B
http://zap.in/5ZL58 < --- BTC SIMULATION BREAKS 1,000,000 SATOSHI PROFIT
http://zap.in/5UOgn <------ BTC SIMULATION WITH RESET FUNCTION TO BE CONTINUED.
http://zap.in/0CeoV <------ SIMULATION WITH RESET CONTINUED
http://zap.in/3HCMS <----- SIMULATION STOPPED, TIME FOR REAL TIME TESTING.
http://zap.in/4kkru
http://zap.in/1CNsY<--- RESULTS FROM ^(o.o)^
7$ USD PROFIT; (Didnt hit reset but since I am going to bed and wanted to watch this happen I stopped my betting for now.)
I have emailed the great Seuntjie to inquire about glitching I noticed while using this script.
I do not believe it is the code but rather an error in Dice Bots programming.
The code is not too complex and works perfectly until it runs for a few hours straight, then things start to breakdown.
For now DO NOT run Calculated Randomness for MORE THEN 1 HOUR before RESTARTING the script.
Please post your results in the comments below!
http://zap.in/6yVs7
2 Hour Session Results!
http://zap.in/8FTr7
DONATE BTC TO: 17dMCDYsiJzbNUF7kf2KEtZ2ZQkj1XVsRz
DONATE LTC TO: LWSs1z7Biih8KB36z8CP9UxajNgDDr4QcJ
DONATE ETH TO: 0x50690b5f52b7d529e510dd433fa92505959c834a
DONATE XMR TO: 4L7DhwADX9Y6wN7BfFBaEfF3Fw8uc3LiV8NUpTXgNDk8EeP732b1yRxJGuNLwr4nowbn7g6kocN5LgVGVqsXuSseH9dCawCNcXh6DPKv9m
Non txt. File Version Of Script
If you want to donate please leave a comment below!
Updated: Noticed a glitch with first run, didnt lose any profit just would stop it from starting. All fixed now!
--------------------------------------------------------------------------------
--Check out LTDice.blogspot.ca for more scripts--
minone=29.95
maxone=39.95
mintwo=45.00
maxtwo=55.00
bone=0.00000001
btwo=0.00000025
cone=0.00000026
ctwo=0.00000050
done=0.00000051
dtwo=0.00000125
bzoneb= math.random(bone*100000000,btwo*100000000)/100000000.0
bzonec= math.random(cone*100000000,ctwo*100000000)/100000000.0
bzoned= math.random(done*100000000,dtwo*100000000)/100000000.0
czoneone = math.random(minone*100.0, maxone*100.0)/100.0
chance = czoneone
base=bzoneb
bzoneb= math.random(bone*100000000,btwo*100000000)/100000000.0
prebet = bzoneb
multiplier=2.67682119
target=1000.00100000 -- <<Stop at this Profit Target>>
bzoneb= math.random(bone*100000000,btwo*100000000)/100000000.0
nextbet = bzoneb
losecount = 0
betcount = 0
bethigh=false
wincount=0
highloss=0
totalloss=0
total=0
avehit=0
counter=0
b=0
restcounter=0
low=0
high=0
--resetstats()
resetseed()
function dobet()
if (lastBet.roll < chance) then
low += 1
end
if (lastBet.roll > (100 - chance)) then
high += 1
end
print(" ")
print("total resets")
print(restcounter)
print("Total Bet : "..betcount)
print("Current Streak Loss : "..losecount)
print("Highest Loss Streak : "..highloss)
print("Number of Wins : "..wincount)
print("Average Losses Before Win : "..string.format("%.2f",avehit))
print("Profit :"..string.format("%.8f",profit))
print(" ")
print("Bet Amount :"..string.format("%.8f",nextbet))
print("Current Balance : "..string.format("%.8f",balance))
print("High :"..high.." / ".."Low :"..low)
print("Average Profit Per Bet : " ..profit / betcount)
print("Bet Zone B = " .. bzoneb)
print("Bet Zone C = " .. bzonec)
print("Bet Zone D = " .. bzoned)
print(" ")
if counter > 500 then
resetseed()
low=0
high=0
counter=0
else
counter+=1
end
if win then
bzoneb= math.random(bone*100000000,btwo*100000000)/100000000.0
base = bzoneb
bzoneb= math.random(bone*100000000,btwo*100000000)/100000000.0
nextbet = bzoneb
czoneone = math.random(minone*100.0, maxone*100.0)/100.0
chance = czoneone
wincount+=1
total+=1
totalloss+=losecount
avehit=totalloss/total
losecount = 0
betcount += 1
b+=1
if b>1 then
bethigh=!bethigh
b=0
end
if profit>target then
print("TARGET REACHED!")
stop()
end
else
losecount += 1
betcount += 1
czoneone = math.random(minone*100.0, maxone*100.0)/100.0
chance = czoneone
bzoneb= math.random(bone*100000000,btwo*100000000)/100000000.0
nextbet = bzoneb
end
if losecount > highloss then
highloss = losecount
end
if (losecount > 2) then
czoneone = math.random(minone*100.0, maxone*100.0)/100.0
chance = czoneone
bzonec= math.random(cone*100000000,ctwo*100000000)/100000000.0
nextbet = bzonec
end
if (losecount > 4) then
czoneone = math.random(minone*100.0, maxone*100.0)/100.0
chance = czoneone
bzoned= math.random(done*100000000,dtwo*100000000)/100000000.0
nextbet = bzoned
end
if (losecount > 6) then
nextbet = previousbet*multiplier
czonetwo = math.random(mintwo*100.0, maxtwo*100.0)/100.0
chance = czonetwo
end
end
end
end
end
I am currently working on a reset function to attempt endless play.
ReplyDeletehttps://www.youtube.com/watch?v=KZ5_ii8sWY4
ReplyDeleteI have emailed the great Seuntjie to inquire about glitching I noticed while using this script.
DeleteI do not believe it is the code but rather an error in Dice Bots programming.
The code is not too complex and works perfectly until it runs for a few hours straight, then things start to breakdown.
For now DO NOT run Calculated Randomness for MORE THEN 1 HOUR before RESTARTING the script.
Testing a **HOT FIX** for the script, fingers crossed it works! I will post pictures and script after testing!
DeleteSir it's me, Tisuwajah :)
ReplyDeleteis this one is based on the favourit script that you send me via email sir?
Its based off of calculated randomness and that one I sent you yes, but very loosely on the the second script and pretty much all calculated randomness.
DeleteHad some mixed results with this. A couple of good wins, which is why I then donated BTC, but also had annoying sequence where I went from 0.1 down to 0.03. A run of 13 losses.
ReplyDelete