How would I make this not do (Silent) and have it show for lets say all this is an example fyi I wouldn't obviously do it to this command.
function ulx.respond(calling_ply, target_ply,message)
ulx.fancyLog( {target_ply}, "Admins to #P: " .. message, target_ply )
ulx.fancyLogAdmin( {calling_ply, target_ply},true, "#P via admin respond to #P: " .. message, calling_ply, target_ply )
end
local respond = ulx.command("Essentials", "ulx respond", ulx.respond, "#",true,true)
respond:addParam{ type=ULib.cmds.PlayerArg }
respond:addParam{ type=ULib.cmds.StringArg, hint="message", ULib.cmds.takeRestOfLine }
respond:defaultAccess( ULib.ACCESS_ADMIN)
respond:help( "Send anonymous admin message." )