dicekode

dicekode-smallbet

Nov 5th, 2020 (edited)
502
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.97 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. basebet   = 0.01
  9. chance    = 31
  10. nextbet   = basebet
  11. countwin  = 0
  12. countlose = 0
  13. bethigh   = true
  14. stopwin   = false
  15.  
  16.  
  17. function dobet()
  18.    
  19.     chance = math.random(3095,4995)/100
  20.     if (countwin%1 == 0) then
  21.         bethigh  = !bethigh
  22.     end
  23.     if (countlose%2 == 0) then
  24.         bethigh   = !bethigh
  25.     end
  26.     if win then
  27.         if stopwin then stop() end
  28.         countwin += 1
  29.         countlose = 0
  30.         if(countwin%2 == 0 or currentprofit >= 0.01) then
  31.             nextbet = basebet
  32.         else
  33.             nextbet = previousbet * 0.5
  34.         end
  35.     else
  36.         countlose += 1
  37.         countwin = 0
  38.         nextbet  = previousbet * 1.5
  39.     end
  40. end
  41.    
Add Comment
Please, Sign In to add comment