Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --- Aqayen 50% daily profit ---
- -- For more profit and wager scripts, contact me via Telegram = @Aqayen --
- basebet = 0.00000001 --(For every 0.1 coin equals 0.00000001For example, if the balance is 10 coins, set the basebet to 0.00000100)
- paye1 = 1.5
- target = balance*1.5
- darbax = 0.5
- afbax = 0.00000001 --(For every 0.1 coin equals 0.00000001 For example, if the balance is 10 coins, set the basebet to 0.00000100)
- xorbax = 0.5
- darbor = 0
- afbor = 1.00
- xorbor = 1.00
- nextbet = basebet
- payout = paye1
- chance = 90/payout
- function dobet()
- bethigh = math.random(0,100)%2 == 0
- if (win) then
- if (darbor == 0) then
- nextbet = basebet
- payout = paye1
- chance = 90/payout
- else
- nextbet += afbor
- payout += xorbor
- chance = 90/payout
- end
- else
- if (darbax == 0) then
- nextbet = basebet
- payout = paye1
- chance = 90/payout
- else
- nextbet += afbax
- payout += xorbax
- chance = 90/payout
- end
- end
- if (nextbet >= target) then
- stop()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement