1. This Plugin dont load can someone explain me why ?
    Code:
    using Oxide.Core.Libraries.Covalence;
    using System.Collections.Generic;
    using Oxide.Core;namespace Oxide.Plugins
    {
        [Info("ChatClear", "Rick De Kikker", "1.0.0")]
        [Description("Cleares the chat from one simple command")]    class ChatClear : CovalencePlugin
        {
            [Command("clear")]
            void ClearCommand(IPlayer player, string command, string[] args)
            {
                player.Reply("\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nv\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n<color=red>Chat Cleared</color>");
            }
        }
    }
     

    Attached Files:

    Last edited by a moderator: Aug 8, 2017
  2. The name of the file and class must be the same.
     
  3. This is already fixed but thanks tho :)