Advertisement
dicekode

wolf-btc-02

Sep 26th, 2021
551
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.74 KB | None | 0 0
  1. chance    = 95
  2. basebet   = 0.00000050
  3. nextbet   = basebet
  4. bethigh   = true
  5. losecount = 0
  6. counter   = 0
  7. target    = 0.01
  8. resetstats()
  9. resetseed()
  10. function dobet()
  11.  
  12.     if balance > target then stop() end
  13.     counter+=1
  14.     if counter >= 250 then
  15.         counter = 0
  16.         resetseed()
  17.     end
  18.     if win then
  19.         chance    = 95
  20.         nextbet   = basebet
  21.         losecount = 0
  22.     else
  23.         losecount += 1
  24.         nextbet = previousbet*1.12
  25.         bethigh = not bethigh
  26.         if (losecount > 1) then
  27.             chance  = (1/(((nextbet+(nextbet-basebet))/previousbet)))*20
  28.         else
  29.             chance  = (1/(((basebet+nextbet))/nextbet))*25
  30.         end
  31.         if chance < 9.0 then chance = 9.0 end
  32.     end
  33. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement