Advertisement
coinwalk

lol++

Mar 7th, 2021
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.20 KB | None | 0 0
  1. -- snowy Special thanx to DiceBender v2
  2. basebet = 0.01
  3. chance = 49.95
  4. nextbet = basebet
  5. tp = balance*20000
  6. investtarget = balance
  7. tmpprofit = 0
  8. investprofit = 0
  9. bethigh = false
  10. oldbal = balance
  11. looose = 0
  12. multi = 0
  13. resetstats()
  14.  
  15. function dobet()
  16. tmpprofit = tmpprofit + profit
  17. investprofit+= profit
  18. if win then
  19. if(tmpprofit > 0) then
  20. tmpprofit = 0
  21. if(investprofit > investtarget) then
  22. investprofit = 0
  23. investtarget = balance
  24. end
  25. else
  26. multi+=1
  27. if(nextbet < basebet) then
  28. nextbet = basebet
  29. end
  30. end
  31. else
  32. looose+=1
  33. if(nextbet < basebet) then
  34. nextbet = basebet
  35. end
  36. end
  37. if looose>=5 then
  38. nextbet = previousbet*6
  39. looose = 0
  40. end
  41. if multi>=2 then
  42. nextbet = previousbet*2
  43. multi = 0
  44. end
  45. if (balance>=(oldbal+(basebet*3))) then
  46. nextbet = basebet
  47. investprofit = 0
  48. tmpprofit = 0
  49. oldbal = balance
  50. looose = 0
  51. multi = 0
  52. end
  53. if balance >= tp then stop () end
  54. end
  55. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement