Advertisement
coinwalk

snowy

Aug 24th, 2020
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. basebet = 0.00000001
  2. nextbet = basebet
  3. bethigh = false
  4. chance = 49.95
  5. james = balance
  6. snowy = balance
  7. more = balance
  8. fim = 0
  9. zim = 0
  10. zog = 0
  11. zag = 0
  12. bim = 0
  13. target = 0.005
  14. function dobet()
  15. if (!win) then
  16. zim+=1
  17. fim+=1
  18. end
  19. if (fim>1) then
  20. nextbet = previousbet*2
  21. end
  22. if balance>snowy then
  23. zim = 0
  24. snowy = balance
  25. end
  26. if (balance>james) and (zim<=1)and (win) then
  27. nextbet = basebet
  28. james = balance
  29. end
  30. if balance>more*2 then
  31. nextbet = basebet
  32. more = balance
  33. end
  34. if balance>target then
  35. stop()
  36. end
  37. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement