nytewind 187 #1 Posted December 20, 2017 Who wants to be a test subject? the script has been tested by me for over a few hundred thousand bets now, if you stop it every 5k profit and reset your stats , minbalance etc, it only seems to hit the min.balance stoploss once every 15-ish times give it a whirl if you want and please give me feedback so I can make adjustments before uploading to seuntjies site! ==========copy and paste below into dicebot==== I assume you know the basics of programmer mode!!===== --NyteFlyer Beta V.1.2 -- --Tested on Primedice for 150,000rolls --Use the script, with caution however you like. --The best way to use this script is to go for small profit chunks. --suggested target 2.5k satoshi at a time --suggested minbal 12k lower than current balance --suggested base bets of 11 and 31 seem to have good results --set target to 5k or 50k or whatever you want you get the idea. --Small red streaks aren't recovered instantly, larger red streaks yield great profit --with minbal set to 10k lower than current balance, 11basebet should survive 12losses --THE ONLY LINES YOU NEED TO EDIT ARE TARGET MINBAL AND BASE BET!!!! --Edit target, minbal and basebet only target = 0.000025 --this is how much profit you want to make its currently set to 2500sats minbal = 0.0001 --what you dont want your balance to drop below currently set to 10k sats basebet = 0.00000011 --DO NOT EDIT BELOW THIS LINE-- chance = 81.12 bethigh = true nextbet = basebet function dobet() if (win) then chance = 81.12 nextbet = basebet else if chance == 33.33 then nextbet = previousbet * 1.6 else chance = 33.33 nextbet = basebet/3.3 end end if balance<minbal then alarm() stop() resetseed() print('*********************************************************************************************************************************') print('*********************************************************************************************************************************') print('Oh No! You missed your goal this time - Try resetting your stats and going again!!!') print('*********************************************************************************************************************************') print('*********************************************************************************************************************************') end if profit>target then ching() stop() resetseed() print('*********************************************************************************************************************************') print('Congrats! You hit your target! Go take a break!') print('*********************************************************************************************************************************') end end 1 cryptomonkey reacted to this Quote Share this post Link to post Share on other sites
FrozenRand 1 #2 Posted December 23, 2017 Hey nytewind, I tested out your script! Its pretty good for a safe route to get to any target. It helped me recover back to positive profit after some larger losses. Gonna keep tweaking it and keep you posted with the results. Cheers! Quote Share this post Link to post Share on other sites
Bigmoney2010 0 #3 Posted December 28, 2017 I'm new I don't know to use plus explain Quote Share this post Link to post Share on other sites
FrozenRand 1 #4 Posted December 29, 2017 Hey Bigmoney2010, Nytewind's script is for DiceBot. Its an application that does automatic bidding with more in depth controls that PrimeDice's integrated system. You can check it out and download it here: https://bot.seuntjie.com/ For Nytewind's script, you need to enter Programmer mode. There you can enter in his LUA script in the programmer window on the bottom left-hand side of the UI. Then you go to the Console tab at the top left hand corner of the UI. There you enter "start()" into the input panel at the bottom of the window which will start betting based on the parameters entered in the script. All this being said, its also good if you read up on the programming language LUA so that you have a basic understanding of how to modify the script. Seuntijie's site also has some good beginner info for DiceBot and how to use the programmer mode. Cheers! Quote Share this post Link to post Share on other sites