dicekode

wolf-pump-02

Sep 23rd, 2021 (edited)
306
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. basebet = 5 / 10^8
  2. payoutFirst = 8
  3. lose = 0
  4. martingale = 2
  5. limit = 0
  6. target = balance * 5
  7. payout = payoutFirst
  8. chance = 99 / payout
  9. nextbet = basebet
  10.  
  11. resetstats()
  12. resetseed()
  13.  
  14. function dobet()
  15.  
  16. if win then
  17. lose = 0
  18. payout = math.random(6,8)
  19. bethigh = math.random(1,5) > 4
  20. nextbet = basebet
  21. else
  22. lose = lose + 1
  23. nextbet = previousbet * martingale
  24. end
  25.  
  26. if (lose==27) then
  27. payout = payout - 1
  28. end
  29. if (lose==28) then
  30. payout = payout - 1
  31. end
  32. if (lose==29) then
  33. payout = payout - 1
  34. end
  35. if (lose==30) then
  36. payout = payout - 1
  37. end
  38. if (lose==31) then
  39. payout = payout - 1
  40. end
  41. if (lose==32) then
  42. payout = payout - 1
  43. end
  44. if (lose==33) then
  45. payout = payout - 1
  46. end
  47. if (lose==34) then
  48. payout = payout - 1
  49. end
  50.  
  51. chance = 99 / payout
  52. if balance - nextbet < limit then stop() end
  53. if balance > target then stop() end
  54. end
  55.  
Add Comment
Please, Sign In to add comment