https://github.com/killerprojecte/ultralucky
The Next-Generation Open Source Lucky System Solution
https://github.com/killerprojecte/ultralucky
Last synced: 11 months ago
JSON representation
The Next-Generation Open Source Lucky System Solution
- Host: GitHub
- URL: https://github.com/killerprojecte/ultralucky
- Owner: killerprojecte
- Created: 2023-02-08T14:01:10.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-09-06T12:44:46.000Z (almost 3 years ago)
- Last Synced: 2025-02-02T14:41:31.276Z (over 1 year ago)
- Language: Java
- Size: 202 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# **UltraLucky**
- 下一代幸运系统开源解决方案
- 同类付费插件**Archeology**的竞争者
- 目前不支持Folia
## 从UltraLucky开始
**UltraLucky** 支持自主开发模块
需要作为外部插件实现**Module**接口
将自定义**Module**向**ModuleManager**注册即可
为了配置功能的正确运行 需要将您的配置文件复制到**UltraLucky**目录下
## 额外协议
- 本内容根据GPLv3第7条发布
```
1. 禁止任何人以任何方式对UltraLucky其可执行内容或源码进行付费分发
2. 任何人对UltraLucky源码进行分发时必须附上此仓库链接
3. UltraLucky开发者有权力对违规使用(诈骗行为, 违法行为等)UltraLucky的用户撤销使用授权
```
## 添加至依赖
- Maven
```xml
4.0.0
example
fastmcmirror-repo
https://repo.fastmcmirror.org/content/repositories/releases/
dev.rgbmc
UltraLucky
1.1.0
provided
```
- Gradle Groovy
```groovy
repositories {
maven {
name = 'fastmcmirror-repo'
url = "https://repo.fastmcmirror.org/content/repositories/releases/"
}
}
dependencies {
compileOnly 'dev.rgbmc:UltraLucky:1.1.0'
}
```
- Gradle Kotlin
```kotlin
repositories {
maven {
name = "fastmcmirror-repo"
url = uri("https://repo.fastmcmirror.org/content/repositories/releases/")
}
}
dependencies {
compileOnly("dev.rgbmc:UltraLucky:1.0.0")
}
```