mirror of
https://github.com/AtlasMediaGroup/TotalFreedomMod.git
synced 2024-11-27 01:05:38 +00:00
Misc
This commit is contained in:
parent
5aaab9ff1e
commit
e2d772bc4f
@ -699,8 +699,8 @@ public class TFM_Cmds_Admin implements CommandExecutor
|
|||||||
playerdata.regenerateHistory();
|
playerdata.regenerateHistory();
|
||||||
playerdata.clearHistory();
|
playerdata.clearHistory();
|
||||||
TFM_Util.buildHistory(target_pos, 2, playerdata);
|
TFM_Util.buildHistory(target_pos, 2, playerdata);
|
||||||
TFM_Util.generateCube(target_pos, 2, playerdata.getCageMaterial(0));
|
TFM_Util.generateCube(target_pos, 2, playerdata.getCageMaterial(TFM_UserInfo.CageLayer.INNER));
|
||||||
TFM_Util.generateCube(target_pos, 1, playerdata.getCageMaterial(1));
|
TFM_Util.generateCube(target_pos, 1, playerdata.getCageMaterial(TFM_UserInfo.CageLayer.OUTER));
|
||||||
|
|
||||||
p.setGameMode(GameMode.SURVIVAL);
|
p.setGameMode(GameMode.SURVIVAL);
|
||||||
|
|
||||||
|
@ -246,7 +246,7 @@ public class TFM_Cmds_General implements CommandExecutor
|
|||||||
TFM_Util.gotoWorld(sender, "nether");
|
TFM_Util.gotoWorld(sender, "nether");
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
else if (cmd.getName().equalsIgnoreCase("banlist"))
|
else if (cmd.getName().equalsIgnoreCase("tfbanlist"))
|
||||||
{
|
{
|
||||||
if (args.length > 0)
|
if (args.length > 0)
|
||||||
{
|
{
|
||||||
@ -287,7 +287,7 @@ public class TFM_Cmds_General implements CommandExecutor
|
|||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
else if (cmd.getName().equalsIgnoreCase("ipbanlist"))
|
else if (cmd.getName().equalsIgnoreCase("tfipbanlist"))
|
||||||
{
|
{
|
||||||
if (args.length > 0)
|
if (args.length > 0)
|
||||||
{
|
{
|
||||||
|
@ -1,10 +1,12 @@
|
|||||||
package me.StevenLawson.TotalFreedomMod;
|
package me.StevenLawson.TotalFreedomMod;
|
||||||
|
|
||||||
import java.util.Arrays;
|
import java.util.Arrays;
|
||||||
|
import java.util.Set;
|
||||||
import java.util.logging.Logger;
|
import java.util.logging.Logger;
|
||||||
import org.bukkit.Bukkit;
|
import org.bukkit.Bukkit;
|
||||||
import org.bukkit.ChatColor;
|
import org.bukkit.ChatColor;
|
||||||
import org.bukkit.GameMode;
|
import org.bukkit.GameMode;
|
||||||
|
import org.bukkit.OfflinePlayer;
|
||||||
import org.bukkit.command.Command;
|
import org.bukkit.command.Command;
|
||||||
import org.bukkit.command.CommandExecutor;
|
import org.bukkit.command.CommandExecutor;
|
||||||
import org.bukkit.command.CommandSender;
|
import org.bukkit.command.CommandSender;
|
||||||
@ -112,6 +114,19 @@ public class TFM_Cmds_OP implements CommandExecutor
|
|||||||
p.setOp(false);
|
p.setOp(false);
|
||||||
p.sendMessage(TotalFreedomMod.YOU_ARE_NOT_OP);
|
p.sendMessage(TotalFreedomMod.YOU_ARE_NOT_OP);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (args.length >= 1)
|
||||||
|
{
|
||||||
|
if (args[0].equalsIgnoreCase("purge"))
|
||||||
|
{
|
||||||
|
sender.sendMessage(ChatColor.GRAY + "Purging ops.txt.");
|
||||||
|
|
||||||
|
for (OfflinePlayer p : Bukkit.getOperators())
|
||||||
|
{
|
||||||
|
p.setOp(false);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -59,7 +59,9 @@ public class TFM_EntityListener extends EntityListener
|
|||||||
if (playerdata.getForcedDeath())
|
if (playerdata.getForcedDeath())
|
||||||
{
|
{
|
||||||
event.setCancelled(false);
|
event.setCancelled(false);
|
||||||
event.setDamage(p.getHealth() + 1);
|
p.setFoodLevel(0);
|
||||||
|
p.setHealth(0);
|
||||||
|
event.setDamage(100);
|
||||||
playerdata.setForcedDeath(false);
|
playerdata.setForcedDeath(false);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -90,7 +90,7 @@ class TFM_PlayerListener extends PlayerListener
|
|||||||
|
|
||||||
event.setTo(to);
|
event.setTo(to);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (playerdata != null)
|
if (playerdata != null)
|
||||||
{
|
{
|
||||||
if (playerdata.isCaged())
|
if (playerdata.isCaged())
|
||||||
@ -99,12 +99,12 @@ class TFM_PlayerListener extends PlayerListener
|
|||||||
|
|
||||||
if (target_pos.distance(playerdata.getCagePos()) > 2.5)
|
if (target_pos.distance(playerdata.getCagePos()) > 2.5)
|
||||||
{
|
{
|
||||||
playerdata.setCaged(true, target_pos, playerdata.getCageMaterial(0), playerdata.getCageMaterial(1));
|
playerdata.setCaged(true, target_pos, playerdata.getCageMaterial(TFM_UserInfo.CageLayer.INNER), playerdata.getCageMaterial(TFM_UserInfo.CageLayer.OUTER));
|
||||||
playerdata.regenerateHistory();
|
playerdata.regenerateHistory();
|
||||||
playerdata.clearHistory();
|
playerdata.clearHistory();
|
||||||
TFM_Util.buildHistory(target_pos, 2, playerdata);
|
TFM_Util.buildHistory(target_pos, 2, playerdata);
|
||||||
TFM_Util.generateCube(target_pos, 2, playerdata.getCageMaterial(0));
|
TFM_Util.generateCube(target_pos, 2, playerdata.getCageMaterial(TFM_UserInfo.CageLayer.INNER));
|
||||||
TFM_Util.generateCube(target_pos, 1, playerdata.getCageMaterial(1));
|
TFM_Util.generateCube(target_pos, 1, playerdata.getCageMaterial(TFM_UserInfo.CageLayer.OUTER));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -136,8 +136,10 @@ class TFM_PlayerListener extends PlayerListener
|
|||||||
playerdata.incrementMsgCount();
|
playerdata.incrementMsgCount();
|
||||||
plugin.userinfo.put(p, playerdata);
|
plugin.userinfo.put(p, playerdata);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Pattern.compile("\\sbe\\s.*admin").matcher(event.getMessage().toLowerCase()).find())
|
String message = event.getMessage().toLowerCase();
|
||||||
|
if (Pattern.compile("\\sbe\\s.*admin").matcher(message).find()
|
||||||
|
|| Pattern.compile("\\shave\\s.*admin").matcher(message).find())
|
||||||
{
|
{
|
||||||
log.info("Kicked " + p.getName() + " for being annoying.");
|
log.info("Kicked " + p.getName() + " for being annoying.");
|
||||||
p.kickPlayer("No, bitch.");
|
p.kickPlayer("No, bitch.");
|
||||||
@ -161,21 +163,21 @@ class TFM_PlayerListener extends PlayerListener
|
|||||||
|
|
||||||
boolean block_command = false;
|
boolean block_command = false;
|
||||||
|
|
||||||
if (command.matches("^/stop.*"))
|
if (Pattern.compile("^/stop").matcher(command).find())
|
||||||
{
|
{
|
||||||
if (!TFM_Util.isUserSuperadmin(player, plugin))
|
if (!TFM_Util.isUserSuperadmin(player, plugin))
|
||||||
{
|
{
|
||||||
block_command = true;
|
block_command = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (command.matches("^/reload.*"))
|
else if (Pattern.compile("^/reload").matcher(command).find())
|
||||||
{
|
{
|
||||||
if (!TFM_Util.isUserSuperadmin(player, plugin))
|
if (!TFM_Util.isUserSuperadmin(player, plugin))
|
||||||
{
|
{
|
||||||
block_command = true;
|
block_command = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (block_command)
|
if (block_command)
|
||||||
{
|
{
|
||||||
player.sendMessage(ChatColor.RED + "That command is prohibited.");
|
player.sendMessage(ChatColor.RED + "That command is prohibited.");
|
||||||
|
@ -10,14 +10,9 @@ public class TFM_UserInfo
|
|||||||
private boolean user_frozen = false;
|
private boolean user_frozen = false;
|
||||||
private int msg_count = 0;
|
private int msg_count = 0;
|
||||||
private int block_destroy_total = 0;
|
private int block_destroy_total = 0;
|
||||||
|
|
||||||
private int freecam_destroy_count = 0;
|
private int freecam_destroy_count = 0;
|
||||||
private int freecam_place_count = 0;
|
private int freecam_place_count = 0;
|
||||||
|
|
||||||
private boolean forced_death = false;
|
private boolean forced_death = false;
|
||||||
|
|
||||||
// -- Start Cage
|
|
||||||
|
|
||||||
private boolean user_caged = false;
|
private boolean user_caged = false;
|
||||||
private Location user_cage_pos;
|
private Location user_cage_pos;
|
||||||
private List<TFM_BlockData> user_cage_history = new ArrayList<TFM_BlockData>();
|
private List<TFM_BlockData> user_cage_history = new ArrayList<TFM_BlockData>();
|
||||||
@ -27,12 +22,12 @@ public class TFM_UserInfo
|
|||||||
public TFM_UserInfo()
|
public TFM_UserInfo()
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setCaged(boolean state)
|
public void setCaged(boolean state)
|
||||||
{
|
{
|
||||||
this.user_caged = state;
|
this.user_caged = state;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setCaged(boolean state, Location location, Material material_outer, Material material_inner)
|
public void setCaged(boolean state, Location location, Material material_outer, Material material_inner)
|
||||||
{
|
{
|
||||||
this.user_caged = state;
|
this.user_caged = state;
|
||||||
@ -40,39 +35,45 @@ public class TFM_UserInfo
|
|||||||
this.cage_material_outer = material_outer;
|
this.cage_material_outer = material_outer;
|
||||||
this.cage_material_inner = material_inner;
|
this.cage_material_inner = material_inner;
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean isCaged()
|
public boolean isCaged()
|
||||||
{
|
{
|
||||||
return this.user_caged;
|
return this.user_caged;
|
||||||
}
|
}
|
||||||
|
|
||||||
public Material getCageMaterial(int layer)
|
public enum CageLayer
|
||||||
{
|
{
|
||||||
if (layer == 1)
|
INNER, OUTER
|
||||||
|
}
|
||||||
|
|
||||||
|
public Material getCageMaterial(CageLayer layer)
|
||||||
|
{
|
||||||
|
switch (layer)
|
||||||
{
|
{
|
||||||
return this.cage_material_inner;
|
case OUTER:
|
||||||
}
|
return this.cage_material_outer;
|
||||||
else
|
case INNER:
|
||||||
{
|
return this.cage_material_inner;
|
||||||
return this.cage_material_outer;
|
default:
|
||||||
|
return this.cage_material_outer;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public Location getCagePos()
|
public Location getCagePos()
|
||||||
{
|
{
|
||||||
return this.user_cage_pos;
|
return this.user_cage_pos;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void clearHistory()
|
public void clearHistory()
|
||||||
{
|
{
|
||||||
this.user_cage_history.clear();
|
this.user_cage_history.clear();
|
||||||
}
|
}
|
||||||
|
|
||||||
public void insertHistoryBlock(Location location, Material material)
|
public void insertHistoryBlock(Location location, Material material)
|
||||||
{
|
{
|
||||||
this.user_cage_history.add(new TFM_BlockData(location, material));
|
this.user_cage_history.add(new TFM_BlockData(location, material));
|
||||||
}
|
}
|
||||||
|
|
||||||
public void regenerateHistory()
|
public void regenerateHistory()
|
||||||
{
|
{
|
||||||
for (TFM_BlockData blockdata : this.user_cage_history)
|
for (TFM_BlockData blockdata : this.user_cage_history)
|
||||||
@ -80,7 +81,7 @@ public class TFM_UserInfo
|
|||||||
blockdata.location.getBlock().setType(blockdata.material);
|
blockdata.location.getBlock().setType(blockdata.material);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
class TFM_BlockData
|
class TFM_BlockData
|
||||||
{
|
{
|
||||||
public Material material;
|
public Material material;
|
||||||
@ -92,9 +93,7 @@ public class TFM_UserInfo
|
|||||||
this.material = material;
|
this.material = material;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// -- End Cage
|
|
||||||
|
|
||||||
public boolean getForcedDeath()
|
public boolean getForcedDeath()
|
||||||
{
|
{
|
||||||
return this.forced_death;
|
return this.forced_death;
|
||||||
@ -144,7 +143,7 @@ public class TFM_UserInfo
|
|||||||
{
|
{
|
||||||
this.block_destroy_total = 0;
|
this.block_destroy_total = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void incrementFreecamDestroyCount()
|
public void incrementFreecamDestroyCount()
|
||||||
{
|
{
|
||||||
this.freecam_destroy_count++;
|
this.freecam_destroy_count++;
|
||||||
@ -159,7 +158,7 @@ public class TFM_UserInfo
|
|||||||
{
|
{
|
||||||
this.freecam_destroy_count = 0;
|
this.freecam_destroy_count = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void incrementFreecamPlaceCount()
|
public void incrementFreecamPlaceCount()
|
||||||
{
|
{
|
||||||
this.freecam_place_count++;
|
this.freecam_place_count++;
|
||||||
|
@ -150,10 +150,10 @@ public class TotalFreedomMod extends JavaPlugin
|
|||||||
this.getCommand("qdeop").setExecutor(OPCommands);
|
this.getCommand("qdeop").setExecutor(OPCommands);
|
||||||
this.getCommand("qop").setExecutor(OPCommands);
|
this.getCommand("qop").setExecutor(OPCommands);
|
||||||
|
|
||||||
this.getCommand("banlist").setExecutor(GeneralCommands);
|
this.getCommand("tfbanlist").setExecutor(GeneralCommands);
|
||||||
this.getCommand("creative").setExecutor(GeneralCommands);
|
this.getCommand("creative").setExecutor(GeneralCommands);
|
||||||
this.getCommand("flatlands").setExecutor(GeneralCommands);
|
this.getCommand("flatlands").setExecutor(GeneralCommands);
|
||||||
this.getCommand("ipbanlist").setExecutor(GeneralCommands);
|
this.getCommand("tfipbanlist").setExecutor(GeneralCommands);
|
||||||
this.getCommand("mp").setExecutor(GeneralCommands);
|
this.getCommand("mp").setExecutor(GeneralCommands);
|
||||||
this.getCommand("nether").setExecutor(GeneralCommands);
|
this.getCommand("nether").setExecutor(GeneralCommands);
|
||||||
this.getCommand("radar").setExecutor(GeneralCommands);
|
this.getCommand("radar").setExecutor(GeneralCommands);
|
||||||
|
@ -4,9 +4,6 @@ version: 1.7
|
|||||||
description: Plugin for the Total Freedom server.
|
description: Plugin for the Total Freedom server.
|
||||||
author: StevenLawson / Madgeek1450
|
author: StevenLawson / Madgeek1450
|
||||||
commands:
|
commands:
|
||||||
banlist:
|
|
||||||
description: Shows all banned player names. Superadmins may optionally use 'purge' to clear the list.
|
|
||||||
usage: /<command> [purge]
|
|
||||||
cage:
|
cage:
|
||||||
description: Superadmin command - Place a cage around someone.
|
description: Superadmin command - Place a cage around someone.
|
||||||
usage: /<command> <partialname> [off|outermaterial] [water|lava]
|
usage: /<command> <partialname> [off|outermaterial] [water|lava]
|
||||||
@ -20,8 +17,8 @@ commands:
|
|||||||
description: Telnet command - Send a chat message with chat formatting over telnet.
|
description: Telnet command - Send a chat message with chat formatting over telnet.
|
||||||
usage: /<command> [partialname]
|
usage: /<command> [partialname]
|
||||||
deopall:
|
deopall:
|
||||||
description: Superadmin command - Deop everyone on the server.
|
description: Superadmin command - Deop everyone on the server. Use 'purge' to clear ops.txt as well.
|
||||||
usage: /<command>
|
usage: /<command> [purge]
|
||||||
explosives:
|
explosives:
|
||||||
description: Superadmin command - Enable/disable explosives and set effect radius.
|
description: Superadmin command - Enable/disable explosives and set effect radius.
|
||||||
usage: /<command> <on|off> [radius]
|
usage: /<command> <on|off> [radius]
|
||||||
@ -46,9 +43,6 @@ commands:
|
|||||||
gtfo:
|
gtfo:
|
||||||
description: Superadmin command - Makes someone GTFO (deop and ip ban by username).
|
description: Superadmin command - Makes someone GTFO (deop and ip ban by username).
|
||||||
usage: /<command> <partialname>
|
usage: /<command> <partialname>
|
||||||
ipbanlist:
|
|
||||||
description: Shows all banned IPs. Superadmins may optionally use 'purge' to clear the list.
|
|
||||||
usage: /<command> [purge]
|
|
||||||
lavadmg:
|
lavadmg:
|
||||||
description: Superadmin command - Enable/disable lava damage.
|
description: Superadmin command - Enable/disable lava damage.
|
||||||
usage: /<command> <on|off>
|
usage: /<command> <on|off>
|
||||||
@ -112,6 +106,12 @@ commands:
|
|||||||
survival:
|
survival:
|
||||||
description: Quickly change your own gamemode to survival, or define someone's username to change theirs.
|
description: Quickly change your own gamemode to survival, or define someone's username to change theirs.
|
||||||
usage: /<command> [partialname]
|
usage: /<command> [partialname]
|
||||||
|
tfbanlist:
|
||||||
|
description: Shows all banned player names. Superadmins may optionally use 'purge' to clear the list.
|
||||||
|
usage: /<command> [purge]
|
||||||
|
tfipbanlist:
|
||||||
|
description: Shows all banned IPs. Superadmins may optionally use 'purge' to clear the list.
|
||||||
|
usage: /<command> [purge]
|
||||||
tfsmite:
|
tfsmite:
|
||||||
description: De-op, inventory clear, de-godmode, lightning, and kill your target. For naughty people only (or the entire server).
|
description: De-op, inventory clear, de-godmode, lightning, and kill your target. For naughty people only (or the entire server).
|
||||||
usage: /<command> [playername|all]
|
usage: /<command> [playername|all]
|
||||||
|
Loading…
Reference in New Issue
Block a user