-
-
All Methods Instance Methods Abstract Methods 修饰符和类 成员函数描述 Config
getConfig()
返回这个Nukkit插件配置文件的Config
对象。
The config file this Nukkit plugin as aConfig
object.File
getDataFolder()
返回这个Nukkit插件的数据文件夹。
The data folder of this Nukkit plugin.PluginDescription
getDescription()
返回描述这个Nukkit插件的PluginDescription
对象。
The description this Nukkit plugin as aPluginDescription
object.PluginLogger
getLogger()
返回这个插件的日志记录器为PluginLogger
对象。
Returns the logger of this plugin as aPluginLogger
object.String
getName()
返回这个插件的名字。
Returns the name of this plugin.PluginLoader
getPluginLoader()
返回这个插件的加载器为PluginLoader
对象。
Returns the loader of this plugin as aPluginLoader
object.InputStream
getResource(String filename)
读取这个插件特定的资源文件,并返回为InputStream
对象。
Reads a resource of this plugin, and returns as anInputStream
object.Server
getServer()
返回运行这个插件的服务器的Server
对象。
Gets the server which is running this plugin, and returns as aServer
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, beforeonEnable()
.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)
-