script dicebot1


SUBMITTED BY: khimnguyn11

DATE: Oct. 25, 2017, 8:51 a.m.

FORMAT: Text only

SIZE: 1.6 kB

HITS: 4289

  1. chance = 90
  2. bethigh = true
  3. basebet = balance/5555
  4. nextbet = basebet
  5. --set targets
  6. amount=3100 -- Amount to withdraw
  7. profittarget= 11000 -- Set max Balance to start withdraw
  8. stoptarget=5000 -- Set min Balance to stop script
  9. function dobet()
  10. if (win) then
  11. chance = 90
  12. basebet = balance/5555
  13. nextbet = basebet
  14. else
  15. if chance == 25.00 then
  16. nextbet = previousbet * 1.33738
  17. else
  18. chance = 25.00
  19. nextbet = basebet/3.3
  20. print("-----------------------------------------")
  21. print(" ")
  22. print("You Won ") print(profit) print(" for this Session")
  23. print(" ")
  24. print("Your Balance is ") print(balance)
  25. print(" ")
  26. print("-----------------------------------------")
  27. resetseed();
  28. end
  29. end
  30. if balance <= stoptarget then
  31. stop()
  32. end
  33. if (balance) >= profittarget then
  34. ching()
  35. alarm()
  36. print("Your Balance is ") print(balance)
  37. print(" ")
  38. print("TARGET ACHIEVED GO NEXT!!!")
  39. print(" ")
  40. print("TARGET ACHIEVED GO NEXT!!!")
  41. print(" ")
  42. print("TARGET ACHIEVED GO NEXT!!!")
  43. print(" ")
  44. print("TARGET ACHIEVED GO NEXT!!!")
  45. print(" ")
  46. print("You Won ") print(profit) print(" for this Session")
  47. print(" ")
  48. print("Withdrawing Target Amount ") print(amount) print(" DOGE")
  49. --Change withdraw adress
  50. --withdraw(amount,"your address here")
  51. --uncomment the line above and add your address to use.
  52. print(" ")
  53. print("CONTINUING TO WIN MORE!!!")
  54. resetseed();
  55. end
  56. end

comments powered by Disqus