using Oxide.Core; using Oxide.Core.Libraries.Covalence; namespace Oxide.Plugins { [Info("template", "ArtiIOMI", "0.0.1")] [Description("template")] internal class template : CovalencePlugin { #region Commands [Command("txt")] private void cmdTxt(IPlayer iplayer, string command, string[] args){ iplayer.Command("chat.add 0 1 Text"); } #endregion } }