1. You could just add a console command to that plugin you mentioned, such as `chat.say "/help"`
     
  2. Code:
    private const string welcomeMessage = "Welcome to the server, INSERT HELP TEXT HERE";void OnPlayerInit(BasePlayer player)
    {
        SendReply(player, welcomeMessage);
    }