Advertisement
capunk

mading joz

Sep 23rd, 2021
724
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.87 KB | None | 0 0
  1. -- MADING JOS --
  2.  
  3. chance       = 50  -- > if bust change to 60 and again                    
  4. base         = 0.00000005 --> if bust go to 0.2  
  5. base1        = 0.00000010        
  6. target       = 1 -- Set target profit: 1.1 = 10%, 1.2 = 20%, 1.3 = 30%, 2.0 = 100%
  7.  
  8. base2        = base1
  9. nextbet      = base
  10. bethigh      = false
  11. balance2     = balance
  12. multi        = 1.18
  13.  
  14. function dobet()
  15.  
  16.     if balance > balance2 then
  17.         base2    = base * 1.5
  18.         balance2 = balance
  19.     else
  20.         base2 = balance2 - balance
  21.         if base2 < base * 1.5 then
  22.             base2 = base * 1.5
  23.         end
  24.     end
  25.  
  26.     bethigh = true
  27.  
  28.     if balance < nextbet then
  29.         stop()
  30.         print(balance)
  31.         print("You lose!")
  32.     end
  33.  
  34.     if balance >= target then
  35.         stop()
  36.         print("\n\n")
  37.         print (">>> Profit reached: " .. profit)
  38.         print("\n\n")
  39.     end
  40.  
  41.     if base2 < base1 then
  42.         base2 = base1
  43.     end
  44.  
  45.     chance = math.random(30, 55)
  46.  
  47.     if profit > 0 then
  48.         base2 = base1
  49.     end
  50.  
  51.     if win then
  52.         chance  = math.random(10, 15)
  53.         nextbet = base
  54.     else
  55.         nextbet = previousbet * multi
  56.     end
  57.  
  58.     if currentstreak == -1 then
  59.         chance  = math.random(10, 15)
  60.         nextbet = base2 * 1.18
  61.     end
  62.  
  63.     if currentstreak == -2 then
  64.         chance  = math.random(10, 15)
  65.         nextbet = previousbet
  66.     end
  67.  
  68.     if currentstreak == -2 then
  69.         base2 = previousbet
  70.     end
  71.  
  72.     if currentstreak == -3 then
  73.         chance  = math.random(10, 15)
  74.         nextbet = previousbet
  75.     end
  76.  
  77.     if currentstreak == -3 then
  78.         base2 = previousbet
  79.     end
  80.  
  81.     if currentstreak == -4 then
  82.         nextbet = (balance2 - balance) * multi
  83.         chance  = math.random(65, 75)
  84.     end
  85.  
  86.     print("currentstreak = "..currentstreak)
  87.     print("chance = "..chance)
  88. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement