Advertisement
Ypleitez

Untitled

Nov 6th, 2023
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. ---Aqayen High Risk Script V2---
  2.  
  3. --For more profit and wager scripts, contact me via Telegram = @Aqayen --
  4.  
  5. resetseed()
  6. chance = 33
  7. basebet = balance/9e6
  8. bethigh = false
  9. loss = 0
  10. target = balance*1.1
  11. function dobet()
  12. if balance>= target then stop() end
  13. loss+=1
  14. if win then
  15. chance = 33
  16. nextbet = basebet
  17. else
  18. chance = 33
  19. nextbet = (previousbet*1.5)
  20. end
  21. if (loss >= 3) then
  22. chance = chance*1.25
  23. loss = 0
  24. end
  25. if bets%7 == 0 then
  26. chance=0.66 end
  27. if bets%9 == 0 then
  28. chance=1.98 end
  29. if bets%5 == 0 then
  30. chance=1.32 end
  31. if bets%2 == 0 then
  32. chance=33 end
  33. if bets%4 == 0 then
  34. chance=3.3 end
  35. if bets%3 == 0 then
  36. chance=19.8 end
  37. if chance < 2 then chance = 2 end
  38. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement