mirror of
https://e.coding.net/circlecloud/SimpleProtect.git
synced 2025-11-24 21:26:19 +00:00
@@ -10,20 +10,23 @@ import cn.citycraft.SimpleProtect.SimpleProtect;
|
||||
public class Tip implements Listener {
|
||||
SimpleProtect plugin;
|
||||
|
||||
public Tip(SimpleProtect instance) {
|
||||
public Tip(final SimpleProtect instance) {
|
||||
plugin = instance;
|
||||
}
|
||||
|
||||
@EventHandler
|
||||
public void onJoin(final PlayerJoinEvent e) {
|
||||
plugin.getServer().getScheduler().runTaskLaterAsynchronously(plugin, () -> {
|
||||
Player p = e.getPlayer();
|
||||
String[] msg = plugin.config.getStringArray("Tip.Message");
|
||||
for (String s : msg) {
|
||||
s = s.replaceAll("&", "§");
|
||||
p.sendMessage(plugin.servername + plugin.pluginname + s);
|
||||
plugin.getServer().getScheduler().runTaskLaterAsynchronously(plugin, new Runnable() {
|
||||
@Override
|
||||
public void run() {
|
||||
final Player p = e.getPlayer();
|
||||
final String[] msg = plugin.config.getStringArray("Tip.Message");
|
||||
for (String s : msg) {
|
||||
s = s.replaceAll("&", "§");
|
||||
p.sendMessage(plugin.servername + plugin.pluginname + s);
|
||||
}
|
||||
}
|
||||
} , 15);
|
||||
}, 15);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -29,8 +29,8 @@ HighRedstone:
|
||||
#是否开启
|
||||
Enable: true
|
||||
Maxevents: 35
|
||||
Find: '&c发现高频红石 &3世界:%world% &d坐标: X:%x% Y:%y% Z:%z% &a已清理!'
|
||||
Check: '&c高频红石数据监测 &5上述高频红石由 &6玩家:&a%player% &6放置!'
|
||||
Find: '&c发现高频红石 &3世界: %world% &d坐标: X:%x% Y:%y% Z:%z% &a已清理!'
|
||||
Check: '&c高频红石数据监测 &5上述高频红石由 &6玩家: &a%player% &6放置!'
|
||||
Admin: '&c发现您放置高频红石,由于您是管理员,在服务器重启之前此高频将不会被清理,请用完后及时清理!'
|
||||
|
||||
#防止无限夜视
|
||||
|
||||
Reference in New Issue
Block a user