Advertisement
dicekode

dicekode-scriptsore

Nov 17th, 2020
631
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.06 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: DTbhgnUi71WE9QFVRdQCN64xPeyMRoXAxP
  6. -- This is GAMBLING! -- DWYOR (Do With Your Own Risk)
  7. --
  8. -- SCRIPT *SORE* --
  9. --
  10.  
  11. chance   = 49
  12. base     = (balance / 1000) * 0.01
  13. ifwin    = 0.21
  14. iflose   = 1.58
  15. chance1  = 32
  16. chance2  = 34
  17. profitR  = 0.00001
  18. target   = balance * 1.1
  19. limit    = balance * 0.6
  20. wincount = 0
  21. profitc  = 0
  22. nextbet  = base
  23.  
  24. resetstats()
  25.  
  26. function dobet()
  27.     chance = math.random(chance1*100,chance2*100)/100
  28.     if win then
  29.         wincount+=1
  30.         if (profit > (profitc + profitR)) then
  31.             wincount = 0
  32.             profitc  = profit
  33.             nextbet  = base
  34.         else
  35.             nextbet = previousbet * ifwin
  36.         end      
  37.     else
  38.         wincount = 0
  39.         nextbet  = previousbet * iflose
  40.     end
  41.     if balance > target then stop () end
  42.     if balance - nextbet < limit then stop() end
  43. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement