Advertisement
Ypleitez

Untitled

Oct 11th, 2023
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. -- *Aqayen* --
  2.  
  3. --Contact for more scripts - https://T.me/aqayen
  4.  
  5.  
  6. basebet = balance/1000000000
  7. nextbet = basebet
  8. chance = 12
  9. multiplier = 1.6
  10.  
  11. seedcounter = 0
  12. resetseedspin = 10
  13. target = balance* 100.1
  14. stoplose = balance - 400
  15.  
  16. function dobet()
  17. bethigh = false
  18. if (previousbet>1) then
  19. if (math.random(1,2) % 2 == 0)
  20. then bethigh = bethigh
  21. else
  22. bethigh = false
  23. end
  24. end
  25.  
  26. chance = math.random(900,2500)/100
  27.  
  28.  
  29. if(seedcounter==resetseedspin) then
  30. seedcounter = 0
  31. resetseed()
  32. else
  33. seedcounter = seedcounter+1
  34. end
  35.  
  36. if win then
  37. nextbet = basebet
  38. seedcounter = 0
  39. resetseed()
  40. else
  41. nextbet = previousbet * multiplier
  42. end
  43.  
  44.  
  45.  
  46. nextbalance = balance - nextbet
  47. if nextbalance <= stoplose then
  48. stop()
  49. end
  50.  
  51. if(balance>=target) then
  52. print("target reached")
  53. stop()
  54. end
  55.  
  56. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement