Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- SC Minning slow V2.1
- -- Terpesona
- chance = 90
- multiplier = 1.1
- multiplier2 = 1.21
- base = 0.000225
- nextbet = base
- bethigh = false
- target = .000005
- investtarget = .1
- tmpprofit = 0
- investprofit = 0
- wincount = 3
- stopnow = false
- tp = balance + 100 -- Pakek Ream Cakram Profit
- sl = balance - 100 -- stop rugi jika loss
- --delaybet = 14
- function dobet()
- chance = math.random(12*100.0,90*100.0)/100.0
- tmpprofit += currentprofit
- investprofit += currentprofit
- if win then
- print("We Won")
- if (tmpprofit > target) then
- tmpprofit = 0
- nextbet = base
- if(stopnow) then stop() end
- if(investprofit > investtarget ) then
- investprofit = 0
- invest(investtarget)
- end
- else
- print("Since we Won we are now times our last bet by multiplier 2")
- nextbet=previousbet*multiplier2
- if(nextbet < base) then
- nextbet = base end
- end
- else
- print("we lost so we are timzing by multiplier 1")
- nextbet=previousbet*multiplier
- if(nextbet < base) then
- nextbet = base
- end
- if balance > tp then stop() end
- if balance - nb < sl then stop() end
- end
- end
Add Comment
Please, Sign In to add comment