Advertisement
coinwalk

yoyo

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