Advertisement
Dreddine

V8 DOGE Fishing v. 2.0 [always check settings]

Jan 14th, 2021
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. --V8 DOGE Fishing v2
  2. --https://youtu.be/c7QOv6eUx94
  3.  
  4. chance = math.random(8000,8500)/100
  5. bigchance = math.random(7500,8500)/100
  6. smallchance = 100 - bigchance
  7. div       = ((balance*100)*0.95)
  8. base      = balance/div
  9. bethigh = false
  10.  
  11. go = true
  12. wincount = 0
  13. losecount = 0
  14. ----------------------------
  15. target      = balance+65
  16. stoploss    = balance-80
  17. ----------------------------
  18. nextbet = base
  19. a = base
  20. multi = 1.3
  21.  
  22. function dobet()
  23.  
  24. if balance-nextbet >= target then
  25.     stop()
  26.     ching()
  27.     resetseed()
  28.   print(balance)
  29.   print("TARGET ACHIEVED!!!")
  30.   print("You Won")
  31.   print("Profit: " .. string.format("%9.8f", profit) )
  32.   print("for this Session")
  33. end
  34.  
  35. if balance-nextbet <= stoploss then
  36.     stop()
  37.     ching()
  38.     resetseed()
  39.   print(balance)
  40.   print("ALARM!!!")
  41.   print("You Lose")
  42.   print("Profit: " .. string.format("%9.8f", profit) )
  43.   print("for this Session")
  44. end
  45.  
  46. if wincount == 6 then
  47.     resetseed()  
  48.     bethigh=!bethigh
  49.     wincount = 0
  50. end
  51.  
  52. if win and go then
  53.     wincount+=1
  54.     nextbet = balance/div
  55.     bigchance = math.random(7500,8500)/100
  56.     chance = bigchance
  57.     losecount = 0
  58.     a = balance/div
  59.     multi = 1
  60.     go = false
  61. end
  62.  
  63. --***
  64.  
  65. if (!win) then 
  66.     nextbet = previousbet*multi
  67.     losecount+=1   
  68. end
  69.  
  70. if chance >= 75 and (!win) then
  71.     bethigh=!bethigh
  72.         smallchance = 100 - bigchance
  73.     multi = 1.3
  74.     if smallchance < 20 then
  75.         multi = 1.236
  76.     end
  77.     if smallchance >= 20 then
  78.         multi = 1.3388
  79.     end
  80.     go = true
  81.  
  82.     chance = smallchance
  83.     nextbet = a*multi
  84.    
  85. end
  86. if losecount >= 1 then
  87.     go = true
  88.     chance = smallchance
  89. end
  90. if losecount == 5 then
  91.     losecount = 0
  92.     go        = false
  93.     a         = previousbet
  94.     nextbet   = base
  95.     chance    = bigchance
  96. end
  97. print(" ")
  98. print("multi: "..multi)
  99. print("bigchance: "..bigchance)
  100. print(" ")
  101. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement