Advertisement
dicekode

payout-trapper

Jul 1st, 2022
1,418
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. basebet = 0.0000064
  2. target = balance + 1
  3. payout = 11
  4. ctlose = 0
  5. mxlose = 30
  6. sumlose = 0
  7. bethigh = false
  8. nextbet = basebet
  9. chance = 99/payout
  10.  
  11. function fn_incr(x,y)
  12. return x + (x * (y/100))
  13. end
  14.  
  15. function fn_decr(x,y)
  16. return x - (x * (y/100))
  17. end
  18.  
  19. resetstats()
  20. function dobet()
  21. if win then
  22. if ctlose > mxlose then
  23. mxlose = ctlose
  24. end
  25. nextbet = basebet
  26. ctlose = 0
  27. bethigh = false
  28. else
  29. sumlose += 1
  30. ctlose += 1
  31. nextbet = fn_incr(nextbet,11)
  32. if ctlose > (mxlose - 10) then
  33. nextbet = fn_incr(nextbet,25)
  34. end
  35. end
  36. if sumlose%50==0 then
  37. bethigh = not bethigh
  38. end
  39. chance = 99/payout
  40. print("\nPADEPOKANDADU DICEKODE\n\n")
  41. print("░▒▓- Profit \t[ "..string.format("%.8f",profit).."\t"..string.format("%.2f",profit/(balance-profit)*100).."% ]")
  42. if balance > target then stop() end
  43. end
  44.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement