dicekode

dicekode-agressive02

Nov 8th, 2020 (edited)
468
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.00 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.  
  9. basebet            = 0.0001
  10. nextbet            = basebet  
  11. maxprofit          = balance * 0.05
  12. minprofit          = balance * 0.10
  13. maxstreak          = -15
  14. bethigh            = false
  15. rebet              = true
  16. stopwin            = false
  17. chance             = 11.5
  18. marti              = 1.25
  19.  
  20. resetstats()
  21.  
  22. function dobet()
  23.    
  24.     minprofit -= previousbet
  25.  
  26.     if profit > maxprofit then stop() end
  27.        
  28.     if win and rebet then
  29.         if stopwin then stop() end
  30.         resetseed()
  31.         nextbet = previousbet * 0.5
  32.     else
  33.         nextbet = previousbet * marti
  34.     end
  35.    
  36.     if minprofit < nextbet then stopwin = true end
  37.     if currentstreak < maxstreak then stopwin = true end
  38.  
  39. end
Add Comment
Please, Sign In to add comment