Ulysses

Ulysses Stuff => General Chat & Help and Support => Topic started by: Sc00by22 on May 04, 2008, 01:45:34 AM

Title: Individual group god mode?
Post by: Sc00by22 on May 04, 2008, 01:45:34 AM
Is there a way to make a group god moded? My server default is not god mode, It would be nice if we could so I can give my Donators group god mode :D
Title: Individual group god mode?
Post by: jay209015 on May 04, 2008, 08:04:59 AM
Here you go:

Code: [Select]
if SERVER then
function GodGroup( ply )
if ply:IsUserGroup("GroupNameHere") then  -- Just place the name of whatever group you want goded here.
game.ConsoleCommand( "ulx god " ..ply:Nick().. " \n" )
Msg( "Granted " ..ply:Nick().. " Godmode \n" )
end
end
hook.Add( "PlayerSpawn", "GodGroup", GodGroup )

Not tested but should work. To use, just save it as "anything.lua" and place it in your server gmod_root/lua/autorun.

==EDIT==
Does ULib have a function like ULib.god(ply)?
Title: Re: Individual group god mode?
Post by: JamminR on May 04, 2008, 09:55:31 AM
==EDIT==
Does ULib have a function like ULib.god(ply)?

ULib has no function for that. Gmod has a player.GodEnable() function already which is what ULX's god function uses, plus the logging and tagging for other functions. There was no reason to modify or enhance it, so we didn't duplicate it.
Title: Re: Individual group god mode?
Post by: jay209015 on May 04, 2008, 10:22:31 AM
Ok, cool thanks.