dicekode

dicekode-steady01

Nov 8th, 2020
385
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.30 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. resetstats()
  9. basebet = balance * 0.00001
  10. target  = balance * 1.5
  11. chance  = 33.3
  12. nextbet = basebet
  13. bethigh = true
  14. limit   = -balance * 0.2
  15. limit1  = limit
  16. step    = balance * 0.005
  17. step1   = step
  18.  
  19. function dobet()
  20.     print(" ")
  21.     print("Profit :"..string.format("%.8f",profit))
  22.     print(" ")
  23.     print("Target :"..string.format("%.8f",target))
  24.     print("Limit :"..string.format("%.8f",limit))
  25.     print("Bet Amount :"..string.format("%.8f",nextbet))
  26.     print("Current Balance : "..string.format("%.8f",balance))        
  27.     if profit > step then
  28.         resetseed()
  29.         step  = step1 + profit
  30.         limit = limit1 + profit
  31.     end
  32.     chance = math.random(3210,3450)/100
  33.     if (win) then
  34.         nextbet = previousbet * 0.2
  35.         if nextbet < basebet then
  36.             nextbet = basebet
  37.         end
  38.     else    
  39.         nextbet = previousbet * 1.4
  40.     end
  41.     if (profit - nextbet <= limit) then
  42.         stop()
  43.     end
  44.     if (balance > target) then
  45.         stop()
  46.     end  
  47. end
Add Comment
Please, Sign In to add comment