Advertisement
coinwalk

awesome for rain

Dec 10th, 2019
266
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. chance = 90
  2. bethigh = true
  3. basebet = balance/5555
  4. nextbet = basebet
  5.  
  6.  
  7.  
  8. --set targets
  9. amount = 2 -- Amount to withdraw
  10. profittarget = 5-- Set max Balance to start withdraw
  11. stoptarget = 50000 -- Set min Balance to stop script
  12.  
  13.  
  14.  
  15.  
  16.  
  17. function dobet()
  18. if (win) then
  19. chance = 90
  20. basebet = balance/5555
  21. nextbet = basebet
  22. else
  23. if (chance == 23.00) then
  24. nextbet = previousbet * 1.33738
  25. else
  26. chance = 23.00
  27. nextbet = basebet/3.3
  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. tip(227900336,2)
  43. print(" ")
  44. print("CONTINUING TO WIN MORE!!!")
  45.  
  46.  
  47. resetseed();
  48.  
  49.  
  50.  
  51. end
  52.  
  53. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement