Advertisement
coinwalk

not snowys

Mar 16th, 2023
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.37 KB | None | 0 0
  1.  
  2.  
  3. initbal = balance
  4. he = 1 --houseEdge
  5. bb = 0.001 --minimal bet
  6. basebet = .001
  7. nextbet = basebet
  8. startch = math.random(1,5) --start chance
  9. maxch = math.random(50,55)
  10. chance = startch
  11. ct = 0
  12. cprofit = 0
  13. mod = 0
  14. if nextbet < bb then nextbet = bb end
  15. function dobet()
  16. cprofit = cprofit + currentprofit
  17. if !win then
  18. ct = ct + 1
  19. chance = math.random(startch*100,(startch+5)*100)/100
  20. if math.floor((lastBet.roll/100)+0.5)%2==0 then
  21. bethigh = true else bethigh = false
  22. end
  23. if chance < 11 then mod = 10 else mod = 200 end
  24. nextbet = (math.abs(cprofit)/(((100-he)/chance)-1))*(1+((chance*(chance/mod))/ct))
  25. else
  26. ct = 0
  27. if cprofit > 0 then cprofit = 0 end
  28. if lastBet.nonce > math.random(100,1000) then
  29. math.randomseed(os.clock()) resetseed()
  30. end
  31. startch = startch+math.random(2,5)
  32. --if chance >= 40 and chance < 50 then startch = 50 chance = 50 end
  33. if (currentstreak >= 1) then chance = chance+1 end
  34. nextbet = basebet
  35. if previousbet > (initbal * 0.01) then pause() end
  36. if chance > maxch then
  37. --start() --if not use rdp for more speed bet
  38. startch = math.random(1,5) chance = startch
  39. end
  40. end
  41. if nextbet < bb then nextbet = bb end
  42. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement