Advertisement
Baliarta

SC NYICIL PANCI

Jan 31st, 2023
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. -- SC NYICIL PANCI --
  2.  
  3. basebet = 0.0000001
  4. nextbet = basebet
  5. chance = 80
  6. bethigh = true
  7. closs = 0
  8. --bethigh = false
  9. resetstats()
  10. resetchart()
  11. function dobet()
  12. --bethigh = !bethigh
  13. if (win) then
  14. closs = 0
  15. if profit > profit + 0.000001 then
  16. nextbet = basebet
  17. chance = math.random(79*100.0, 80*100.0)/100.0
  18. else
  19. if chance > 70 then
  20. chance = math.random(60.95*100.0, 70*100.0)/100.0
  21. nextbet = previousbet * 1.201
  22. else
  23. nextbet = basebet
  24. chance = math.random(79*100.0, 90*100.0)/100.0
  25. end
  26. end
  27.  
  28. else
  29. closs += 0
  30.  
  31. if closs == 0 then
  32. chance = math.random(79*100.0, 80*100.0)/100.0
  33. nextbet = previousbet * 2.41
  34. end
  35. print("\n")
  36. print("\n\n░▒▓█ NYICIL PANCI █▓▒░\n")
  37. end
  38.  
  39.  
  40. end
  41. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement