Advertisement
Baliarta

NYICIL PAJERO CH 0.09-12

Jan 28th, 2023
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. base = 0.00000001
  2. if_lose = 1.165179574883948
  3. if_win = 1.0
  4. if_profit = 0.01
  5. nextbet = base
  6. chance = 86
  7. tp = balance * 1.9
  8. resetstats()
  9. resetchart()
  10. resetseed()
  11. function dobet()
  12. if win then
  13. print("NYICIL PAJERO")
  14. nextbet = previousbet * if_win
  15. else
  16. nextbet = previousbet * if_lose
  17. end
  18. if profit > if_profit then
  19. if_profit = profit
  20. nextbet = base
  21. end
  22. if balance > tp then stop () end
  23. chance = math.random(99,12000)/1000
  24. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement