Advertisement
alfarishi

faucedv5

Jun 23rd, 2020 (edited)
254
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.23 KB | None | 0 0
  1. --fauced v5
  2. --author by wedos g@mble
  3. --suport for balance undher 10k doge coin
  4. --use own your risk
  5. -- Gambling is gambling no matter what you do or how good your strategy is.
  6. -- The house always wins if you keep playing. WINNERS KNOW WHEN TO STOP.
  7. --happy mining
  8.  
  9. chance     = 95
  10. base       = 0.35
  11. base2      = 0.01
  12. nextbet    = base
  13. prof       = 0
  14. stage      = 19.4
  15. stopnow    = false
  16. prof2      = 0
  17. phase      = 1
  18. lowest     = 99
  19. bethigh    = false
  20. lossstreak = 1
  21. biggest    = 0
  22. counter    = 0
  23. lossess    = 0
  24. first      = true
  25. phase      = 1
  26. buffer     = 0
  27. bigprof    = 0
  28. counter2   = 0
  29. losers     = 0
  30. function dobet()
  31.     counter2 += 1
  32.     prof += currentprofit
  33.     if phase == 1 then
  34.         if win then
  35.             bethigh = !bethigh
  36.             first   = true
  37.             lossess = 0
  38.             base    = base
  39.             nextbet = base/2
  40.             chance  = 9.91
  41.             stage   = 19.5
  42.             prof    = 0
  43.             counter = 0
  44.         else
  45.             lossess += 1
  46.             counter += 1
  47.             if (counter+1) >= stage then
  48.                 stage -= 0.015
  49.                 counter = 0
  50.             end
  51.             chance  = (99/stage)
  52.             nextbet = (((prof+(base*(currentstreak)))/((99/chance)-1))*-1)
  53.             if currentstreak <= -87  then
  54.                 if first == true then
  55.                     first   = false
  56.                     buffer  = prof/33
  57.                     stage   = 19.4
  58.                     chance  = (99/stage)
  59.                     nextbet = (((prof+(base*(currentstreak-1)))/((99/chance)-1))*-1)/2.5
  60.                     phase   = 2
  61.                     counter = 1
  62.                     prof2   = buffer
  63.                 end
  64.             end
  65.         end
  66.     else
  67.         prof2 += currentprofit
  68.         if win then
  69.             bethigh = !bethigh
  70.             stage   = 19.5
  71.             chance  = (99/stage)
  72.             nextbet = buffer*-1
  73.             prof2   = buffer
  74.         else
  75.             counter += 1
  76.             if counter >= stage then
  77.                 stage -= 0.015
  78.                 counter = 0
  79.             end
  80.             chance  = (99/stage)
  81.             nextbet = ((prof2/((99/chance)-1))*-1)*1.25
  82.         end
  83.         if prof >= base*60 then
  84.             phase = 1
  85.             first = true
  86.             lossess = 0
  87.             nextbet = base
  88.             chance = 9.91                                        
  89.             stage = 19.5
  90.             prof = 0
  91.             counter = 0
  92.         end
  93.     end
  94.    
  95.     if nextbet <= base2 then
  96.         nextbet = base2
  97.     end
  98.     if stopnow == true and win then
  99.         stop()
  100.     end
  101.     if balance >= biggest then
  102.         biggest = balance
  103.     end
  104.    
  105.     if prof <= bigprof then
  106.         bigprof = prof
  107.     end
  108.    
  109.     if currentstreak <= losers then
  110.         losers = currentstreak
  111.     end
  112.     if currentstreak < -65  then
  113.                 prof = 0
  114.     end
  115.     if counter2 > 100   then
  116.                 counter2 = 1
  117.         print("")
  118.         print("")
  119.         print("Biggest Loss: "..bigprof)
  120.         print("Big  Balance: "..biggest)
  121.         print("Balance: "..balance)
  122.         print("Most Losses: "..losers)
  123.         print("Losses: "..prof)
  124.         print("Modephase : "..phase)
  125.     end
  126. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement