Skip to content

Latest commit

 

History

History
161 lines (161 loc) · 8.03 KB

cn.nukkit.plugin.Plugin.md

File metadata and controls

161 lines (161 loc) · 8.03 KB
    • 成员函数一览

      All Methods Instance Methods Abstract Methods 
      修饰符和类 成员函数描述
      Config getConfig()
      返回这个Nukkit插件配置文件的Config对象。
      The config file this Nukkit plugin as a Config object.
      File getDataFolder()
      返回这个Nukkit插件的数据文件夹。
      The data folder of this Nukkit plugin.
      PluginDescription getDescription()
      返回描述这个Nukkit插件的PluginDescription对象。
      The description this Nukkit plugin as a PluginDescription object.
      PluginLogger getLogger()
      返回这个插件的日志记录器为PluginLogger对象。
      Returns the logger of this plugin as a PluginLogger object.
      String getName()
      返回这个插件的名字。
      Returns the name of this plugin.
      PluginLoader getPluginLoader()
      返回这个插件的加载器为PluginLoader对象。
      Returns the loader of this plugin as a PluginLoader object.
      InputStream getResource(String filename)
      读取这个插件特定的资源文件,并返回为InputStream对象。
      Reads a resource of this plugin, and returns as an InputStream object.
      Server getServer()
      返回运行这个插件的服务器的Server对象。
      Gets the server which is running this plugin, and returns as a Server object.
      boolean isDisabled()
      返回这个Nukkit插件是否已停用。
      Whether this Nukkit plugin is disabled.
      boolean isEnabled()
      返回这个Nukkit插件是否已启用。
      Whether this Nukkit plugin is enabled.
      void onDisable()
      在一个Nukkit插件被停用时调用的方法。
      Called when a Nukkit plugin is disabled.
      void onEnable()
      在一个Nukkit插件被启用时调用的方法。
      Called when a Nukkit plugin is enabled.
      void onLoad()
      在一个Nukkit插件被加载时调用的方法。这个方法会在onEnable()之前调用。
      Called when a Nukkit plugin is loaded, before onEnable() .
      void reloadConfig()
      重新读取这个Nukkit插件的默认配置文件。
      Reloads the plugin config.
      void saveConfig()
      保存这个Nukkit插件的配置文件。
      Saves the plugin config.
      void saveDefaultConfig()
      保存这个Nukkit插件的默认配置文件。
      Saves the DEFAULT plugin config.
      boolean saveResource(String filename)
      保存这个Nukkit插件的资源。
      Saves the resource of this plugin.
      boolean saveResource(String filename, boolean replace)
      保存或替换这个Nukkit插件的资源。
      Saves or replaces the resource of this plugin.
      boolean saveResource(String filename, String outputName, boolean replace) 
      • 继承自接口 cn.nukkit.command.CommandExecutor

        onCommand