function ulx.example( calling_ply, target_ply )
target_ply:PrintMessage( HUD_PRINTTALK, "Worked!" )
end
local example = ulx.command( CATEGORY_NAME, "ulx example", ulx.example, "!example", true )
example:addParam{ type=ULib.cmds.PlayerArg, target="!^", ULib.cmds.ignoreCanTarget }
example:defaultAccess( ULib.ACCESS_ALL )
example:help( "Example Command" )
Attempting to call that from console (on a dedi) will do nothing.