Advertisement
cryptomonkey

Leader Tong v. 2.0 profit 20%

Dec 26th, 2019
596
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.81 KB | None | 0 0
  1. --Leader Tong v. 2 20%
  2. minbalance  = 1000 ---<<<--- put your current balance here!
  3. minbet      = minbalance/100000
  4. base        = (balance/100000 + minbet)/2
  5. Hchance     = math.random(75,80)+math.random(75,80)/100
  6. Lchance     = 100 - Hchance
  7. roll        = 0
  8. losecount   = 0
  9. nextbet     = balance/100000 --0.01
  10. chance      = 70
  11. target      = balance+base*2
  12. limit       = balance*1.20
  13.  
  14. --------------------------
  15. bigtarget   = balance*1.20
  16. stoploss    = balance*0.90
  17. --------------------------
  18.  
  19. function dobet()
  20.  
  21. if balance-nextbet >= bigtarget then
  22.     stop();
  23.   print(balance)
  24.   print("TARGET ACHIEVED!!!")
  25.   print("You Won")
  26.   print("Profit: " .. string.format("%9.8f", profit) )
  27.   print("for this Session")
  28.     end
  29.    
  30. if balance-nextbet <= stoploss then
  31.     stop()
  32.     ching()
  33.     resetseed()
  34.   print(balance)
  35.   print("ALARM!!!")
  36.   print("You Lose")
  37.   print("Profit: " .. string.format("%9.8f", profit) )
  38.   print("for this Session")
  39. end
  40.  
  41. if balance >= limit then
  42.     print("winner 20% good!")
  43.     stop()
  44.     ching()
  45.     end
  46. if profit >= base*3 then
  47.     resetstats()
  48.     resetseed()
  49.     nextbet = base
  50.     chance = Hchance
  51.     end
  52. if profit > 0 then
  53.     pro = balance/100000    --0.01
  54.     else
  55.     pro = -profit + minbet
  56.     end
  57.     bethigh = bethigh
  58.     roll+=1
  59. if win and chance<30 then
  60.     nextbet = pro*1.5
  61.     chance = Hchance
  62.     else
  63.     nextbet = previousbet*0.90
  64.     chance = Hchance
  65.     end
  66. if !win then
  67.     if lastBet.chance > 30 then
  68.     multi = 0.33
  69.     else
  70.     multi = 1.99
  71.     end
  72.     nextbet = pro*multi
  73.     chance = 100 - lastBet.chance
  74.     bethigh = !bethigh
  75.     end
  76. if balance > target then
  77.     nextbet = base
  78.     resetstats()
  79.     resetseed()
  80.     chance = 100 - lastBet.chance
  81.     target = balance+base*2
  82.     Hchance = math.random(75,79)+math.random(75,79)/100
  83.     Lchance = math.random(22,26)+math.random(22,26)/100
  84.     end
  85. if currentstreak >= 3 then
  86.     bethigh = !bethigh
  87.     chance = (95+lastBet.chance)/2
  88.     nextbet = pro
  89.     end
  90. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement