Baliarta

Niming Terpesono

Jan 27th, 2023
26
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. -- SC Minning slow V2.1
  2. -- Terpesona
  3.  
  4. chance = 90
  5. multiplier = 1.1
  6. multiplier2 = 1.21
  7. base = 0.000225
  8. nextbet = base
  9. bethigh = false
  10. target = .000005
  11. investtarget = .1
  12. tmpprofit = 0
  13. investprofit = 0
  14. wincount = 3
  15. stopnow = false
  16. tp = balance + 100 -- Pakek Ream Cakram Profit
  17. sl = balance - 100 -- stop rugi jika loss
  18. --delaybet = 14
  19.  
  20. function dobet()
  21. chance = math.random(12*100.0,90*100.0)/100.0
  22. tmpprofit += currentprofit
  23. investprofit += currentprofit
  24.  
  25. if win then
  26. print("We Won")
  27. if (tmpprofit > target) then
  28. tmpprofit = 0
  29. nextbet = base
  30.  
  31. if(stopnow) then stop() end
  32. if(investprofit > investtarget ) then
  33. investprofit = 0
  34. invest(investtarget)
  35. end
  36.  
  37. else
  38. print("Since we Won we are now times our last bet by multiplier 2")
  39. nextbet=previousbet*multiplier2
  40. if(nextbet < base) then
  41. nextbet = base end
  42. end
  43.  
  44. else
  45. print("we lost so we are timzing by multiplier 1")
  46. nextbet=previousbet*multiplier
  47. if(nextbet < base) then
  48. nextbet = base
  49. end
  50. if balance > tp then stop() end
  51. if balance - nb < sl then stop() end
  52. end
  53. end
Add Comment
Please, Sign In to add comment