Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --V8 DOGE Fishing v2
- --https://youtu.be/c7QOv6eUx94
- chance = math.random(8000,8500)/100
- bigchance = math.random(7500,8500)/100
- smallchance = 100 - bigchance
- div = 10000
- base = balance/div
- bethigh = false
- go = true
- wincount = 0
- losecount = 0
- ----------------------------
- target = balance+65
- stoploss = balance-80
- ----------------------------
- nextbet = base
- a = base
- multi = 1.3
- resetseed()
- counter = 0
- function dobet()
- rstseed()
- if balance-nextbet >= target then
- stop()
- ching()
- resetseed()
- print(balance)
- print("TARGET ACHIEVED!!!")
- print("You Won")
- print("Profit: " .. string.format("%9.8f", profit) )
- print("for this Session")
- end
- if balance-nextbet <= stoploss then
- stop()
- ching()
- resetseed()
- print(balance)
- print("ALARM!!!")
- print("You Lose")
- print("Profit: " .. string.format("%9.8f", profit) )
- print("for this Session")
- end
- if wincount == 6 then
- resetseed()
- bethigh=!bethigh
- wincount = 0
- end
- if win and go then
- wincount+=1
- nextbet = balance/div
- bigchance = math.random(7500,8500)/100
- chance = bigchance
- losecount = 0
- a = balance/div
- multi = 1
- go = false
- end
- --***
- if (!win) then
- nextbet = previousbet*multi
- losecount+=1
- end
- if chance >= 75 and (!win) then
- bethigh=!bethigh
- smallchance = 100 - bigchance
- multi = 1.3
- if smallchance < 20 then
- multi = 1.236
- end
- if smallchance >= 20 then
- multi = 1.3388
- end
- go = true
- chance = smallchance
- nextbet = a*multi
- end
- if losecount >= 1 then
- go = true
- chance = smallchance
- end
- if losecount == 5 then
- losecount = 0
- go = false
- a = previousbet
- nextbet = base
- chance = bigchance
- end
- print(" ")
- print("multi: "..multi)
- print("bigchance: "..bigchance)
- print(" ")
- end
- function rstseed()
- if counter == 500 then
- resetseed()
- counter = 0
- else
- counter+=1
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement