Ulysses
Ulysses Stuff => General Chat & Help and Support => Topic started 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
-
Here you go:
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)?
-
==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.
-
Ok, cool thanks.