Post
Topic
Board Gambling
Re: HeyYouGuys - DiceBot Script MasterThread - New Videos + Charts + New Scripts!
by
BlaBla11
on 20/06/2017, 18:20:39 UTC
Thanks a lot for your script, it's just awesome ! But you do one mistake on your code, the jackpot variable is not used. Here is a fixed version :

Code:
-- GOING UP SCRIPT --
-- ------------------- --


-- PLEASE SUPPORT MY WORK BY REGISTERING PLAY ACCOUNTS USING MY REFFERAL LINKS SO I CAN KEEP POSTING ADDITIONAL GREAT SCRIPTS AND OFFER SUPPORT!

-- GAME SITE SIGN-UP LINK SCRIPT BETA-TESTED ON SITE
-- --------- ------------ --------------------------

-- PrimeDice (Recommended Site) https://primedice.com/?c=HeyYouGuys YES (Recommended site due to constant Nonce)
--      999Dice https://www.999dice.com/?89416832 NO - Yet Should Work - May Need Adjustment of the JackpotChance
-- CryptoGames https://www.crypto-games.net?i=gw7DaSSW4Z YES (Recommended for fast rolling with a minimum Bank Balance of 0.15)
-- SafeDice https://safedice.com/?r=55774 No
-- Rollin.io https://rollin.io/ref/11w9 No
-- BitDice https://www.bitdice.me/?r=16818 No
-- CoinMillions https://coinmillions.com/?referral=65499 No
-- Bitsler https://www.bitsler.com/?ref=HeyYouGuys NO
-- Nitrogen Sports https://nitrogensports.eu/r/1937097 NO
-- Bit-Exo https://bit-exo.com/?ref=HeyYouGuys NO

-- RUNTIME SCRIPT STARTS HERE! --

-- ----------------------------------- --
-- GOING UP SCRIPT V2.0 - JACKPOT EDITION --
-- ------------------- --

-- COPY ENTIRE SCRIPT INTO CODE WINDOW --

-- ----------------------------------- --

-- ** SET TOTAL BANK BALANCE STOP LIMIT HERE ** --

StopLossLimitBalance = 0.00000000

-- ** YOU CAN CHANGE YOUR JACKPOT CHANCE HERE - DEFAULT IS 9900x PAYOUT AT 0.01 ** --

JackPotChance = 0.01

-- ** SET SINGLE SERIES MAX BANK LOSS HERE AS PERCENTILE - RECOMMENDED SETTING IS 17.5 TO 25 ** --

MaxPercentBet = 25


-- CHANGE AT YOUR OWN RISK --


bethigh = true
randomHighLow = false
base = 0.00000100
chance=  1.25
multiplier = 1
nextbet = base  
curbet = base

function dobet()



balancestoplimitround = (balance * (MaxPercentBet / 100))

if currentstreak>=-55 and currentstreak<=0 then
base = ((((balance) - (profit * 6300)) / 400000) + (balance * 0.00000207675))
chance=  0.91 - (currentstreak * -0.0033333)
bethigh = true
elseif currentstreak<=-56 and currentstreak>=-400 then
base = (((balance) - (profit * 400)) / 250000)
chance= 1.30 - (currentstreak * -0.00033333)
bethigh = true
elseif currentstreak<=-401 and currentstreak>=-1000 then
base = 0.00000000
chance = 0.89
end

if win then
nextbet = previousbet * 3
chance = JackPotChance
print("-----------------")
print("WIN NICE")
print("-----------------")
if currentstreak<1 then
nextbet = previousbet * 3
end
else
if currentstreak==-1 then
curbet = base
else
curbet = base
end
nextbet = base + 0.00000001
end

if currentstreak==-55 then
print("----------------------------------------")
print("STAGE TWO STARTING")
print("----------------------------------------")
end

if currentstreak==-401 then
print("----------------------------------------")
print("ZERO ROLLING AT BASE ODDS UNTIL WIN")
print("----------------------------------------")
end

if profit > 0.00000010 then
resetstats()
end

if profit < ((balancestoplimitround) * -1) then
resetstats()
end

if nextbet >= (balance * 0.0065) then
nextbet = 0.00000500
curbet = 0.00000500
resetstats()
end

if balance < (StopLossLimitBalance) then
print("BETTING STOPPED AS BALANCE STOP LOSS LIMIT HAS BEEN BREACHED")
stop()
end

if bets == 700 then
resetseed()
end

if nextbet < 0.00000000 then
resetstats()
end

if bets == 500 then
print("-----------------------------------------------------------")
print("GOING UP - SCRIPT FOR DICEBOT")
print("-----------------------------------------------------------")
print("---------------- By HeyYouGuys ---------------")
print("-----------------------------------------------------------")
print("-----------HeyYouGuys on Bitcointalk----------")
print("-----------------------------------------------------------")
print("------------HeyYouGuysBTC@gmail.com-----------")
print("-----------------------------------------------------------")
end

if bets == 505 then
print("-----------------------------------------------------------")
print("PLEASE HELP SUPPORT MY SCRIPT TESTING AND RESEARCH EFFORTS")
print("SIMPLY USE THE REFERRAL LINKS INCLUDED AT THE TOP OF THIS SCRIPT")
print("WHEN REGISTERING YOUR ACCOUNTS AT DICE SITES.")
print("-----------------------------------------------------------")
end

if bets == 510 then
print("-----------------------------------------------------------")
print("THE COMMISSIONS EARNED ARE USED TO TEST AND REFINE THESE SCRIPTS")
print("YOUR SUPPORT IS APPRECIATED!!!")
print("-----------------------------------------------------------")
end

if (randomHighLow) then
if (math.random() < .0237) then bethigh = !bethigh end
end
end

-- PLEASE SUPPORT MY WORK BY REGISTERING PLAY ACCOUNTS USING MY REFFERAL LINKS SO I CAN KEEP POSTING ADDITIONAL GREAT SCRIPTS AND OFFER SUPPORT!