Results 1 to 2 of 2
  1. #1
    Cr0NiX's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Posts
    72
    Reputation
    10
    Thanks
    8
    My Mood
    Bored

    Can somebody update this script?

    Theres a script I used to use in Gmod 12, But It doesnt seem to work on Gmod 13. Could somebody modify the script to work on Gmod 13?

    Code:
    print("TrexKikBut's Exploits Loaded. These exploits are designed for PERP 2.5-3.0 (or whatever, lost count)")
    
    function HealMyself()
    	RunConsoleCommand("perp2_encrypt3D_resetHealth")
    	print("Congratz, you healed your legs!")
    end
    concommand.Add("sh_healme", HealMyself)
    
    function HealMyLegs()
    	RunConsoleCommand("perp2_encrypt3D_resetCrippled")
    	print("Congratz, you have fixed your legs!")
    end
    concommand.Add("sh_fixlegs", HealMyLegs)
    
    function FixAllOfMe()
    	RunConsoleCommand("perp2_encrypt3D_resetHealth;perp2_encrypt3D_resetCrippled"
    	print("Congratz, you have fixed your legs and healed yourself!")
    end
    concommand.Add("sh_fixme", FixAllOfMe)
    
    function ReviveMyself()
    	RunConsoleCommand("sv_ai_oprevive_", LocalPlayer():UniqueID())
    	print("Congratz, you have revived yourself and got $50!")
    end
    concommand.Add("sh_reviveme", ReviveMyself)
    
    
    function ReviveEveryone(ply)
    	for k,v in pairs( player.GetAll() ) do 
    		if (v:Health() > 0) then
    			RunConsoleCommand("sv_ai_oprevive_", v:UniqueID())
    		end
    	end
    	print("Congratz, you have revived everyone!")
    end
    concommand.Add("sh_reviveeveryone", ReviveEveryone)
    
    function ReviveSteamFriends(ply)
    	for k,v in pairs( player.GetAll() ) do 
    		if (v:GetFriendStatus() == "friend") then
    			if (v:Health() > 0) then
    				RunConsoleCommand("sv_ai_oprevive_", v:UniqueID())
    			end
    		end
    	end
    	print("Congratz, you have revived your friends!")
    end
    concommand.Add("sh_revivefriends", ReviveSteamFriends)
    
    
    
    function FreeNameChange()
    	RunConsoleCommand("perp_encrypt3D_cn -1 -1")
    	print("Congratz, you got a free name change!")
    end
    concommand.Add("sh_namechange", FreeNameChange)
    
    function UniqueIDs()
    	for k,v in pairs( player.GetAll() ) do 
    		print("[ " .. v:Name() .. " ] - " .. v:UniqueID()))
    	end
    end
    concommand.Add("sh_uniqueids", UniqueIDs)

  2. #2
    Gray's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Location
    Sweden
    Posts
    13,552
    Reputation
    2516
    Thanks
    10,624
    Might be because the fact that they are patched.
    Google lukehack.

Similar Threads

  1. Can somebody do this real quick?
    By D-Loc in forum Help & Requests
    Replies: 0
    Last Post: 04-06-2010, 07:34 AM
  2. [Request]Can somebody remod this?
    By Biggboi16 in forum Combat Arms Mod Discussion
    Replies: 24
    Last Post: 03-09-2010, 05:46 PM
  3. Can somebody render this image?
    By A⁴ in forum Help & Requests
    Replies: 13
    Last Post: 06-30-2009, 07:16 AM
  4. Can somebody render this image?
    By A⁴ in forum Tutorials
    Replies: 1
    Last Post: 06-29-2009, 09:35 AM
  5. Can SOmebody render this for mee?
    By Zhellbound in forum Art & Graphic Design
    Replies: 10
    Last Post: 10-25-2008, 12:35 PM