mirror of
https://e.coding.net/circlecloud/SimpleEssential.git
synced 2024-11-04 23:18:47 +00:00
Updata project...
This commit is contained in:
parent
9ac712d208
commit
2cbcce887c
@ -1,32 +1,33 @@
|
||||
/**
|
||||
*
|
||||
*/
|
||||
package cn.citycraft.SimpleEssential;
|
||||
|
||||
import org.bukkit.plugin.java.JavaPlugin;
|
||||
|
||||
import cn.citycraft.SimpleEssential.config.Config;
|
||||
|
||||
/**
|
||||
* @author 蒋天蓓
|
||||
* 2015年8月11日下午3:29:32
|
||||
* TODO
|
||||
*/
|
||||
public class SimpleEssential extends JavaPlugin {
|
||||
|
||||
@Override
|
||||
public void onLoad() {
|
||||
Config.load(this, "1.0");
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onDisable() {
|
||||
this.getLogger().info("");
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onEnable() {
|
||||
this.getLogger().info("");
|
||||
}
|
||||
|
||||
}
|
||||
/**
|
||||
*
|
||||
*/
|
||||
package cn.citycraft.SimpleEssential;
|
||||
|
||||
import org.bukkit.plugin.java.JavaPlugin;
|
||||
|
||||
import cn.citycraft.SimpleEssential.config.Config;
|
||||
|
||||
/**
|
||||
* @author 蒋天蓓
|
||||
* 2015年8月11日下午3:29:32
|
||||
* TODO
|
||||
*/
|
||||
public class SimpleEssential extends JavaPlugin {
|
||||
|
||||
@Override
|
||||
public void onLoad() {
|
||||
Config.load(this, "1.0");
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onDisable() {
|
||||
this.getLogger().info("");
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onEnable() {
|
||||
|
||||
this.getLogger().info("");
|
||||
}
|
||||
|
||||
}
|
||||
|
74
src/config.yml
Normal file
74
src/config.yml
Normal file
@ -0,0 +1,74 @@
|
||||
#本文件为保护插件的主配置文件
|
||||
version: 1.0
|
||||
#服务器名称
|
||||
servername: ''
|
||||
#插件名称
|
||||
pluginname: '&6[&b保护系统&6]&r'
|
||||
#登陆提示
|
||||
Tip:
|
||||
#是否开启
|
||||
Enable: false
|
||||
Message:
|
||||
- '&a服务器已开启保护功能!'
|
||||
- '&c将会实时监控您的操作!'
|
||||
- '&e挖矿请带上火把或药水!'
|
||||
|
||||
#耕地保护配置
|
||||
BreakFarm:
|
||||
#是否开启
|
||||
Enable: true
|
||||
Tip: '&c服务器已开启耕地保护,请不要踩庄稼!'
|
||||
|
||||
#爆炸保护配置
|
||||
Explosion:
|
||||
#是否开启
|
||||
Enable: true
|
||||
|
||||
#高频红石检测
|
||||
HighRedstone:
|
||||
#是否开启
|
||||
Enable: true
|
||||
Maxevents: 35
|
||||
Find: '&c发现高频红石 &3世界:%world% &d坐标: X:%x% Y:%y% Z:%z% §a已清理!'
|
||||
Check: '&c高频红石数据监测 &5上述高频红石由 &6玩家:&a%player%& 6放置!'
|
||||
Admin: '&c发现您放置高频红石,由于您是管理员,在服务器重启之前此高频将不会被清理,请用完后及时清理!'
|
||||
|
||||
#防止无限夜视
|
||||
Nightvision:
|
||||
#是否开启
|
||||
Enable: true
|
||||
Tip: '&c为防止无限夜视作弊,已阻止挖矿,请插火把或用夜视药水!'
|
||||
|
||||
#安全地狱门
|
||||
SafeNetherDoor:
|
||||
#是否开启
|
||||
Enable: true
|
||||
Tip: '&5为防止您卡在地狱门,现在将您传送回主城!'
|
||||
Set: '&a新的传送点已设置!'
|
||||
World: world
|
||||
X: 0
|
||||
Y: 70
|
||||
Z: 0
|
||||
|
||||
#刷屏保护
|
||||
Spam:
|
||||
#是否开启
|
||||
Enable: true
|
||||
ChatWait: 3
|
||||
SameChatWait: 8
|
||||
CommandWait: 2
|
||||
SameCommandWait: 3
|
||||
MuteCheck: 3
|
||||
MuteReset: 3
|
||||
TooMuchChat: '请不要短时间内发送大量消息'
|
||||
TooMuchSameChat: '请不要短时间内发送相同的信息'
|
||||
TooMuchCommand: '请不要短时间内发送大量命令'
|
||||
TooMuchSameCommand: '请不要短时间内发送相同的命令'
|
||||
MuteOn: '&a已允许玩家 %player% &a聊天!'
|
||||
MuteOff: '§c已禁止玩家 %player% §c聊天!'
|
||||
OffLine: '&c玩家不存在或不在线!'
|
||||
NotMute: '&c玩家未被禁言或不存在!'
|
||||
AdminChatOn: '&a服务器已开启管理员聊天!'
|
||||
AdminChatOff: '&c服务器已关闭管理员聊天!'
|
||||
AdminChat: '&c服务器已开启管理员聊天!'
|
||||
MuteMsg: '&c您由于多次刷屏已被禁言,请联系管理解禁!'
|
44
src/plugin.yml
Normal file
44
src/plugin.yml
Normal file
@ -0,0 +1,44 @@
|
||||
name: SimpleProtect
|
||||
main: cn.citycraft.SimpleProtect.SimpleProtect
|
||||
website: http://ci.citycraft.cn:8800/jenkins/job/SimpleProtect/
|
||||
version: 0.0.2
|
||||
commands:
|
||||
simpleessential:
|
||||
description: 简单基础插件
|
||||
aliases: [se,sme]
|
||||
usage: §b使用/se help 查看帮助!
|
||||
permission: se.*
|
||||
permission-message: §c你没有 <permission> 的权限来执行此命令!
|
||||
tpa:
|
||||
description: 传送到目标玩家
|
||||
aliases: [setps,smetpa]
|
||||
usage: §b使用/tpa <player>传送到目标玩家!
|
||||
permission: se.tpa
|
||||
permission-message: §c你没有 <permission> 的权限来执行此命令!
|
||||
tphere:
|
||||
description: 邀请目标玩家
|
||||
aliases: [tph]
|
||||
usage: §b使用/tphere <player>邀请目标玩家!
|
||||
permission: se.tphere
|
||||
permission-message: §c你没有 <permission> 的权限来执行此命令!
|
||||
tpaccept:
|
||||
description: 接受传送或邀请
|
||||
aliases: [tpok]
|
||||
usage: §b使用/tpaccept 接受传送或邀请!
|
||||
permission: se.tpaccept
|
||||
permission-message: §c你没有 <permission> 的权限来执行此命令!
|
||||
tpdeny:
|
||||
description: 拒绝传送或邀请
|
||||
aliases: [tono]
|
||||
usage: §b使用/tpdeny 拒绝传送或邀请!
|
||||
permission: se.tpdeny
|
||||
permission-message: §c你没有 <permission> 的权限来执行此命令!
|
||||
permissions:
|
||||
se.*:
|
||||
description: 简单基础插件所有权限!
|
||||
default: op
|
||||
children:
|
||||
se.tpa: true
|
||||
se.tphere: true
|
||||
se.tpaccept: true
|
||||
se.tpdeny: true
|
Loading…
Reference in New Issue
Block a user