Advertisement
Guest User

Untitled

a guest
Nov 8th, 2019
245
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.41 KB | None | 0 0
  1. --idea from RealCoinMarcel, written bei kryptowilli
  2. --tipps BTC: 3CNW2BX6LABD3aBUJvtm2FYaz1yQ91DPVX
  3.  
  4.  
  5. chance = 87
  6. div = 100000 --balance/div ist dein Einsatz
  7. basebet = balance/div
  8. checkpointmulti = 5 --dein basebet * 5 ist der checkpoint wo es neu startet
  9. checkpoint = (balance/div)*checkpointmulti
  10.  
  11. bigtarget = 1000.00000000 --ab wann das script stoppen soll
  12.  
  13.  
  14.  
  15.  
  16.  
  17. -- ab hier brauchste nix mehr ändern
  18.  
  19. nextbet = basebet
  20. WAG = 0
  21.  
  22. function GetRandom()
  23. r = math.random(2)
  24.  
  25. if r == 1 then
  26. bethigh = true
  27. else
  28. bethigh = false
  29. end
  30. end
  31.  
  32.  
  33.  
  34. function dobet()
  35. print("")
  36. print("")
  37. print("")
  38. print("")
  39. print("")
  40. print("")
  41. print("wagered")
  42. print(WAG)
  43. print("")
  44. print("")
  45. print("")
  46. print("")
  47. print("")
  48. print("")
  49. GetRandom()
  50.  
  51. if balance > bigtarget then
  52. ching()
  53. stop()
  54. print("Big Target")
  55. end
  56.  
  57. if profit > (balance/div)*checkpointmulti then
  58. resetstats()
  59. nextbet = balance/div
  60. print("checkpoint")
  61. end
  62.  
  63. if win and profit < (balance/div)*checkpointmulti then
  64. WAG += previousbet
  65. wagered += previousbet
  66. nextbet = previousbet - (previousbet/100 * 3.2)
  67. end
  68.  
  69. if not win then
  70. WAG += previousbet
  71. wagered += previousbet
  72. nextbet = previousbet * 1.33
  73. end
  74.  
  75. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement