Advertisement
cryptomonkey

Lucky Big Wiener

Mar 1st, 2020
916
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.18 KB | None | 0 0
  1. --big weiner
  2. --https://bot.seuntjie.com/scripts.aspx?id=5362
  3.  
  4. chance       = 50                    --Base Chance
  5. base         = balance * 0.00000001  --Basebet
  6. base1        = balance * 0.00000002  --BasebetX2
  7. targetProfit = 0.00000000            --Profit amount
  8. target       = balance+ targetProfit --Total Balance+Profit
  9.  
  10. -------------------Dont Edit Below Risk-------------------
  11.  
  12. base2        = base1
  13. nextbet      = base
  14. bethigh      = false
  15. rollcount    = 23
  16. balance2     = balance
  17. betcount     = 0
  18. counter      = 0
  19. totalstreak  = 0
  20. totalloss    = 0
  21. totalwin     = 0
  22. wincount     = 0
  23. multiplier   = 1.18
  24. multi        = 1.14
  25.  
  26. function dobet()
  27.  
  28.     if balance > balance2 then
  29.         f        = 0
  30.         base2    = base * 1.5
  31.         balance2 = balance
  32.     else
  33.         base2 = balance2 - balance
  34.         if base2 < base * 1.5 then
  35.             base2 = base * 1.5
  36.         end
  37.     end
  38.  
  39.     bethigh = true
  40.  
  41.     if rollcount == 23 then
  42.         rollcount = 0
  43.     else
  44.         rollcount = rollcount + 1
  45.     end
  46.  
  47.     if (balance) < (nextbet) then
  48.         stop()
  49.         print(balance)
  50.         print("You lose!")
  51.     end
  52.  
  53.     if (balance) >= target then
  54.         stop()
  55.         print("Profit reached: "..profit)
  56.     end
  57.  
  58.     if (base2 < base1) then
  59.         base2 = base1
  60.     end
  61.  
  62.     chance = math.random(30, 55)
  63.     print("base2 = "..base2)
  64.  
  65.     if (profit > 0) then
  66.         base2 = base1
  67.     end
  68.  
  69.     if win then
  70.         chance  = math.random(10, 15)
  71.         nextbet = base
  72.     else
  73.         nextbet = previousbet * multiplier
  74.     end
  75.  
  76.     if currentstreak == -1 then
  77.         chance  = math.random(10, 15)
  78.         nextbet = base2 * 1.18
  79.     end
  80.  
  81.     if currentstreak == -2 then
  82.         chance  = math.random(10, 15)
  83.         nextbet = previousbet
  84.     end
  85.  
  86.     if currentstreak == -2 then
  87.         base2 = previousbet
  88.     end
  89.  
  90.     if currentstreak == -3 then
  91.         chance  = math.random(10, 15)
  92.         nextbet = previousbet
  93.     end
  94.  
  95.     if currentstreak == -3 then
  96.         base2 = previousbet
  97.     end
  98.  
  99.     if currentstreak == -4 then
  100.         nextbet = (balance2 - balance) * multiplier
  101.         chance  = math.random(15, 50)
  102.     end
  103. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement