Advertisement
alfarishi

mining

Apr 26th, 2020
578
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. chance = 50                  
  2. base   = balance * 0.00000001
  3. base1  = balance * 0.000000012
  4. target = balance*1.99
  5.  
  6. -------------------Dont Edit Below Risk-------------------
  7.  
  8. base2        = base1
  9. nextbet      = base
  10. bethigh      = false
  11. rollcount    = 23
  12. balance2     = balance
  13. betcount     = 0
  14. counter      = 0
  15. totalstreak  = 0
  16. totalloss    = 0
  17. totalwin     = 0
  18. wincount     = 0
  19. multiplier   = 1.18
  20. multi        = 1.14
  21.  
  22. function dobet()
  23.  
  24.     if balance > balance2 then
  25.         f        = 0
  26.         base2    = base * 1.5
  27.         balance2 = balance
  28.     else
  29.         base2 = balance2 - balance
  30.         if base2 < base * 1.5 then
  31.             base2 = base * 1.5
  32.         end
  33.     end
  34.  
  35.     bethigh = true
  36.  
  37.     if rollcount == 23 then
  38.         rollcount = 0
  39.     else
  40.         rollcount = rollcount + 1
  41.     end
  42.  
  43.     if (balance) < (nextbet) then
  44.         stop()
  45.         print(balance)
  46.         print("You lose!")
  47.     end
  48.  
  49.     if (balance) >= target then
  50.         stop()
  51.         print("thank for special suport to IDHANSKY ")
  52.         print("Profit reached: "..profit)
  53.     end
  54.  
  55.     if (base2 < base1) then
  56.         base2 = base1
  57.     end
  58.  
  59.     chance = math.random(90.0,94.55)
  60.     print("suport by IDHANSKY")
  61.  
  62.     if (profit > 0) then
  63.         base2 = base1
  64.     end
  65.  
  66.     if win then
  67.         chance  = math.random(60, 65)
  68.         nextbet = base
  69.     else
  70.         nextbet = base
  71.     end
  72.  
  73.     if currentstreak == -1 then
  74.         nextbet = previousbet *3.42
  75.          chance = math.random(40,60)
  76.          bethigh = false
  77.      end
  78.  
  79.     if currentstreak == -2 then
  80.           bethigh = false
  81.           chance  = math.random(55,65)
  82.           nextbet = previousbet * 3.5
  83.         end
  84.  
  85.     if currentstreak == -3 then
  86.           bethigh = true
  87.           chance = math.random(55,69)
  88.           nextbet = previousbet * 3.5
  89.         end
  90.  
  91.     if currentstreak == -4 then
  92.         nextbet = (balance2 - balance) * multiplier
  93.         chance  = math.random(45,50)
  94.     end
  95. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement