Advertisement
Ypleitez

Untitled

Oct 19th, 2023
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.02 KB | None | 0 0
  1. --Coinswap V2.11
  2. --Made by GeorgeRin
  3. --If you like the script and it makes you some $$ you can throw a happy meal my way on the following sites:
  4. -- * Wolf -> Craith
  5. -- * Primedice -> Demonique
  6. -- * Stake -> Antiskari
  7. -- * Duckdice -> Craith
  8.  
  9. --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
  10. --All you need to do is set the 2 coins and the divider for the high value coin
  11.  
  12. chance = 0.99 --Initial betting chance. It increases as the script goes by
  13. basebet = 0.00000001 --Basebet for low value coin. It is suggested to be on minbet for the site
  14. nextbet = basebet
  15. divider = 20000 --Divider for the high value coin
  16. ath = 0 -- Do not alter
  17. cc = 0 -- Do not alter
  18. C1 = "LTC" -- Set the low value coin
  19. C2 = "TRX" -- Set the high value coin
  20.  
  21. -- No need to edit anything below this line, if you do, please be careful
  22. function dobet()
  23. if(balance>ath)then ath=balance end
  24. if win then
  25. currency = C1
  26. resetstats()
  27. basebet = balance/200000
  28. cc = 0
  29. end
  30. if win then
  31. nextbet = basebet
  32. chance = 0.99
  33. else
  34. if cc == 0 then
  35. if currentstreak == -60 then
  36. chance = chance *2
  37. end
  38. if currentstreak == -80 then
  39. chance = chance *2
  40. end
  41. if currentstreak == -90 then
  42. chance = chance *2
  43. end
  44. if currentstreak < -100 then
  45. pause()
  46. currency = C2
  47. resetstats()
  48. resume()
  49. basebet = balance/divider
  50. nextbet = basebet
  51. ath = 0
  52. cc = 1
  53. end
  54. nextbet = math.max(basebet,(ath-balance)/(99/chance-1.1))
  55. else
  56. chance = chance + 0.05
  57. nextbet = math.max(basebet,(ath-balance)/(99/chance-1.15))
  58. end
  59. end
  60. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement