Keiich

Keiichi_Crazy66%

Jul 30th, 2018
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.11 KB | None | 0 0
  1. --@ Keiichi_Crazy66%
  2.  
  3. startingbet = 0.00005555 --@ should be at least x4 allowed minbet
  4. basebet = startingbet*0.25
  5. profittarget = 0.00000010 --@ the bigger the riskier
  6. targetb = 0.250 --Bot stops after this profit limit is reached.
  7.  
  8. -----------------------------------
  9. chance = 66
  10. won = 0
  11. lost = 0
  12. bethigh = true
  13. nextbet = basebet
  14. sessionprofit = 0
  15. profitamount = 0
  16. curbal = balance
  17.  
  18. function dobet()
  19.  
  20.   if (win) then
  21.     nextbet = previousbet + previousbet*0.25
  22.     profitamount=profitamount+currentprofit
  23.     won = won+1
  24.     lost = 0
  25.     if profitamount >= profittarget then
  26.       profitamount = 0
  27.       nextbet = basebet
  28.     end
  29.     curbal = balance
  30.     if curbal >= targetb then
  31.       print("\nTARGET REACHED. GRATS")
  32.       stop()
  33.     end
  34.   else
  35.     nextbet = previousbet * 2.2
  36.    profitamount=profitamount+currentprofit
  37.     lost = lost+1
  38.     won = 0
  39.     --if (bethigh) then
  40.       --bethigh = false
  41.     --else
  42.      -- bethigh = true
  43.     --end
  44.     if lost >= 3  then
  45.      nextbet = basebet
  46.     end
  47.   end
  48. end
  49. if sessionprofit <= profitamount then
  50.   sessionprofit = profitamount
  51. end
Advertisement
Add Comment
Please, Sign In to add comment