Advertisement
TheFrog2

Untitled

May 26th, 2018
273
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1. -- Script for 100x win
  2. -- Created by TheFrog Version 1.5
  3. --
  4. -- What does it:
  5. -- Bets 100 rolls with 10 sat base, incr 1.01 on loss
  6. -- if no hit then it will roll further with 0 bets till a hit is reached
  7. -- then it starts over again with 10 sat base.
  8. -- The idea is that 100x hits more times under 100 rolls than over 100 rolls
  9. --
  10. -- Usage: Set dicebot in programming mode,
  11. -- paste script in the code field
  12. -- click on the console tab and type start() and press enter
  13. -- to start again use arrow up and press enter
  14. -- to stop type stop() in console tab and hit enter
  15. --
  16. -- if u want to increase the base bet just alter the base = 0.00000010
  17.  
  18.  
  19.  
  20.  
  21. chance=1
  22. prebet=0.00000000
  23. base = 0.00000010
  24. betcount=0
  25. bethigh=true
  26. betcount=0
  27. multiplier=1.01
  28. losscount=1
  29.  
  30.  
  31. function dobet()
  32.  
  33.  
  34. if betcount < 100 then
  35. betcount += 1
  36. nextbet=base*multiplier
  37. if win then
  38. betcount=0
  39. losscount=1
  40. nextbet=base
  41. else
  42. nextbet=previousbet*multiplier
  43. end
  44. else
  45. losscount = losscount + 1
  46. print("losscount : ".. losscount)
  47. if betcount == 100 or betcount > 100
  48. then
  49. nextbet=prebet
  50. if win then
  51. betcount=0
  52. nextbet=base*losscount
  53. end
  54. end
  55. end
  56. end
  57.  
  58. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement