Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Set Win Chance
- chance= 66.0
- --Enable betting speed:
- setvaluebool('BotSpeedEnabled',true)
- --set betting speed to 10 bets per second
- setvaluedecimal('BetSpeedValue',10)
- -- Set BaseBet
- div = (balance*100)/1
- base = balance/div
- nextbet = base
- initbalance=balance
- first = true
- second = false
- secondwin = false
- third = false
- betcount = 100
- resetstats();
- -- Before you START, check your Stop Conditions and ZigZag Settings in the Advance Mode
- -- Set Stop Conditions and Zigzag Settings Enabled = true Disabled=false
- enablezz = false
- enablesrc = false
- -- set profit target here
- profittarget = balance+50
- stoploss = balance-66
- function dobet()
- if betcount == 100 then
- betcount=0
- resetseed();
- else
- betcount=betcount+1
- end
- if (balance) - (nextbet)>= profittarget then
- stop();
- print(balance)
- print("TARGET ACHIEVED!!!")
- print("You Won")
- print("Profit: " .. string.format("%9.8f", profit) )
- print("for this Session")
- end
- if (balance) - (nextbet)<= stoploss then
- stop();
- print(balance)
- print("Profit: " .. string.format("%9.8f", profit) )
- stop()
- end
- if (stoponwin == true and lastBet.Profit > 0) then stop() end
- done = false
- --Randomizer
- r=math.random(2)
- if r == 1 then
- bethigh=true
- else
- bethigh=false
- end
- if win then
- if(first) then
- nextbet = base
- end
- if(second) then
- secondwin = true
- second = false
- third = true
- done = true
- end
- if(third and !done) then
- if (secondwin) then
- nextbet = base
- else
- nextbet = previousbet * 7
- end
- third = false
- first = true
- end
- else
- if(first and !done) then
- first = false
- second = true
- done = true
- end
- if(second and !done) then
- secondwin = false
- second = false
- third = true
- done = true
- end
- if(third and !done) then
- third = false
- first = true
- print("GOING 4 THE WIN!!!")
- if (secondwin) then
- nextbet = previousbet * 7
- else
- nextbet = previousbet * 12
- end
- done = true
- end
- end
- if ((initbalance)/2 < (nextbet)) then
- stop();
- print(balance)
- print("Emergency Stop")
- print("Large Bet Amount Occurred!")
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement