Advertisement
Baliarta

Jper resetstas

Apr 16th, 2023 (edited)
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.21 KB | None | 0 0
  1. minone = 66
  2. maxone = 66
  3. mintwo = 5
  4. maxtwo = 25
  5. bone = 3e-5
  6. btwo = 2e-5
  7. ip = 0
  8. tpg = balance*5
  9.  
  10. chance = math.random(mintwo, maxtwo)
  11. il = 1.6
  12. xwin = 1.2
  13. base = 0.0003
  14. nextbet = base
  15. bethigh = false
  16. rollcount = 50
  17.  
  18. resetstats()
  19. resetseed()
  20.  
  21. function dobet()
  22.  
  23. --Randomizer
  24. r=math.random(2)
  25.  
  26. if r == 1 then
  27. bethigh=true
  28. else
  29. bethigh=false
  30. end
  31.  
  32. --Randomly select High/Low
  33. --bethigh = math.random(0,100)%2 == 0
  34.  
  35. --change seed every 7 bet
  36. if rollcount == 78 then
  37. rollcount = 0
  38. resetseed();
  39. else
  40. rollcount = rollcount + 1
  41. end
  42.  
  43. --bet progression
  44. if win then
  45. chance = math.random(mintwo*100.0, maxtwo*100.0)/100.0
  46. if bets%2==0 then
  47. nextbet = previousbet/xwin
  48. end
  49. else
  50.  
  51. chance = math.random(minone*100.0, maxone*100.0)/100.0
  52. if bets%2==0 then
  53. nextbet = previousbet * il
  54. end
  55. end
  56. if profit> ip then
  57. profit = 0
  58. nextbet = base
  59. resetstats()
  60. end
  61.  
  62. if balance>tpg then
  63. print("PROFIT GLOBAL REACHED")
  64. stop()
  65. end
  66. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement