-
Notifications
You must be signed in to change notification settings - Fork 0
English Readme
ancap-kun edited this page Mar 22, 2023
·
10 revisions
Intelligently designed framework for Minecraft development.
The framework solves most of the routine tasks that arise when creating a plugin for Bukkit - with a special focus on high-load, feature-rich, multi-language plugins with lots of code and logic.
Add everything at once:
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
<dependency>
<groupId>com.github.ancap-dev</groupId>
<artifactId>AncapFramework</artifactId>
<version>смотри выше</version>
<scope>provided</scope>
</dependency>Modularly:
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
<dependency>
<groupId>com.github.ancap-dev.AncapFramework</groupId>
<artifactId>AncapPluginAPI</artifactId>
<version>смотри выше</version>
<scope>provided</scope>
</dependency>I recommend to use the modules, AncapFramework by the idea is the modular project.
All information about the framework can be found on wiki.
-
Создание плагина
- Создание main-класса
- Настройка ancapplugin.yml
- Использование AncapPluginAPI
- Использование LanguageAPI
- Использование CommunicatorAPI
- Использование ConfigurationAPI
- Использование CommandAPI
- Использование DatabaseAPI
- Использование EventAPI
- Использование MaterialAPI
- Использование WorldIteratorAPI
- Использование BukkitUtil
- Использование ResourceAPI
-
- Creating main class
- Setting up the ancapplugin.yml
- Using the AncapPluginAPI
- Using the LanguageAPI
- Using the CommunicatorAPI
- Using the ConfigurationAPI
- Using the CommandAPI
- Using the DatabaseAPI
- Using the EventAPI
- Using the MaterialAPI
- Using the WorldIteratorAPI
- Using the BukkitUtil
- Using the ResouceAPI