Advertisement
dicekode

WB-0006

Nov 2nd, 2022
1,100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.41 KB | None | 0 0
  1. basebet = balance /1e7
  2. dropmax = 50
  3. target  = balance * 1.25
  4. payout  = 10
  5. ct      = 0
  6. chance  = 99 / payout
  7. nextbet = basebet
  8. bethigh = false
  9. balhigh = balance
  10. ballow  = balance  
  11. droppmx = 0
  12. stopwin = false
  13. resetstats()
  14. function dobet()
  15.     if win then
  16.         if stopwin then stop() end
  17.         balhigh = balance
  18.         ct      = 0
  19.         nextbet = basebet
  20.     else
  21.         ct += 1
  22.         ballow  = balance
  23.         chance  = chance-(chance*(1.5/100))  
  24.         nextbet = previousbet+(previousbet*(26.6/100))
  25.     end
  26.     if (ct%25==0) then
  27.         bethigh = not bethigh
  28.         chance  = chance+(chance*(15/100))
  29.     end
  30.     if (ct==35) then
  31.         chance = chance+(chance*(50/100))  
  32.     end
  33.     if (ct==45) then
  34.         chance = chance+(chance*(45/100))  
  35.     end
  36.     if (ct==55) then
  37.         chance = chance+(chance*(55/100))  
  38.     end
  39.     if balance > target then  
  40.         stop()  
  41.     end
  42.     if chance > 98 then  
  43.         chance = 99/payout  
  44.     end
  45.     drop  = balhigh - ballow
  46.     dropp = drop/balhigh*100
  47.     if dropp > dropmax then stopwin = true end
  48.     print("\n\n\n\n\n")
  49.     print("-=¦ Profit  \t[ "..string.format("%.2f",profit/(balance-profit)*100).."% ]")
  50.     print("-=¦ Dropdown  \t[ "..string.format("%.2f",droppmx).."% ]")
  51.     print("-=¦ Current  \t[ "..string.format("%.8f",drop).."\t"..string.format("%.2f",dropp).."% ]")
  52.  end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement