Hit and Run Dice Bot Strategy


SUBMITTED BY: psygambler

DATE: April 9, 2017, 5:57 p.m.

FORMAT: Text only

SIZE: 814 Bytes

HITS: 1131

  1. -- NOTES:
  2. -- INITIAL BALANCE SHOULD AT LEAST BE 0,01 BTC
  3. -- PLEASE DONATE IF YOU LIKE MY SCRYPT, THANKS!
  4. -- My Donation Address > 1PkbNePmQ9nbqqLYy87nCrFm1dwVgSQFpr
  5. chance = 90
  6. bethigh = true
  7. basebet = 0.00000200
  8. nextbet = basebet
  9. -- SET PROFIT TARGET
  10. profittarget= 0.01000000
  11. function dobet()
  12. if (win) then
  13. chance = 90.00
  14. nextbet = basebet
  15. else
  16. if chance == 19.80 then
  17. nextbet = previousbet * 1.255
  18. else
  19. chance = 19.80
  20. nextbet = 0.00000060
  21. bethigh = !bethigh
  22. end
  23. end
  24. if (balance) >= profittarget then
  25. ching()
  26. alarm()
  27. print("Your Balance is ") print(balance)
  28. print(" ")
  29. print("TARGET ACHIEVED!!!")
  30. print(" ")
  31. print("You Won ") print(profit) print(" for this Session")
  32. print(" ")
  33. stop()
  34. print(" ")
  35. end
  36. end

comments powered by Disqus