mirror of
https://github.com/AtlasMediaGroup/TotalFreedomMod.git
synced 2024-11-19 13:55:00 +00:00
Update autoEject
This commit is contained in:
parent
b323b6318b
commit
b2746f2299
@ -624,36 +624,28 @@ public class TFM_Util
|
|||||||
{
|
{
|
||||||
case STRIKE_ONE:
|
case STRIKE_ONE:
|
||||||
{
|
{
|
||||||
//Bukkit.getServer().dispatchCommand(Bukkit.getConsoleSender(), String.format("tempban %s 1m", p.getName()));
|
Calendar c = new GregorianCalendar();
|
||||||
|
c.add(Calendar.MINUTE, 1);
|
||||||
Calendar calendar = Calendar.getInstance();
|
Date expires = c.getTime();
|
||||||
calendar.setTime(new Date());
|
|
||||||
calendar.add(Calendar.MINUTE, 1);
|
|
||||||
Date expires = calendar.getTime();
|
|
||||||
|
|
||||||
TFM_Util.banIP(player_ip, null, null, expires);
|
|
||||||
TFM_Util.banUsername(p.getName(), null, null, expires);
|
|
||||||
|
|
||||||
TFM_Util.bcastMsg(ChatColor.RED + p.getName() + " has been banned for 1 minute.");
|
TFM_Util.bcastMsg(ChatColor.RED + p.getName() + " has been banned for 1 minute.");
|
||||||
|
|
||||||
|
TFM_Util.banIP(player_ip, kickMessage, "AutoEject", expires);
|
||||||
|
TFM_Util.banUsername(p.getName(), kickMessage, "AutoEject", expires);
|
||||||
p.kickPlayer(kickMessage);
|
p.kickPlayer(kickMessage);
|
||||||
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case STRIKE_TWO:
|
case STRIKE_TWO:
|
||||||
{
|
{
|
||||||
//Bukkit.getServer().dispatchCommand(Bukkit.getConsoleSender(), String.format("tempban %s 3m", p.getName()));
|
Calendar c = new GregorianCalendar();
|
||||||
|
c.add(Calendar.MINUTE, 3);
|
||||||
Calendar calendar = Calendar.getInstance();
|
Date expires = c.getTime();
|
||||||
calendar.setTime(new Date());
|
|
||||||
calendar.add(Calendar.MINUTE, 3);
|
|
||||||
Date expires = calendar.getTime();
|
|
||||||
|
|
||||||
TFM_Util.banIP(player_ip, null, null, expires);
|
|
||||||
TFM_Util.banUsername(p.getName(), null, null, expires);
|
|
||||||
|
|
||||||
TFM_Util.bcastMsg(ChatColor.RED + p.getName() + " has been banned for 3 minutes.");
|
TFM_Util.bcastMsg(ChatColor.RED + p.getName() + " has been banned for 3 minutes.");
|
||||||
|
|
||||||
|
TFM_Util.banIP(player_ip, kickMessage, "AutoEject", expires);
|
||||||
|
TFM_Util.banUsername(p.getName(), kickMessage, "AutoEject", expires);
|
||||||
p.kickPlayer(kickMessage);
|
p.kickPlayer(kickMessage);
|
||||||
|
|
||||||
break;
|
break;
|
||||||
@ -661,13 +653,13 @@ public class TFM_Util
|
|||||||
case STRIKE_THREE:
|
case STRIKE_THREE:
|
||||||
{
|
{
|
||||||
//Bukkit.banIP(player_ip);
|
//Bukkit.banIP(player_ip);
|
||||||
TFM_Util.banIP(player_ip, null, null, null);
|
TFM_Util.banIP(player_ip, kickMessage, "AutoEject", null);
|
||||||
String[] ip_address_parts = player_ip.split("\\.");
|
String[] ip_address_parts = player_ip.split("\\.");
|
||||||
//Bukkit.banIP();
|
//Bukkit.banIP();
|
||||||
TFM_Util.banIP(ip_address_parts[0] + "." + ip_address_parts[1] + ".*.*", null, null, null);
|
TFM_Util.banIP(ip_address_parts[0] + "." + ip_address_parts[1] + ".*.*", kickMessage, "AutoEject", null);
|
||||||
|
|
||||||
//p.setBanned(true);
|
//p.setBanned(true);
|
||||||
TFM_Util.banUsername(p.getName(), null, null, null);
|
TFM_Util.banUsername(p.getName(), kickMessage, "AutoEject", null);
|
||||||
|
|
||||||
TFM_Util.bcastMsg(ChatColor.RED + p.getName() + " has been banned permanently.");
|
TFM_Util.bcastMsg(ChatColor.RED + p.getName() + " has been banned permanently.");
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user