https://github.com/carm-outsource/portalcommands
当玩家进入传送门时执行对应指令。
https://github.com/carm-outsource/portalcommands
outsource spigot-plugin
Last synced: 3 months ago
JSON representation
当玩家进入传送门时执行对应指令。
- Host: GitHub
- URL: https://github.com/carm-outsource/portalcommands
- Owner: carm-outsource
- License: gpl-3.0
- Created: 2021-12-03T11:52:19.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2025-01-23T15:07:35.000Z (4 months ago)
- Last Synced: 2025-01-23T16:23:08.826Z (4 months ago)
- Topics: outsource, spigot-plugin
- Language: Java
- Homepage:
- Size: 27.3 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
```text
_____ _ _ _____ _
| __ \ | | | |/ ____| | |
| |__) | __ ___ | |_ __ _| | | ___ _ __ ___ _ __ ___ __ _ _ __ __| |___
| ___/ '__/ _ \| __/ _` | | | / _ \| '_ ` _ \| '_ ` _ \ / _` | '_ \ / _` / __|
| | | | | (_) | || (_| | | |___| (_) | | | | | | | | | | | (_| | | | | (_| \__ \
|_| |_| \___/ \__\__,_|_|\_____\___/|_| |_| |_|_| |_| |_|\__,_|_| |_|\__,_|___/
```# PortalCommands
当玩家进入地狱传送门时执行对应指令。
本插件由 [璎珞服务器](https://www.yingluo.world/) 请求本人开发,经过授权后开源。
## 依赖
- **[必须]** 插件本体基于 [Spigot-API](https://hub.spigotmc.org/stash/projects/SPIGOT) 、[BukkitAPI](http://bukkit.org/) 实现。
- **[推荐]** 变量部分基于 [PlaceholderAPI](https://www.spigotmc.org/resources/6245/) 实现。详细依赖列表可见 [Dependencies](https://github.com/CarmJos/PortalCommands/network/dependencies) 。
## 配置文件 ([config.yml](src/main/resources/config.yml))
```yaml
version: ${project.version}commands:
- "/say Hello I'm %player_name%"
- "如果不加斜杠,则会让玩家以文本形式发送出来。"```
## 支持与捐赠
若您觉得本插件做的不错,您可以捐赠支持我!
感谢您成为开源项目的支持者!
## 开源协议
本项目源码采用 [GNU General Public License v3.0](https://opensource.org/licenses/GPL-3.0) 开源协议。
> ### 关于 GPL 协议
> GNU General Public Licence (GPL) 有可能是开源界最常用的许可模式。GPL 保证了所有开发者的权利,同时为使用者提供了足够的复制,分发,修改的权利:
>
> #### 可自由复制
> 你可以将软件复制到你的电脑,你客户的电脑,或者任何地方。复制份数没有任何限制。
> #### 可自由分发
> 在你的网站提供下载,拷贝到U盘送人,或者将源代码打印出来从窗户扔出去(环保起见,请别这样做)。
> #### 可以用来盈利
> 你可以在分发软件的时候收费,但你必须在收费前向你的客户提供该软件的 GNU GPL 许可协议,以便让他们知道,他们可以从别的渠道免费得到这份软件,以及你收费的理由。
> #### 可自由修改
> 如果你想添加或删除某个功能,没问题,如果你想在别的项目中使用部分代码,也没问题,唯一的要求是,使用了这段代码的项目也必须使用 GPL 协议。
>
> 需要注意的是,分发的时候,需要明确提供源代码和二进制文件,另外,用于某些程序的某些协议有一些问题和限制,你可以看一下 @PierreJoye 写的 Practical Guide to GPL Compliance 一文。使用 GPL 协议,你必须在源代码代码中包含相应信息,以及协议本身。
>
> *以上文字来自 [五种开源协议GPL,LGPL,BSD,MIT,Apache](https://www.oschina.net/question/54100_9455) 。*