UID1784189性别保密经验 EP铁粒 粒回帖0主题精华在线时间 小时注册时间2024-7-13最后登录1970-1-1
| 本帖最后由 ImFrish2021 于 2025-8-9 01:05 编辑
LemonMint LemonMint是在Mint的基础上努力让更多的Bukkit插件能够运行,并且在原基础上修复被破坏的特性和改进性能、并添加独特的特性。
1 | 相对于Mint独有的特性
- 对于Bukkit Scoreboard API与原版Scoreboard command的恢复
- 对于Bukkit Enity or Player Teleport API的基本恢复
- 对于Bukkit Scheduler API的简单恢复(并不代表全部恢复)
- Purpur的6格末影箱
- JavaScript 脚本插件系统(已实装,已有基础的API系统(指令、事件、权限、配置),支持模块化)
2 | 开发API Java
- <repositories>
- <repository>
- <id>menthamc</id>
- <url>https://repo.menthamc.com/repository/maven-public/</url>
- </repository>
- </repositories>
- <dependencies>
- <dependency>
- <groupId>me.coderfrish.lemonMint</groupId>
- <artifactId>lemonMint-api</artifactId>
- <version>1.21.8-R0.1-SNAPSHOT</version>
- <scope>provided</scope>
- </dependency>
- </dependencies>
复制代码 JavaScript 示例脚本
- const installer = (plugin) => {
- return {
- onLoaded() {},
- onEnabled() {},
- onDisabled() {}
- }
- }
- export default {
- name: "TestPlugin",
- version: "1.0.0",
- installer
- }
复制代码
3 | 相关地址
|
|