Advertisement
dicekode

wolfbet-btc

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