Pages:
Author

Topic: HeyYouGuys - *DiceBot Scripts* - LIMITED RELEASE & HIGH ROLLER SCRIPTS UNLEASHED - page 11. (Read 32662 times)

full member
Activity: 149
Merit: 101
Just an updated example using a small start balance of 0.00300000.

I have modified the script to work with smaller balances (the main script has "resets" for low bet amounts which make using it with starting banks of less than 0.05 not run correctly (stops).

Here is a chart of approx 25,000 rolls - played on PRIMEDICE.



SCRIPT FOR PLAYERS USING BANKS LESS THAN 0.05000000 IS PROVIDED BELOW - ENJOY!



Code:
-- HeyYouGuys DiceBot Script --
-- Going Up V1.32 (For Bank Accounts < 0.05) --

-- Please consider supporting the work I share with the community simply by registering for Play Accounts using my Referral Links - It costs you nothing & It's GREATLY APPRECIATED!

-- 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 https://primedice.com/?c=HeyYouGuys YES
--      999Dice https://www.999dice.com/?89416832 NO
-- CryptoGames https://www.crypto-games.net?i=gw7DaSSW4Z YES
-- 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
--

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

-- INSTRUCTIONS -

-- StopLossLimitBalance will stop the bot if your balance drops below this amount following the last bet.
-- StopLossLimitRound will stop the bot if your current loss amount on a SINGLE round reaches this amount. Keep in mind this bot script resets the stats for gameplay based on win timing and profit amounts. Typically every win past 10 bets will trigger a reset back to start. Enter a fraction of your balance here. Recommend twenty percent of balance. If your balance is 0.50000000 set to 0.10000000.

-- Tip - If you hit your StopLossLimitRound - NOT BALANCE, but just one ROUND, the bot will stop. Recommend the following -

-- - Go to your Code Tab, and after dobet - Change the following -

--   - BASE ONE - LINE 2 - to equal base = (((balance) - (profit * 2000)) / 350000)
--   - BASE TWO after ELSE to equal base = (((balance) - (profit * 400)) / 400000)
--   - Change StopLossLimitRound to double 2x what it was set at.

-- NEXT - Copy the code and paste into the console entry area. Hit Enter. Start Bot. This will restart the bot with lower risk numbers but still remember your current loss. DO NOT Reset your Stats. This will typically rebound if you do hit a round loss. After rebound, change the variables back to default.

-- ENJOY and please use referral links above to help support me in making new tested scripts that work!

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

-- IMPORTANT - MAKE SURE YOU SET STOP LOSSES LINES ONE AND TWO. SEE INSTRUCTIONS ABOVE.

-- GOING UP SCRIPT --
-- ------------------- --

StopLossLimitBalance = 0.00000000
StopLossLimitStreakRound = 0.00000000

bethigh = true
randomHighLow = false

base = 0.00000002
chance=  1.5
multiplier = 1

nextbet = base  
curbet = base

function dobet()


if currentstreak>-75 then
base = (((balance) - (profit * 2400)) / 250000)
chance=  1.35 - (currentstreak * -0.003765)
bethigh = true
else
base = (((balance) - (profit * 400)) / 300000)
chance= 1.10
bethigh = true
end

if win then
nextbet = 0.00000002
if currentstreak<1 then
nextbet = 0.00000002
end
else
if currentstreak==-1 then
curbet = base
else
curbet = base
end
nextbet = base + 0.00000001
end

if profit > 0.00000010 then
resetstats()
end

if nextbet < 0.00000001 then
resetstats()
end

if balance < (StopLossLimitBalance) then
stop()
end

if profit < ((StopLossLimitStreakRound) * -1) then
stop()
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 INCLUDED IN THE SCRIPT SO I CAN KEEP POSTING ADDITIONAL GREAT SCRIPTS AND OFFER SUPPORT!


full member
Activity: 149
Merit: 101



UPDATE 08/18/17:  COMING SOON... "TOP ME OFF" - FAUCET SCRIPT
AN ASSISTED AUTO BETTING SCRIPT DESIGNED TO TOP YOUR BALANCE OFF FROM 0.00000500 TO 0.00050000 = 1000X RETURN

REQUIRES INVITATION REQUEST - REQUEST YOUR INVITE FOR "TOP ME OFF" BY SENDING AN EMAIL TO:

[email protected] with the SUBJECT:   TOP ME OFF
 
 


UPDATE 05/11/17:  THIS IS A VERY EXCITING UPDATE TO "GOING UP" for DICEBOT



SCRIPT:   Going Up JACKPOT EDITION v2.0 - MAJOR UPDATES AND PERFORMANCE ENHANCEMENTS!



RELEASED 5/11/17:    GOING UP v2.0  **JACKPOT EDITION**

"Going Up - JackPot Edition" is a fully automated script written for use within the amazing Seuntjies DiceBot https://bot.seuntjie.com/

Script Requires a MINIMUM BANKROLL OF 0.004000000 to function "at it's best". With a lower bankroll; the equations will calculate mostly 0.00000000 wagers. As the mathmatics were fine tuned and are now based off of the many test I ran using banks from 0.00500000 to 0.20000000, you wil see the best results (due to the ROUNDUP ROUNDDOWN fuction of the dice sites in the way they calculate bets that fall after 8 decimals... Best performance is seen with any Bankroll of 0.05000000 or more.

AVERAGE PERFORMANCE:     On average over the long run:  10% profit gains over every 9000-11,000 rolls. Compounded.  This factors in "series losses" which are scripted in to prevent a bust. Please read instructions on how to adjust how many series you want to allow to fail. The default is 0.25 which equals out to about 10 full "fails"... which I have not even come remotely close to running over 500,000 rolls on multiple sites/VMs.

All of the new performance enhancements are listed below. The bot is now further enhanced to recalculate the wager on a per roll basis pre-roll, along with chance - Making this the easist bot in the world to run. NOTE:  This is not an agressive bot, and it is designed to be "left alone" to do it's thing. I have run 100,000s of 1000s of rolls on Crypto-Games and PrimeDice and the outcomes are even better than before. A VIDEO WILL BE POSTED SHORTLY.

But to reiterate; it's not a get right in one hour; it has multiple bult in failsafes/stop limits, which all work together to prevent losses from different types of streaks, or combinations thereof. It works off a low chance (between 1.25 and 0.01 as the jackpot; and after 12 hours of rolling your chart will look like a long ladder of stairs upward.

Please note; this script is provided purely for entertainment purposes, and HeyYouGuys assumes no liability; nor will the user of this script, which is provided free of charge, hold HeyYouGuys liable for any losses; financial or ortherwise; by the use of this script.

The script is coded in LUA; and you are free to customize. Instructions are below.

Feel free to contact with any questions; custom script code requests/quotes, or technical issues. Happy Rolling!


After numerous simulations and test runs, this release of "Going Up - Jackpot Edition" offers a number of new features as well as refined math calculations for each rolls wager size and chance/payout.

IMPROVEMENTS AND CHANGES FOUND IN V2.0

  • IMPROVED MATHMATICS:   Improved wager calculation based on 'before the roll occurs' balance. This is a major upgrade as the bot continues to recalculate how a wager is computed based on real time balance; rather than a fixed equation.
  • REFINED VARIABLES:      Adjustments have been made to the variable balancestoplimitround. The new setting is balancestoplimitround = 0.2.  What does this mean?  This bot is a fully automated bot, and it works by computing bets and chances off long series of rolls, based off your bank size... you need do nothing more.  It continuously takes each series, sectioned into smaller series of rolls, and calculates your wagers and chance based off bank balance and streak performance.
     
    Note:    You can still set a StopLossLimitBalance = X.XXXXXXXXX which would represent the balance at which the bot would stop altogether if your bank account dropped below that number on a single next roll; however-- the  balancestoplimitround variable is a more flexible way to prevent losses, and keep your bot rolling. A setting of 0.2 represents 1/5 th, or 20%; meaning , if within a long series, (you hit a bad streak); your balance falls 20%; computed by the series profit ledger; the bot will simply reset; and start a new series. KEEP IN MIND; this is a progressive betting system; so bet size will increase when profit is down; and it will decrease bet sizes when profit is up, as well as chance being a calculated factor as well. When a series is reset, the lost profit is discarded; so your wager size would return to BASE. NOTE: Default StopLossLimitBalance is set to 0.00000000 (none) as I've never had a loss streak like that happen.
     
    That said; setting the variable  balancestoplimitround = 0.2 would allow 12 MAJOR bad streaks (in the unlikely event); based on a starting balance of (percentage of full bank): 100 would reset at 80. 80 would then reset at 64, 64 then at 51.2 and so on. After 10 Major bad streaks (I have yet to see more than 3 occur in 100,000 rolls on multiple runtimes/separate accounts combined)  you would still have 10% of your original balance. Changing  balancestoplimitround to a lower number; say 0.15 would reset the bot at a 15% loss; however; my tests have shown 0.20-0.25 to be the sweet spot. DEFAULT IS SET TO 0.25.  
     
    On average, Going Up - Jackpot Edition yields an average return of 10% profit compounded (at the end of a 9000 -11,000 rolls). Returns are compounded per series of approximately 10,000 rolls. So it gains far more often then the unlikely event of a long loss event.

The bot will perform with balances of at least 0.00400000 BTC; and performs exceptionally well, minimal risk, with balances at or above 0.10000000 BTC

  • CHANCE ADJUSTMENTS:   Refinements to chance have been made which have proven to be more profitable over the long run. This includes slight changes at where the 'stages' change.
  • NOTIFICATIONS:   The script now sends display messages which will appear in the scrolling console window of Dicebot announcing a Win, Stage Change, and other Notifications such as Max Bet / Adjustments.
  • JACKPOT LIMIT:   This bot is designed to be start and go to bed. Walk away. Let it work for you. Just run. That said; every win, (roughly 1 in 100 rolls); the next bet is a 9900x Chance Bet. (You may need to adjust the "JACKPOT VARIABLE CHANCE" as it is set at 0.01 which not all dice sites allow. The Jackpot roll is a fraction of your last win. It also acts as a stop limit; if your swings get too large; your jackpot bet on your next win; after a long streak will be a higher wager amount. If the Jackpot wager amount exceeds a specific fraction of your balance (balance * 0.0013725) to be exact... the bot will reset. Why? Because the odds of hitting the jackpot are small. So after a big win; the bot will typically meet it's "reset threshold". However; after doing so; the loss of a large losing Jackpot Bet (Example: 0.00001000) would instantly put the "mathmatics" of the bot into negative loss teritory. Limiting the Jackpot amount; or rather, reseting to BASE if it gets to large; prevents the bot from hitting a long loss streak after a first long loss streak followed by a big win.
     
    These are illustrated in the charts.

This revised script is provided free of charge; and has been tested and works perfectly using Seuntjies DiceBot which can be found here:   https://bitcointalk.org/index.php?topic=307425.0;topicseen

Fast Rolls & Solid Performance on the test sites I used: https://primedice.com/?c=HeyYouGuys      and    https://www.crypto-games.net?i=gw7DaSSW4Z     

Please consider using the above referal links (also provided in the script for all dice sites to help support future bot enhancements and development of new scripts which I will release when ready. Thank you all and feel free to respond with questions!


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

-- CHANGE AT YOUR OWN RISK --

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

function dobet()

-- ** SET SINGLE SERIES MAX BANK LOSS HERE AS PERCENTILE - RECOMMENDED SETTING IS 0.175 TO 0.25 ** --

balancestoplimitround = (balance * 0.25)

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 = 0.01
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("[email protected]")
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!



COMMENTS QUESTIONS AND FEEDBACK ARE WELCOME, OR YOU MAY CONTACT ME VIA PM!


Pages:
Jump to: