Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- SC PROFIT BERLIMPAH VERSI NGEBUT--
- min = 35 -- set minimal chance
- max = 65 -- set max chance
- chance = 90 --starting chance
- multiplierwin = 1.82
- multiplierlose = 1.18
- base = balance/10000
- nextbet = base
- tp = balance*5 -- set your own profit
- target = 0.010000000000000 --set target back to base
- investtarget = 28000000 --set target back to base
- tmpprofit = 0
- investprofit = 0
- wincount = 10
- startbalance = balance
- function dobet()
- if balance > tp then stop () end
- tmpprofit += currentprofit
- investprofit+= currentprofit
- chance = math.random(min*100,max*100.0)/100.0
- if win then
- if(tmpprofit > target) then
- print("TMPPROFIT is greater than our target Resessting to Base")
- tmpprofit = 0
- nextbet = base
- sleep(0); --delay your bet
- else
- print("Since we havent reached our target times last bet by multiplierwin")
- nextbet = previousbet*multiplierwin
- if(nextbet < base) then
- sleep(0) --delay your bet
- print("nextbet is less than base bet so its now base bet")
- nextbet = base
- end
- end
- else
- sleep(0) --delay your bet
- print("We have lost so we are timzing by multiplierlose")
- nextbet = previousbet*multiplierlose
- if(nextbet <base) then
- print("Lower than base bet so now basebet")
- nextbet = base
- end
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement