Go to !menu, Settings, Admin Echo/Event Log and change it to "Do not echo admin commands" (Although this makes it for every command). Although if you want to hide the !god part you have to edit the ULX code found in your ~/garrysmod/garrysmod/addons/ulx/lua/ulx/modules/sh/ and open fun.lua. Scroll down to line 254 and change "function ulx.god( calling_ply, target_plys, should_revoke )" to "function ulx.god( calling_ply, target_plys, should_revoke, should_silent )" and then go to line 288 and replace the code between 282 and 286 with this. (It should mirror the should_revoke, I also added in notes so you know whats up)
if not should_revoke and should_silent then -- should_revoke is normal, after adding should_silent above, this allows it here
ulx.fancyLogAdmin( calling_ply, true, "#A granted god mode upon #T", affected_plys ) -- The true hides the command, pretty much should_silent
else
ulx.fancyLogAdmin( calling_ply, true, "#A revoked god mode from #T", affected_plys )
end
I am not responsible for any damage to your ULX code after you edit this. Saving a buckup IS advised.
