Advertisement
Ypleitez

Untitled

Oct 12th, 2023
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.14 KB | None | 0 0
  1. --- Aqayen 50% daily profit ---
  2.  
  3. -- For more profit and wager scripts, contact me via Telegram = @Aqayen --
  4.  
  5. basebet = 0.00000001 --(For every 0.1 coin equals 0.00000001For example, if the balance is 10 coins, set the basebet to 0.00000100)
  6. paye1 = 1.5
  7. target = balance*1.5
  8. darbax = 0.5
  9. afbax = 0.00000001 --(For every 0.1 coin equals 0.00000001 For example, if the balance is 10 coins, set the basebet to 0.00000100)
  10. xorbax = 0.5
  11. darbor = 0
  12. afbor = 1.00
  13. xorbor = 1.00
  14. nextbet = basebet
  15. payout = paye1
  16. chance = 90/payout
  17.  
  18.  
  19. function dobet()
  20.  
  21. bethigh = math.random(0,100)%2 == 0
  22. if (win) then
  23. if (darbor == 0) then
  24. nextbet = basebet
  25. payout = paye1
  26. chance = 90/payout
  27. else
  28. nextbet += afbor
  29. payout += xorbor
  30. chance = 90/payout
  31. end
  32. else
  33. if (darbax == 0) then
  34. nextbet = basebet
  35. payout = paye1
  36. chance = 90/payout
  37. else
  38. nextbet += afbax
  39. payout += xorbax
  40. chance = 90/payout
  41. end
  42. end
  43.  
  44. if (nextbet >= target) then
  45. stop()
  46. end
  47.  
  48. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement