mirror of
https://github.com/TotalFreedomMC/TFGuilds.git
synced 2024-12-22 16:05:00 +00:00
guildkick
This commit is contained in:
parent
bbbb1afffb
commit
6479bbc76b
5 changed files with 73 additions and 3 deletions
2
pom.xml
2
pom.xml
|
@ -6,7 +6,7 @@
|
||||||
|
|
||||||
<groupId>me.totalfreedom</groupId>
|
<groupId>me.totalfreedom</groupId>
|
||||||
<artifactId>TFGuilds</artifactId>
|
<artifactId>TFGuilds</artifactId>
|
||||||
<version>0.1.0</version>
|
<version>0.1.1</version>
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
<name>TFGuilds</name>
|
<name>TFGuilds</name>
|
||||||
|
|
|
@ -45,6 +45,7 @@ public final class TFGuilds extends JavaPlugin
|
||||||
this.getCommand("guildteleport").setExecutor(new GuildTeleportCommand());
|
this.getCommand("guildteleport").setExecutor(new GuildTeleportCommand());
|
||||||
this.getCommand("inviteguild").setExecutor(new InviteGuildCommand());
|
this.getCommand("inviteguild").setExecutor(new InviteGuildCommand());
|
||||||
this.getCommand("leaveguild").setExecutor(new LeaveGuildCommand());
|
this.getCommand("leaveguild").setExecutor(new LeaveGuildCommand());
|
||||||
|
this.getCommand("guildkick").setExecutor(new GuildKickCommand());
|
||||||
}
|
}
|
||||||
|
|
||||||
private void enableListeners()
|
private void enableListeners()
|
||||||
|
|
|
@ -0,0 +1,66 @@
|
||||||
|
package me.totalfreedom.tfguilds.command;
|
||||||
|
|
||||||
|
import me.totalfreedom.tfguilds.util.GBase;
|
||||||
|
import me.totalfreedom.tfguilds.util.GUtil;
|
||||||
|
import org.bukkit.Bukkit;
|
||||||
|
import org.bukkit.ChatColor;
|
||||||
|
import org.bukkit.command.Command;
|
||||||
|
import org.bukkit.command.CommandExecutor;
|
||||||
|
import org.bukkit.command.CommandSender;
|
||||||
|
import org.bukkit.entity.Player;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
public class GuildKickCommand extends GBase implements CommandExecutor
|
||||||
|
{
|
||||||
|
@Override
|
||||||
|
public boolean onCommand(CommandSender sender, Command command, String label, String[] args)
|
||||||
|
{
|
||||||
|
if (args.length == 0)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
Player player = (Player) sender;
|
||||||
|
if (GUtil.isConsole(player))
|
||||||
|
{
|
||||||
|
sender.sendMessage(ChatColor.RED + "You are not allowed to run this command.");
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
String guild = GUtil.getGuild(player);
|
||||||
|
if (guild == null)
|
||||||
|
{
|
||||||
|
sender.sendMessage(ChatColor.RED + "You aren't in a guild!");
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
String owner = GUtil.getOwner(guild);
|
||||||
|
if (!owner.equalsIgnoreCase(player.getName()))
|
||||||
|
{
|
||||||
|
sender.sendMessage(ChatColor.RED + "You aren't the owner of your guild!");
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
Player target = Bukkit.getPlayer(args[0]);
|
||||||
|
if (target == null)
|
||||||
|
{
|
||||||
|
sender.sendMessage(ChatColor.RED + "Player not found");
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
List<String> players = plugin.guilds.getStringList("guilds." + guild + ".members");
|
||||||
|
players.remove(target.getName());
|
||||||
|
plugin.guilds.set("guilds." + guild + ".members", players);
|
||||||
|
plugin.guilds.save();
|
||||||
|
for (Player p : Bukkit.getOnlinePlayers())
|
||||||
|
{
|
||||||
|
if (GUtil.isGuildMember(p, guild))
|
||||||
|
{
|
||||||
|
p.sendMessage(ChatColor.RED + target.getName() + " has been kicked from the guild");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
sender.sendMessage(ChatColor.GREEN + "Successfully kicked " + target.getName() + " from the guild");
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
|
@ -56,7 +56,7 @@ public class InviteGuildCommand extends GBase implements CommandExecutor
|
||||||
player.sendMessage(ChatColor.GREEN + "You have successfully joined " + guild);
|
player.sendMessage(ChatColor.GREEN + "You have successfully joined " + guild);
|
||||||
for (Player p : Bukkit.getOnlinePlayers())
|
for (Player p : Bukkit.getOnlinePlayers())
|
||||||
{
|
{
|
||||||
if (GUtil.isGuildMember(player, guild))
|
if (GUtil.isGuildMember(p, guild))
|
||||||
{
|
{
|
||||||
p.sendMessage(ChatColor.GREEN + player.getName() + " has joined the guild");
|
p.sendMessage(ChatColor.GREEN + player.getName() + " has joined the guild");
|
||||||
}
|
}
|
||||||
|
|
|
@ -38,3 +38,6 @@ commands:
|
||||||
description: Leave your guild
|
description: Leave your guild
|
||||||
usage: /<command>
|
usage: /<command>
|
||||||
aliases: [guildleave]
|
aliases: [guildleave]
|
||||||
|
guildkick:
|
||||||
|
description: Kicks a player from the guild
|
||||||
|
usage: /<command> <player>
|
Loading…
Reference in a new issue