Advertisement
dicekode

dicekode-pumping

Nov 17th, 2020 (edited)
759
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.88 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.  
  9. chance     = 39.6
  10. martimulti = 10
  11. basebet    = balance * .0000001
  12. nextbet    = basebet
  13. bethigh    = true
  14. low        = 0
  15. high       = 0
  16. losecount  = 0
  17. stopnow    = false
  18. totallose  = 0
  19. wincount   = 0
  20. nextwinbet = basebet * martimulti
  21. go         = false
  22. set        = false
  23.  
  24.  
  25. function dobet()
  26.  
  27.     if (lastBet.roll < chance) then
  28.         low += 1
  29.     end
  30.    
  31.     if (lastBet.roll > (100 - chance)) then
  32.         high += 1
  33.     end  
  34.  
  35.     if (win) then
  36.         wincount += 1
  37.         totallose  = 0  
  38.         newbalance = balance
  39.         if (high > low) then
  40.             bethigh = true
  41.         else
  42.             bethigh = false
  43.         end
  44.         if (wincount == 1 and go) then
  45.             nextbet = nextwinbet
  46.             go      = false
  47.             set     = false
  48.         else
  49.             nextbet = basebet
  50.         end
  51.         if (wincount == 2 and previousbet != basebet) then  
  52.             if (stopnow) then stop() end
  53.             nextwinbet = basebet * martimulti    
  54.             set        = true
  55.             losecount  = 0
  56.         end
  57.         if (wincount == 2) then go = true end
  58.     else
  59.         if (wincount == 1 and previousbet != basebet ) then  
  60.             nextwinbet = previousbet * martimulti
  61.             martimulti = martimulti / 2
  62.             if (martimulti < 1.85) then martimulti = 1.85 end
  63.             losecount += 1  
  64.             print(losecount)  
  65.         end  
  66.         wincount  = 0
  67.         totallose = totallose + 1
  68.         if (totallose == 2) then go = true end
  69.         nextbet = basebet
  70.     end
  71. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement