Advertisement
Baliarta

Barbar opit gede jika lolos

Apr 18th, 2023
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. basebet = 0.00010001
  2. ifwin = 1.25
  3. iflose = 2
  4. chance1 = 79
  5. chance2 = 79
  6. stopprofit = 50 ----Wajib DI Isi Buat auto stop nya Biar Gk jebol
  7. -------
  8. stoplose = 70
  9. wincount = 0
  10. losecount = 0000
  11. nextbet = basebet
  12. chance = math.random(chance1*100,chance2*100)/100
  13. balmax = balance + stopprofit
  14. balmin = balance - stoplose
  15.  
  16. function dobet()
  17.  
  18.  
  19. if (losecount == 1) then
  20. losecount = 0
  21. bethigh = !bethigh
  22. end
  23.  
  24. if (wincount == 1) then
  25. wincount = 0
  26. bethigh = !bethigh
  27. end
  28.  
  29. if(win) then
  30. wincount += 1
  31. losecount = 0
  32. nextbet = previousbet* ifwin
  33. else
  34. losecount += 1
  35. wincount = 0
  36. nextbet = previousbet * iflose
  37. end
  38.  
  39. chance =math.random(chance1*100,chance2*100)/100
  40.  
  41. if balance > balmax then stop() end
  42. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement