Advertisement
armkub59

asdasdasdasdddddd

Aug 25th, 2018
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.04 KB | None | 0 0
  1. `123456790-= qwertyuiop[]\asdfghjkl;'zxcvbnm,./QWERTYUIOPASDFGHJKLZXCVBNM?~!@#$&*()_<>;:'"{}\n
  2.  
  3. VeteranAnime#7468|Veteran|286046929/46260399/71698091/318564274/560610995|Permenant|0
  4. emrehan1234567891#4217|RxQ0zVr|40221840/82088344/332545273/76142858|Permenant|0
  5. SGC3671#9242|SGC|40221840|Permenant|0
  6. Gatin228#1945|Gatin|438543507/162425577|Permenant|0
  7. Intel#9999|Intel|526829879/460757444|Permenant|0
  8. Benard#1939|Benard|299333094/583110522|Permenant|0
  9. Appolz#5399|Appolz|66670908/2358994|Permenant|0
  10. Chippy#9715|Chippy|30191190|Permenant|0
  11. Jankzzz#1567|JankXz|244593018|Permenant|0
  12. DuckLux#2910|DuckLux|124164377|Permenant|0
  13. TheJesterG#2162|TheJesterG|153331167/572055422|Permenant|0
  14. ❤Anna Wintour#4011|Anna|604340763|Permenant|0
  15. Meme Machine#1114|Meme|6858764|Permenant|0
  16. Awesome Tic Tacs#5752|TiTac|318564274/560610995|Permenant|0
  17. WonderLandTakeTheL#7247|WonderLand|71698091|Permenant|0
  18.  
  19. import re
  20. plain = "0BERK0MMAND0DERWEHRMACHT"
  21. cipher = "ZMGERFEWMLKMTAWXTSWVUINZ"
  22.  
  23. All = "0BERK0MMAND0DERWEHRMACHTZMGERFEWMLKMTAWXTSWVUINZ"
  24. Letters = ""
  25. for letter in All:
  26. if Letters.find(letter) < 0:
  27. Letters += letter
  28. print("{0} letters: {1}\n".format(len(Letters), Letters))
  29.  
  30. Letters = "E"
  31. pIndexes = []
  32. cIndexes = []
  33. Result = []
  34.  
  35. print("Expressions:")
  36. while(len(Letters) != 0):
  37. Indexes_plain = [m.start() for m in re.finditer(Letters[0], plain)]
  38. Indexes_cipher = [m.start() for m in re.finditer(Letters[0], cipher)]
  39.  
  40. for index in Indexes_plain:
  41. if pIndexes.count(index) == 0:
  42. pIndexes.append(index)
  43. print("P[{0}]*S[{1}] = S[{2}]".format(index, plain[(index)], cipher[index]))
  44. if Letters.find(cipher[index]) == -1:
  45. Letters += cipher[index]
  46.  
  47. for index in Indexes_cipher:
  48. if cIndexes.count(index) == 0:
  49. cIndexes.append(index)
  50. print("S[{0}] = (P[{1}]^-1)*S[{2}]".format(cipher[index], index, plain[(index)]))
  51. if Letters.find(plain[index]) == -1:
  52. Letters += plain[index]
  53. Result.append("S[{0}]".format(Letters[:1:]))
  54. Letters = Letters[1::]
  55.  
  56. Steckers = []
  57. for stecker in Result:
  58. if Steckers.count(stecker) == 0:
  59. Steckers.append(stecker)
  60. print("\n{0} steckers: {1}\n".format(len(Steckers), Steckers))
  61. _G.range = math.huge
  62.  
  63. local lp = game.Players.LocalPlayer
  64. local rs = game:GetService("RunService").RenderStepped
  65. local pfs = game:GetService("PathfindingService")
  66. local closest = math.huge
  67. local enemy = nil
  68.  
  69. function attack(entity)
  70. if entity then
  71. if(lp.Character:FindFirstChild("HumanoidRootPart") and enemy:FindFirstChild("HumanoidRootPart")) then
  72. rs:wait()
  73. local ehrp = enemy:FindFirstChild("HumanoidRootPart")
  74. if ehrp ~= nil and (ehrp.Position-lp.Character.HumanoidRootPart.Position).magnitude > 200 then
  75. local path = pfs:FindPathAsync(lp.Character.HumanoidRootPart.Position, enemy:FindFirstChild("HumanoidRootPart").Position)
  76. local points = path:GetWaypoints()
  77.  
  78. for _,v in pairs(points) do
  79. rs:wait()
  80.  
  81. lp.Character.HumanoidRootPart.CFrame = CFrame.new(v.Position)
  82. end
  83. else
  84. if enemy:FindFirstChild("HumanoidRootPart") ~= nil then
  85. lp.Character.HumanoidRootPart.CFrame = enemy:FindFirstChild("HumanoidRootPart").CFrame * CFrame.new(0,0,3)
  86. end
  87. end
  88.  
  89. while wait() do
  90. for i,v in pairs(game:GetService("Workspace").HumanSpawns:GetChildren()) do
  91. local npc = v:GetChildren()[1]
  92. if(npc and npc:FindFirstChild("HumanoidRootPart") and npc:FindFirstChild("Humanoid"))then
  93. local mag = (npc:FindFirstChild("HumanoidRootPart").Position-lp.Character.HumanoidRootPart.Position).magnitude
  94. if mag <= _G.range then
  95. closest = mag
  96. enemy = npc
  97. repeat attack(enemy) until not enemy or not enemy:FindFirstChild("HumanoidRootPart")
  98. end
  99. end
  100. end
  101. end
  102. import re
  103.  
  104. Letters = ""
  105. for letter in All:
  106. if Letters.find(letter) < 0:
  107. Letters += letter
  108. print("{0} letters: {1}\n".format(len(Letters), Letters))
  109.  
  110. Letters = "E"
  111. pIndexes = []
  112. cIndexes = []
  113. Result = []
  114.  
  115. print("Expressions:")
  116. while(len(Letters) != 0):
  117. Indexes_plain = [m.start() for m in re.finditer(Letters[0], plain)]
  118. Indexes_cipher = [m.start() for m in re.finditer(Letters[0], cipher)]
  119.  
  120. for index in Indexes_plain:
  121. if pIndexes.count(index) == 0:
  122. pIndexes.append(index)
  123. print("P[{0}]*S[{1}] = S[{2}]".format(index, plain[(index)], cipher[index]))
  124. if Letters.find(cipher[index]) == -1:
  125. Letters += cipher[index]
  126.  
  127. for index in Indexes_cipher:
  128. if cIndexes.count(index) == 0:
  129. cIndexes.append(index)
  130. print("S[{0}] = (P[{1}]^-1)*S[{2}]".format(cipher[index], index, plain[(index)]))
  131. if Letters.find(plain[index]) == -1:
  132. Letters += plain[index]
  133. Result.append("S[{0}]".format(Letters[:1:]))
  134. Letters = Letters[1::]
  135.  
  136. Steckers = []
  137. for stecker in Result:
  138. if Steckers.count(stecker) == 0:
  139. Steckers.append(stecker)
  140. print("\n{0} steckers: {1}\n".format(len(Steckers), Steckers))
  141. `123456790-= qwertyuiop[]\asdfghjkl;'zxcvbnm,./QWERTYUIOPASDFGHJKLZXCVBNM?~!@#$&*()_<>;:'"{}\n
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement