Advertisement
Guest User

Untitled

a guest
Nov 20th, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.24 KB | None | 0 0
  1. startingbet = 0.001 --This is the total amount when
  2. basebet = startingbet/3 --Bets work better when basebet is divisible by 3. Try 3, 9, 12 , 15 , 18, etc.
  3. nextbet = basebet
  4. sessionprofit = 0 --How much you made in total.
  5. profitamount = 0 --How much you made until a reset.
  6. profittarget = 0.00020 --Bot resets after this profit target is reached.
  7. profitlimit = 0.000200 --Bot stops after this profit limit is reached.
  8. chance = 49.50 --MUST be 49.50
  9. won = 0
  10. lost = 0
  11.  
  12. function dobet()
  13.  
  14. if (win) then
  15. nextbet = previousbet + previousbet/3
  16. profitamount=profitamount+currentprofit
  17. won = won+1
  18. lost = 0
  19. if profitamount >= profittarget then
  20. profitamount = 0
  21. nextbet = basebet
  22. end
  23. if sessionprofit >= profitlimit then
  24. print("Profit Limit reached. Stopping now...")
  25. print("Session Profit: " .. sessionprofit)
  26. sessionprofit = 0
  27. nextbet = basebet
  28. stop()
  29. end
  30. else
  31. nextbet = previousbet * 2
  32. profitamount=profitamount+currentprofit
  33. lost = lost+1
  34. won = 0
  35. if (bethigh) then
  36. bethigh = false
  37. else
  38. bethigh = true
  39. end
  40. if lost >= 2 then
  41. nextbet = basebet
  42. end
  43. end
  44. end
  45. if sessionprofit <= profitamount then
  46. sessionprofit = profitamount
  47. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement