Advertisement
Guest User

The "Fallback" Script

a guest
Dec 26th, 2020
3,964
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.45 KB | None | 0 0
  1. -- The "Fallback" Script - FuckingGambling.com
  2. -- Paste everything here into the programmer tab of dicebot. Test with small amount. Good luck!
  3. -- We use this script at Stake, https://stake.com/?c=061a1c2ff3 Send Rakeback code, "BitcoinWizards" to live support.
  4. -- WinDice - https://windice.io/?r=finggambling
  5. -- PrimeDice - https://primedice.com/?c=9e292347d3
  6. -- 999Dice - https://www.999dice.com/?342488460
  7. -- My Stake Username for donations / tips: BitcoinWizards
  8.  
  9.  
  10. chance = math.random(9000, 9100) / 100
  11. base = balance * 0.0001
  12. nextbet = base
  13. bethigh = false
  14. target = balance * 1.6
  15. bethigh = false
  16.  
  17. function dobet()
  18. if (balance > target) then
  19. stop()
  20. print("winning..!!")
  21. end
  22.  
  23. chance = math.random(9000, 9100) / 100
  24. multiplier = previousbet * 0.1
  25.  
  26. if (win) then
  27. --resetseed()
  28. bethigh = not bethigh
  29. nextbet = base
  30. else
  31. nextbet = previousbet * multiplier
  32. end
  33.  
  34. if (currentstreak <= -1) then
  35. chance = math.random(3300, 3400) / 100
  36. nextbet = previousbet * 0.1
  37. end
  38.  
  39. if (currentstreak <= -2) then
  40. chance = math.random(3300, 3400) / 100
  41. nextbet = previousbet * 1.59738
  42. end
  43.  
  44. if (currentstreak <= -10) then
  45. resetseed()
  46. end
  47.  
  48. if (currentstreak <= -17) then
  49. resetseed()
  50. chance = math.random(4100, 4300) / 100
  51. nextbet = previousbet * 1.65
  52. end
  53.  
  54. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement