Advertisement
Guest User

Untitled

a guest
Dec 15th, 2019
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. basebet = 0.00001000 --dein Einsatz
  2. chance1 = 98 --deine Wager Chance
  3.  
  4. --================================================
  5. chance2 = 49.5
  6. chance = chance1
  7. nextbet = basebet
  8. multi = 2
  9.  
  10. function dobet()
  11.  
  12.  
  13. if win and profit > 0 then
  14. chance = chance1
  15. nextbet = basebet
  16. end
  17.  
  18. if not win and profit > 0 then
  19. chance = chance1
  20. nextbet = basebet
  21. end
  22.  
  23.  
  24.  
  25. if win and profit < 0 then
  26. chance = chance2
  27. nextbet = basebet/10
  28. end
  29.  
  30. if not win and profit < 0 and currentstreak == -1 then
  31. chance = chance2
  32. nextbet = basebet/10
  33. end
  34.  
  35. if not win and profit < 0 and previousbet < basebet then
  36. chance = chance2
  37. nextbet = previousbet*multi
  38. end
  39.  
  40. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement