Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --- Best wager v14
- div = 1e3 -- for safe mod set div = 1e4
- basebet = 0.100021--balance/div
- nam = 0
- lam = 0
- sart = 0
- chance = 98
- chance2 = 80
- chance3 = 83.0
- nextbet = basebet
- ----------------------------------------
- function dobet()
- if (win) then
- nam = nam + 1
- lam = 0
- else
- nam = 0
- lam = lam + 1
- chance = math.random( ( chance2 * 100 ), ( chance3 * 100 ) ) / 100
- end
- if bets%2==0 then
- nextbet = previousbet * 1.7
- end
- sart = sart + lastBet.profit
- if sart > 0 then
- sart = 0
- nextbet = basebet
- chance = 88
- end
- if bets%3==0 then
- nextbet = previousbet * 1.27
- end
- if bets%5==0 then
- nextbet = previousbet * 1.7
- end
- if nam%15==0 and nam > 0 then
- bethigh = not bethigh
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement