mirror of
https://github.com/TheDeus-Group/TFM-4.3-Reloaded.git
synced 2024-12-23 03:34:57 +00:00
i hate git
This commit is contained in:
commit
cf122a0440
2 changed files with 9 additions and 8 deletions
|
@ -16,7 +16,7 @@ public class Command_myadmin extends FreedomCommand {
|
||||||
final UUID uuid = sender_p.getUniqueId(); // Get the sender's uuid as a variable.
|
final UUID uuid = sender_p.getUniqueId(); // Get the sender's uuid as a variable.
|
||||||
if(args.length == 1) {
|
if(args.length == 1) {
|
||||||
if ("clearloginmsg".equalsIgnoreCase(args[0])) {
|
if ("clearloginmsg".equalsIgnoreCase(args[0])) {
|
||||||
playerMsg(ChatColor.GRAY + "Cleared your custom login message."); // Notify player that the login message has been set.
|
playerMsg(sender, ChatColor.GRAY + "Cleared your custom login message."); // Notify player that the login message has been set.
|
||||||
|
|
||||||
AdminList.getEntry(uuid).setCustomLoginMessage(""); // Set the custom login message to the value.
|
AdminList.getEntry(uuid).setCustomLoginMessage(""); // Set the custom login message to the value.
|
||||||
AdminList.save(AdminList.getEntry(uuid)); // Save the modified value to the super admin configuration.
|
AdminList.save(AdminList.getEntry(uuid)); // Save the modified value to the super admin configuration.
|
||||||
|
@ -29,9 +29,9 @@ public class Command_myadmin extends FreedomCommand {
|
||||||
} else if (args.length >= 2) {
|
} else if (args.length >= 2) {
|
||||||
if ("setlogin".equalsIgnoreCase(args[0])) {
|
if ("setlogin".equalsIgnoreCase(args[0])) {
|
||||||
final String inputMessage = StringUtils.join(args, " ", 1, args.length); // Parse the input provided.
|
final String inputMessage = StringUtils.join(args, " ", 1, args.length); // Parse the input provided.
|
||||||
playerMsg(ChatColor.GRAY + "Set your custom login message."); // Notify player that the login message has been set.
|
playerMsg(sender, ChatColor.GRAY + "Set your custom login message."); // Notify player that the login message has been set.
|
||||||
playerMsg(ChatColor.GRAY + "Your login message will show up as: \n" + ChatColor.AQUA + sender_p.getPlayer().getName() + " is " + ChatColor.translateAlternateColorCodes('&', inputMessage));
|
playerMsg(sender, ChatColor.GRAY + "Your login message will show up as: \n" + ChatColor.AQUA + sender_p.getPlayer().getName() + " is " + ChatColor.translateAlternateColorCodes('&', inputMessage));
|
||||||
AdminList.getEntry(uuid).setCustomLoginMessage(inputMessage); // Set the custom login message to the value.
|
AdminList.getEntry(uuid).setCustomLoginMessage(inputMessage); // Set the custom login message to the value.
|
||||||
AdminList.save(AdminList.getEntry(uuid)); // Save the modified value to the super admin configuration.
|
AdminList.save(AdminList.getEntry(uuid)); // Save the modified value to the super admin configuration.
|
||||||
|
|
||||||
AdminList.updateIndexLists(); // Update and refresh configuration.
|
AdminList.updateIndexLists(); // Update and refresh configuration.
|
||||||
|
@ -43,4 +43,4 @@ public class Command_myadmin extends FreedomCommand {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -8,6 +8,7 @@ import org.bukkit.command.CommandSender;
|
||||||
import org.bukkit.entity.Player;
|
import org.bukkit.entity.Player;
|
||||||
|
|
||||||
@CommandPermissions(level = AdminLevel.SUPER, source = SourceType.BOTH)
|
@CommandPermissions(level = AdminLevel.SUPER, source = SourceType.BOTH)
|
||||||
|
@CommandParameters(description = "Run any command on all users, username placeholder = ?.", usage = "/<command> [fluff] ? [fluff] ?")
|
||||||
public class Command_wildcard extends FreedomCommand {
|
public class Command_wildcard extends FreedomCommand {
|
||||||
@Override
|
@Override
|
||||||
public boolean run(CommandSender sender, org.bukkit.entity.Player sender_p, Command cmd, String commandLabel, String[] args, boolean senderIsConsole) {
|
public boolean run(CommandSender sender, org.bukkit.entity.Player sender_p, Command cmd, String commandLabel, String[] args, boolean senderIsConsole) {
|
||||||
|
@ -16,9 +17,9 @@ public class Command_wildcard extends FreedomCommand {
|
||||||
}
|
}
|
||||||
|
|
||||||
String arguments = String.join(" ", args);
|
String arguments = String.join(" ", args);
|
||||||
|
|
||||||
if (arguments.toLowerCase().contains("wildcard") || arguments.toLowerCase().contains("gcmd")) {
|
if (arguments.toLowerCase().contains("wildcard") || arguments.toLowerCase().contains("gcmd")) {
|
||||||
playerMsg("What the hell are you trying to do, you stupid idiot...", ChatColor.RED);
|
playerMsg(sender, "What the hell are you trying to do, you stupid idiot...", ChatColor.RED);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
if (arguments.toLowerCase().contains("gtfo"))
|
if (arguments.toLowerCase().contains("gtfo"))
|
||||||
|
@ -54,4 +55,4 @@ public class Command_wildcard extends FreedomCommand {
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in a new issue