Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --Coinswap V2.11
- --Made by GeorgeRin
- --If you like the script and it makes you some $$ you can throw a happy meal my way on the following sites:
- -- * Wolf -> Craith
- -- * Primedice -> Demonique
- -- * Stake -> Antiskari
- -- * Duckdice -> Craith
- --Basic idea of the script is to play on a low value coin & minbet, and swap to a high value coin when the red streak goes long. It autoswaps back to low value on win
- --All you need to do is set the 2 coins and the divider for the high value coin
- chance = 0.99 --Initial betting chance. It increases as the script goes by
- basebet = 0.00000001 --Basebet for low value coin. It is suggested to be on minbet for the site
- nextbet = basebet
- divider = 20000 --Divider for the high value coin
- ath = 0 -- Do not alter
- cc = 0 -- Do not alter
- C1 = "LTC" -- Set the low value coin
- C2 = "TRX" -- Set the high value coin
- -- No need to edit anything below this line, if you do, please be careful
- function dobet()
- if(balance>ath)then ath=balance end
- if win then
- currency = C1
- resetstats()
- basebet = balance/200000
- cc = 0
- end
- if win then
- nextbet = basebet
- chance = 0.99
- else
- if cc == 0 then
- if currentstreak == -60 then
- chance = chance *2
- end
- if currentstreak == -80 then
- chance = chance *2
- end
- if currentstreak == -90 then
- chance = chance *2
- end
- if currentstreak < -100 then
- pause()
- currency = C2
- resetstats()
- resume()
- basebet = balance/divider
- nextbet = basebet
- ath = 0
- cc = 1
- end
- nextbet = math.max(basebet,(ath-balance)/(99/chance-1.1))
- else
- chance = chance + 0.05
- nextbet = math.max(basebet,(ath-balance)/(99/chance-1.15))
- end
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement