Skip to main content

Documentation Index

Fetch the complete documentation index at: https://kotly.voxray.su/llms.txt

Use this file to discover all available pages before exploring further.

Создайте файлы вашего плагина

Основной файл

package kplugin.myplugin
import kotly.plugin.KotlyPlugin

class MyPlugin : KotlyPlugin() {
	override fun onEnable() {
		logger.info("Hello!")
	}

	override fun onDisable() {
		logger.info("Bye!")
	}
}

Файл конфигурации

{
    "name": "MyPlugin ",
    "description": "Best plugin",
    "author": "Your Name",
    "version": "1.0",
    "depends": [] // Зависимость от стационарных плагинов
}