mydicebot 88 #1 Posted December 11, 2018 (edited) MyDiceBot Introduction https://mydicebot.com This post is trying to collect the MyDiceBot scripts for Primedice Official Promotions as many as possible. Edited June 25, 2019 by mydicebot 1 1 CaptainLorca and EpicGord reacted to this Quote Share this post Link to post Share on other sites
mydicebot 88 #2 Posted December 11, 2018 (edited) Promotion Script target = 55.55 chance = 98 basebet = 0.000001 bethigh = true function dobet() if currentroll == target then stop() else nextbet = basebet end end Comment Just put your target rollnumber into "target = xx.xx" Of course choose the currency you want to use for this challenge and change the bet amount according to the currency under "basebet = x" Author @CaptainLorca Edited December 11, 2018 by mydicebot Quote Share this post Link to post Share on other sites
PrimeDragon 8 #3 Posted December 12, 2018 can i put 2 number in there 44.44 or 88.88 or what ever Quote Share this post Link to post Share on other sites
CaptainLorca 903 #4 Posted December 12, 2018 30 minutes ago, PrimeDragon said: can i put 2 number in there 44.44 or 88.88 or what ever target = 11.11 target2 = 55.55 loseprofit = -0.00010000 chance = 98 basebet = 0.000001 bethigh = true function dobet() if currentroll == target then stop() elseif currentroll == target2 then stop() else nextbet = basebet end if profit <= loseprofit then stop() end end This is for hunting two numbers. The variable "loseprofit" is a failsafe.. meaning you set a negative amount to make the bot stop betting, if a certain negative profit is reached. In this case (set for btc) -10k Satoshi. 1 mydicebot reacted to this Quote Share this post Link to post Share on other sites
CaptainLorca 903 #5 Posted December 17, 2018 For actual challenge: loseprofit = -0.00010000 chance = 49.50 basebet = 0.000001 bethigh = true function dobet() if currentstreak >= 6 then stop() end bethigh = !bethigh if profit <= loseprofit then stop() end nextbet = basebet end it just switches side whole through. It’s also possible to make it switch sides on first green received. Maybe update it later. Set for Bitcoin: basebet: Minimum bet amount loseprofit: Maximum you want to lose while chasing And ofc... no guarantee! But worked for me :)! 1 1 mydicebot and EpicGord reacted to this Quote Share this post Link to post Share on other sites
CaptainLorca 903 #6 Posted December 24, 2018 Scripts for the actual challenge (all set to roll with BTC) Script for x330 On hold. Something seems to be wrong with the chance and multiplier. If this gets resolved, I post the script. Until then please use the automode or single betting on the Primedice site. Script for getting 6 times x4: loseprofit = -0.00010000 chance = 24.75 basebet = 0.000001 bethigh = true function dobet() if currentstreak >= 6 then stop() end bethigh = !bethigh if profit <= loseprofit then stop() end nextbet = basebet end You might catch it with that one. To be honest... I could write like tons of scripts with conditions to change sides on this and that.. but that would get us all nowhere. I caught it once with this script. Catching 25.12 target = 25.12 loseprofit = -0.00010000 chance = 98 basebet = 0.000001 bethigh = true function dobet() if currentroll == target then stop() end nextbet = basebet if profit <= loseprofit then stop() end end And again: No guarantee this will work for you :)! 2 SEMPAXs and EpicGord reacted to this Quote Share this post Link to post Share on other sites
CaptainLorca 903 #7 Posted December 31, 2018 Here is the script for the newest promotion! basebet = 0.000001 chance = 98 bethigh = false target1 = 1.29 target2 = 1.92 target3 = 2.19 target4 = 2.91 target5 = 9.12 target6 = 9.21 loseprofit = -0.00010000 function dobet() if (currentroll == target1) or (currentroll == target2) or (currentroll == target3) or (currentroll == target4) or (currentroll == target5) or (currentroll == target6) then stop() else nextbet = basebet end if profit <= loseprofit then stop() end end As always set for using Bitcoin and loseprofit meant to be the failsafe. Of course you need to change the targets according to the group you're hunting. Script for getting 20.19: target = 20.19 loseprofit = -0.00010000 chance = 98 basebet = 0.000001 bethigh = true function dobet() if currentroll == target then stop() end nextbet = basebet if profit <= loseprofit then stop() end end No guarantee it works for you! 1 mydicebot reacted to this Quote Share this post Link to post Share on other sites
williamsh 363 #8 Posted December 31, 2018 18 minutes ago, CaptainLorca said: Here is the script for the newest promotion! basebet = 0.000001 chance = 98 bethigh = false target1 = 1.29 target2 = 1.92 target3 = 2.19 target4 = 2.91 target5 = 9.12 target6 = 9.21 loseprofit = -0.00010000 function dobet() if (currentroll == target1) or (currentroll == target2) or (currentroll == target3) or (currentroll == target4) or (currentroll == target5) or (currentroll == target6) then stop() else nextbet = basebet end if profit <= loseprofit then stop() end end As always set for using Bitcoin and loseprofit meant to be the failsafe. Of course you need to change the targets according to the group you're hunting. Script for getting 20.19: target = 20.19 loseprofit = -0.00010000 chance = 98 basebet = 0.000001 bethigh = true function dobet() if currentroll == target then stop() end nextbet = basebet if profit <= loseprofit then stop() end end No guarantee it works for you! Thanks for posting this! Is this only for MyDiceBot, or will it work on Seuntjie's dicebot? Quote Share this post Link to post Share on other sites
CaptainLorca 903 #9 Posted December 31, 2018 4 minutes ago, williamsh said: Thanks for posting this! Is this only for MyDiceBot, or will it work on Seuntjie's dicebot? As the title of the topic states, its for MyDiceBot. The script would be slightly different for seuntjies dicebot.. You just need to replace "currentroll" with the right variable I believe and it would work on it. 1 williamsh reacted to this Quote Share this post Link to post Share on other sites
williamsh 363 #10 Posted December 31, 2018 5 minutes ago, CaptainLorca said: As the title of the topic states, its for MyDiceBot. The script would be slightly different for seuntjies dicebot.. You just need to replace "currentroll" with the right variable I believe and it would work on it. Thanks I've never used MyDiceBot before, this is my first time. Do you just paste the code into the "Script" section? I think I'm doing something wrong. Any ideas? http://prntscr.com/m1l6w3 Quote Share this post Link to post Share on other sites
CaptainLorca 903 #11 Posted December 31, 2018 5 minutes ago, williamsh said: Thanks I've never used MyDiceBot before, this is my first time. Do you just paste the code into the "Script" section? I think I'm doing something wrong. Any ideas? http://prntscr.com/m1l6w3 That tends to happen if you just copy and paste it from the script thing here. You need to search the spots where the forum adds unexpected symbols. Easiest would be to remove any useless space and track down the errors. Or try to paste it into a textfile (.txt) and copy it again from there. 2 mydicebot and williamsh reacted to this Quote Share this post Link to post Share on other sites
@zulfandina 211 #12 Posted May 5, 2019 Thank you for giving us a very useful knowledge. hopefully with this I can win the bet. I am quite tired of accepting defeat in rolling the dice. Quote Share this post Link to post Share on other sites
JstLikeMagyk 157 #13 Posted May 6, 2019 Thanks for sharing would you make custom scripts on request? Quote Share this post Link to post Share on other sites
watchmen 1 #14 Posted May 7, 2019 looking pretty good bot. I can rolled this custome number as pd Quote Share this post Link to post Share on other sites
mydicebot 88 #15 Posted June 19, 2019 chance=98 basebet=0.000001 nextbet=basebet bethigh=false numbersToHunt = {20.29,92.02,19.84,48.91} function dobet() if containedInSet(currentroll, numbersToHunt) then print(currentroll) stop() end end function containedInSet(x, set) for key, value in pairs(set) do if x == value then return true end end return false end 1 CaptainLorca reacted to this Quote Share this post Link to post Share on other sites
Kate 282 #16 Posted June 19, 2019 Tha ks for this really going to make it super helpful while hunting these imposs in ble number challenges was looking for a script hope i have luck to hit it. Quote Share this post Link to post Share on other sites
sheenaz.bay 443 #17 Posted June 19, 2019 Thank you for sharing the scripts here. at least the scripts make it easy for us to rollhunt. especially those who can make scripts to play, what I mean is not for rollhunts, but scripts that aim to get profit Quote Share this post Link to post Share on other sites
mydicebot 88 #18 Posted June 25, 2019 (edited) chance=33 nextbet=0.00008000 bethigh=false currency = "Ltc" local targetStreak = 3 local conditionalStreak = 0 local lastDigit = -1 function dobet() if win then print(currentroll) -- Check if last digit matched current streak local digit4 = round((currentroll * 100) % 10) if lastDigit != digit4 then conditionalStreak = 1 lastDigit = digit4 else conditionalStreak += 1 end -- Stop if we hit the target streak length if conditionalStreak >= targetStreak then stop() end else conditionalStreak = 0 lastDigit = -1 end end function round(x) return math.floor(x + 0.5) end Download: https://mydicebot.com Edited June 25, 2019 by mydicebot Quote Share this post Link to post Share on other sites
dantexpolis 0 #19 Posted July 25, 2020 can you do for Tron ? first deposit 200 trx Quote Share this post Link to post Share on other sites
mydicebot 88 #20 Posted August 9, 2020 On 25/07/2020 at 19:42, dantexpolis said: can you do for Tron ? first deposit 200 trx MyDiceBot - v20.7.10 Primedice/Stake issue fixing * add new currency types for primedice/stake - TRX and EOS https://github.com/mydicebot/mydicebot.github.io/releases/tag/v20.7.10 --- MyDiceBot - v20.8.9 resetstats() in scripting mode betinterval(ms) in scripting mode paradice default 1s bet interval resetseed() for console edition https://github.com/mydicebot/mydicebot.github.io/releases/tag/v20.8.9 Quote Share this post Link to post Share on other sites
BornHyper 0 #21 Posted August 21, 2020 How can we use this in mobile? Quote Share this post Link to post Share on other sites
gyanendra 0 #22 Posted August 21, 2020 1 hour ago, BornHyper said: How can we use this in mobile? its work only on dicebot in desktop Quote Share this post Link to post Share on other sites