dicekode

dicekode-agressive01

Nov 8th, 2020
419
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.59 KB | None | 0 0
  1. -- edited by DICEKODE
  2. -- youtube: https://www.youtube.com/channel/UC-BpueviNmn12aV_pBRY3gQ
  3. -- blog: https://dicekode.blogspot.com
  4. -- whatsapp: https://chat.whatsapp.com/Faes925uLw9HkhZeFHchFf
  5. -- linkdonasi: berikan pada yang "berhak"
  6. -- This is GAMBLING! -- DWYOR (Do With Your Own Risk)
  7.  
  8. -- qW = 1.5,         chance = 19.5
  9. -- qW = 1.25 - 1.35, chance = 10.5 - 13.5
  10.  
  11. base         = 0.01
  12. minbalance = balance - 100
  13. maxbalance = balance + 25
  14. qW         = 1.5  
  15. chance     = 19.5
  16. topbets    = 0
  17.  
  18. function dobet()
  19.  
  20.     margin += currentprofit
  21.    
  22.     if margin >= 0 then
  23.         margin   = 0
  24.         nextbet = base
  25.     else
  26.         if win then
  27.             payoutB = payout
  28.             chance  = chanceDB
  29.             nextbet = previousbet * qW
  30.         elseif (currentstreak%math.floor(payout) == 0) then
  31.             payoutB -= 0.5
  32.             chance  = 99.9/payoutB
  33.             nextbet = -margin/payout
  34.         end
  35.         if nextbet < base then nextbet = base end
  36.     end
  37.    
  38.     profitnow = string.format("%.2f",profit / (balance - profit) * 100)
  39.    
  40.     print("\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n")
  41.     print("\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n")
  42.     print("target: "..balance-maxbalance)
  43.     print("margin: "..margin)
  44.     print("profit: "..profitnow.."%")
  45.    
  46.     if bets > topbets and margin == 0 and topbets != 0 then stop() end
  47.     if balance - nextbet < minbalance then stop() end
  48.     if balance > maxbalance then stop() end
  49. end
  50.  
  51. nowbalance = balance
  52. nextbet    = base
  53. margin      = 0
  54. chanceDB   = chance
  55. payout     = 99.9/chance
  56. payoutB    = payout
  57.  
Add Comment
Please, Sign In to add comment