Advertisement
Baliarta

PROFIT BERLIMPAH KALAU JP

Dec 20th, 2022
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.58 KB | None | 0 0
  1. -- SC PROFIT BERLIMPAH VERSI NGEBUT--
  2.  
  3. min = 35 -- set minimal chance
  4. max = 65 -- set max chance
  5. chance = 90 --starting chance
  6. multiplierwin = 1.82
  7. multiplierlose = 1.18
  8. base = balance/10000
  9. nextbet = base
  10. tp = balance*5 -- set your own profit
  11. target = 0.010000000000000 --set target back to base
  12. investtarget = 28000000 --set target back to base
  13. tmpprofit = 0
  14. investprofit = 0
  15. wincount = 10
  16. startbalance = balance
  17.  
  18. function dobet()
  19. if balance > tp then stop () end
  20. tmpprofit += currentprofit
  21. investprofit+= currentprofit
  22. chance = math.random(min*100,max*100.0)/100.0
  23. if win then
  24. if(tmpprofit > target) then
  25. print("TMPPROFIT is greater than our target Resessting to Base")
  26. tmpprofit = 0
  27. nextbet = base
  28. sleep(0); --delay your bet
  29.  
  30. else
  31. print("Since we havent reached our target times last bet by multiplierwin")
  32. nextbet = previousbet*multiplierwin
  33. if(nextbet < base) then
  34. sleep(0) --delay your bet
  35. print("nextbet is less than base bet so its now base bet")
  36. nextbet = base
  37. end
  38. end
  39. else
  40. sleep(0) --delay your bet
  41. print("We have lost so we are timzing by multiplierlose")
  42. nextbet = previousbet*multiplierlose
  43. if(nextbet <base) then
  44. print("Lower than base bet so now basebet")
  45. nextbet = base
  46. end
  47. end
  48. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement