1. I started learn typing code for plugins. I've been typed my first plugin and when i want correct it and upload to server, i have "error" message : "[Oxide] 8:16 AM [Debug] Plugin is already being loaded: time". It happen one by one. Help me solve my problem.
    P.S. My code is

    Code:
    using System.Collections.Generic;
    using System.Reflection;
    using System;
    using System.ComponentModel;
    using System.Linq;
    using System.Data;
    using UnityEngine;
    using Oxide.Core;namespace Oxide.Plugins
    {
        [Info("Time", "Trave Project", 0.1)]
        [Description("Display time on console and chat")]    class Time : RustPlugin
        {
           
            void OnUserPermissionGranted(string id, string perm)
            {
                Puts($"User '{id}' granted permission: {perm}");
            }
            void Unload()
            {
                Puts("Don't forget delete data and config files. Sincerely, Trave Project!");
            }
        }
    }
    
    P.P.S I use 63 devblog version of Rust
     
  2. Wulf

    Wulf Community Admin

    That is output from the plugin compiler; it cannot be disabled. The message means what it says, that the plugin is already attempting to be loaded.