Ad Code

Responsive Advertisement

3x Pump-Up Strategy

 chance       = 33
bethigh      = false
Increase     = 1.2
StopOnProfit = balance/250
basebet      = balance/10000
nextbet      = basebet
function dobet()  
     
if (win) then 
    nextbet = previousbet*1.03
    if profit > StopOnProfit then 
         resetprofit()
         resetseed() 
         nextbet = balance/10000
     end
else
    nextbet = previousbet*Increase 
end
 
end

Post a Comment

0 Comments