Advertisement
Ypleitez

Untitled

Oct 25th, 2023
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. chance=math.random(45*1000, 52*1000)/1000.0
  2. resetstats()
  3. base =0.0000001
  4. nextbet = base
  5. target=6000
  6. balance2=balance
  7. nbet=base*4
  8. f=0
  9. g=balance
  10. tg2=0
  11. rollcount=0
  12. maxbet = 0
  13. win=0
  14. lose=0
  15.  
  16. bethigh = false
  17. bethigh = true
  18. low = 0
  19. high = 0
  20. countwin=0
  21. countlose=0
  22. rollcount = 20
  23. target = 0.2
  24. function dobet()
  25. if(bets%2==0) then
  26. bethigh=true
  27. else
  28. bethigh=false
  29. end
  30. if(win) then
  31. countwin+=1
  32. else
  33. countlose+=1
  34. end
  35. if rollcount == 20 then
  36. rollcount = 0
  37. resetseed();
  38. else
  39. rollcount = rollcount + 1
  40. end
  41. if win then
  42. chance=math.random(35*1000, 42*1000)/1000.0
  43. nextbet=previousbet*1.1
  44. if balance2 < balance then
  45. balance2=balance
  46. nextbet=base
  47. end
  48. else
  49. nextbet=previousbet*1.08
  50. chance=math.random(32*1000, 45*1000)/1000.0
  51. end
  52. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement