Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- chance = 47.5 --2x
- basebet = 0.000001
- floatingbasebet = basebet
- target = 5000
- amountup = 6.9
- amountdown = 2.9
- lumptenbase = (basebet*10)
- sevenbasebet = (basebet*6.9)
- amountlumps = 1
- tag = balance
- older = balance
- oldbalanceone = balance
- oldbalancetwo = balance
- balancenow = balance
- nextbet = basebet
- bethigh = false
- fudge = false
- yeah = 0
- resetstats()
- function dobet()
- if (win) then
- balancenow = balancenow+floatingbasebet
- else
- balancenow = balancenow-floatingbasebet
- end
- if (balancenow>(oldbalanceone+(floatingbasebet*amountup))) then
- nextbet = floatingbasebet*2;
- floatingbasebet = floatingbasebet*2;
- amountup = 4.9;
- amountdown = 4.9;
- amountlumps = 1;
- fudge = true;
- yeah = 0;
- oldbalanceone = (balancenow);
- end
- if ((balancenow<(oldbalanceone-(floatingbasebet*amountdown))) and (fudge==false) and (math.fmod(yeah,2)>=1) and (yeah>2)) then
- amountup = 4.9;
- amountdown = 9.9;
- yeah = yeah+1;
- oldbalanceone = (balancenow);
- end
- if ((balancenow<(oldbalanceone-(floatingbasebet*amountdown))) and (fudge==true) and (math.fmod(yeah,2)>=1) and (yeah>2)) then
- amountup = 4.9;
- amountdown = 9.9;
- yeah = yeah+1;
- oldbalanceone = (balancenow);
- end
- if (((balancenow<(oldbalanceone-(floatingbasebet*amountdown))) and (fudge==false) and (math.fmod(yeah,2)==0)) or ((balancenow<(oldbalanceone-(floatingbasebet*amountdown))) and (fudge==false) and (yeah<2))) then
- nextbet = floatingbasebet*2;
- floatingbasebet = floatingbasebet*2;
- amountlumps = 0;
- amountup = 4.9;
- amountdown = 4.9;
- yeah = yeah+1;
- oldbalanceone = (balancenow);
- end
- if (((balancenow<(oldbalanceone-(floatingbasebet*amountdown))) and (fudge==true) and (math.fmod(yeah,2)==0)) or ((balancenow<(oldbalanceone-(floatingbasebet*amountdown))) and (fudge==true) and (yeah<2))) then
- nextbet = floatingbasebet*2;
- floatingbasebet = floatingbasebet*2;
- amountup = 4.9;
- amountdown = 4.9;
- yeah = yeah+1;
- oldbalanceone = (balancenow);
- end
- if ((balancenow>(oldbalancetwo+(lumptenbase*amountlumps))) and (balancenow<(oldbalancetwo+(((math.floor((balancenow-oldbalancetwo)/lumptenbase))*lumptenbase)+sevenbasebet)))) then
- oldbalanceone = oldbalancetwo+((math.floor((balancenow-oldbalancetwo)/lumptenbase))*lumptenbase);
- oldbalancetwo = oldbalancetwo+((math.floor((balancenow-oldbalancetwo)/lumptenbase))*lumptenbase);
- amountup = 6.9;
- amountlumps = 1;
- fudge = false;
- yeah = 0;
- amountdown = 2.9;
- nextbet = basebet;
- floatingbasebet = basebet;
- end
- if ((balancenow>(oldbalancetwo+(lumptenbase*amountlumps))) and (balancenow>(oldbalancetwo+(((math.floor((balancenow-oldbalancetwo)/lumptenbase))*lumptenbase)+sevenbasebet)))) then
- oldbalanceone = oldbalancetwo+((math.floor((balancenow-oldbalancetwo)/lumptenbase))*lumptenbase);
- oldbalancetwo = oldbalancetwo+((math.floor((balancenow-oldbalancetwo)/lumptenbase))*lumptenbase);
- amountup = 4.9;
- amountlumps = 1;
- fudge = false;
- yeah = 0;
- amountdown = 4.9;
- nextbet = basebet*2;
- floatingbasebet = basebet*2;
- end
- if (balancenow>target) then
- return
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement