mirror of
https://github.com/PlaceholderAPI/PlaceholderAPI
synced 2024-11-18 00:46:55 +01:00
Added missing commands to help commands, fixed some color / formatting
This commit is contained in:
parent
94ce9d6a6e
commit
8c829417a7
@ -81,6 +81,8 @@ public final class CommandECloud extends PlaceholderCommand
|
|||||||
Msg.msg(sender,
|
Msg.msg(sender,
|
||||||
"&b&lPlaceholderAPI &8- &7eCloud Help Menu &8- ",
|
"&b&lPlaceholderAPI &8- &7eCloud Help Menu &8- ",
|
||||||
" ",
|
" ",
|
||||||
|
"&b/papi &fenable/disable/toggle",
|
||||||
|
" &7&oEnable or disable the eCloud",
|
||||||
"&b/papi &fecloud status",
|
"&b/papi &fecloud status",
|
||||||
" &7&oView status of the eCloud",
|
" &7&oView status of the eCloud",
|
||||||
"&b/papi &fecloud list <all/{author}/installed> {page}",
|
"&b/papi &fecloud list <all/{author}/installed> {page}",
|
||||||
@ -91,6 +93,8 @@ public final class CommandECloud extends PlaceholderCommand
|
|||||||
" &7&oView placeholders for an expansion",
|
" &7&oView placeholders for an expansion",
|
||||||
"&b/papi &fecloud download <expansion name> {version}",
|
"&b/papi &fecloud download <expansion name> {version}",
|
||||||
" &7&oDownload an expansion from the eCloud",
|
" &7&oDownload an expansion from the eCloud",
|
||||||
|
"&b/papi &fecloud update <expansion name/all>",
|
||||||
|
" &7&oUpdate a specific/all installed expansions",
|
||||||
"&b/papi &fecloud refresh",
|
"&b/papi &fecloud refresh",
|
||||||
" &7&oFetch the most up to date list of expansions available.",
|
" &7&oFetch the most up to date list of expansions available.",
|
||||||
"&b/papi &fecloud clear",
|
"&b/papi &fecloud clear",
|
||||||
|
@ -46,7 +46,7 @@ public final class CommandECloudDownload extends PlaceholderCommand
|
|||||||
if (params.isEmpty())
|
if (params.isEmpty())
|
||||||
{
|
{
|
||||||
Msg.msg(sender,
|
Msg.msg(sender,
|
||||||
"&cYou must supply the name of an eCloud expansion.");
|
"&cYou must supply the name of an expansion.");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -54,7 +54,7 @@ public final class CommandECloudDownload extends PlaceholderCommand
|
|||||||
if (expansion == null)
|
if (expansion == null)
|
||||||
{
|
{
|
||||||
Msg.msg(sender,
|
Msg.msg(sender,
|
||||||
"&cCould not find expansion named: &f" + params.get(0));
|
"&cFailed to find an expansion named: &f" + params.get(0));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -76,7 +76,7 @@ public final class CommandECloudDownload extends PlaceholderCommand
|
|||||||
{
|
{
|
||||||
Msg.msg(sender,
|
Msg.msg(sender,
|
||||||
"&cCould not find specified version: &f" + params.get(1),
|
"&cCould not find specified version: &f" + params.get(1),
|
||||||
"&7Versions: &a" + expansion.getAvailableVersions());
|
"&7Available versions: &f" + expansion.getAvailableVersions());
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -85,12 +85,13 @@ public final class CommandECloudDownload extends PlaceholderCommand
|
|||||||
if (exception != null)
|
if (exception != null)
|
||||||
{
|
{
|
||||||
Msg.msg(sender,
|
Msg.msg(sender,
|
||||||
"&cFailed to download expansion: &e" + exception.getMessage());
|
"&cFailed to download expansion: &f" + exception.getMessage());
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
Msg.msg(sender,
|
Msg.msg(sender,
|
||||||
"&aSuccessfully downloaded expansion to file: &e" + file.getName());
|
"&aSuccessfully downloaded expansion &f" + expansion.getName() + " [" + version + "] &ato file: &f" + file.getName(),
|
||||||
|
"&aMake sure to type &f/papi reload &ato enable your new expansion!");
|
||||||
|
|
||||||
plugin.getCloudExpansionManager().clean();
|
plugin.getCloudExpansionManager().clean();
|
||||||
plugin.getCloudExpansionManager().fetch(plugin.getPlaceholderAPIConfig().cloudAllowUnverifiedExpansions());
|
plugin.getCloudExpansionManager().fetch(plugin.getPlaceholderAPIConfig().cloudAllowUnverifiedExpansions());
|
||||||
|
@ -91,7 +91,7 @@ public final class CommandECloudExpansionInfo extends PlaceholderCommand
|
|||||||
{
|
{
|
||||||
Msg.msg(sender,
|
Msg.msg(sender,
|
||||||
"&cCould not find specified version: &f" + params.get(1),
|
"&cCould not find specified version: &f" + params.get(1),
|
||||||
"&7Versions: &a" + expansion.getAvailableVersions());
|
"&aVersions: &f" + expansion.getAvailableVersions());
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -30,9 +30,9 @@ import me.clip.placeholderapi.commands.PlaceholderCommand;
|
|||||||
import me.clip.placeholderapi.configuration.ExpansionSort;
|
import me.clip.placeholderapi.configuration.ExpansionSort;
|
||||||
import me.clip.placeholderapi.expansion.PlaceholderExpansion;
|
import me.clip.placeholderapi.expansion.PlaceholderExpansion;
|
||||||
import me.clip.placeholderapi.expansion.cloud.CloudExpansion;
|
import me.clip.placeholderapi.expansion.cloud.CloudExpansion;
|
||||||
|
import me.clip.placeholderapi.libs.JSONMessage;
|
||||||
import me.clip.placeholderapi.util.Format;
|
import me.clip.placeholderapi.util.Format;
|
||||||
import me.clip.placeholderapi.util.Msg;
|
import me.clip.placeholderapi.util.Msg;
|
||||||
import me.rayzr522.jsonmessage.JSONMessage;
|
|
||||||
import org.bukkit.ChatColor;
|
import org.bukkit.ChatColor;
|
||||||
import org.bukkit.command.CommandSender;
|
import org.bukkit.command.CommandSender;
|
||||||
import org.bukkit.entity.Player;
|
import org.bukkit.entity.Player;
|
||||||
|
@ -63,7 +63,7 @@ public final class CommandECloudExpansionPlaceholders extends PlaceholderCommand
|
|||||||
if (placeholders == null || placeholders.isEmpty())
|
if (placeholders == null || placeholders.isEmpty())
|
||||||
{
|
{
|
||||||
Msg.msg(sender,
|
Msg.msg(sender,
|
||||||
"&cThat expansion does not have placeholders listed.");
|
"&cThe expansion specified does not have placeholders listed.");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,3 +1,23 @@
|
|||||||
|
/*
|
||||||
|
* This file is part of PlaceholderAPI
|
||||||
|
*
|
||||||
|
* PlaceholderAPI
|
||||||
|
* Copyright (c) 2015 - 2020 PlaceholderAPI Team
|
||||||
|
*
|
||||||
|
* PlaceholderAPI free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* PlaceholderAPI is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
package me.clip.placeholderapi.commands.impl.local;
|
package me.clip.placeholderapi.commands.impl.local;
|
||||||
|
|
||||||
import com.google.common.io.CharStreams;
|
import com.google.common.io.CharStreams;
|
||||||
|
@ -47,7 +47,7 @@ public final class CommandHelp extends PlaceholderCommand
|
|||||||
Msg.msg(sender,
|
Msg.msg(sender,
|
||||||
"&b&lPlaceholderAPI &8- &7Help Menu &8- &7(&f" + description.getVersion() + "&7)",
|
"&b&lPlaceholderAPI &8- &7Help Menu &8- &7(&f" + description.getVersion() + "&7)",
|
||||||
" ",
|
" ",
|
||||||
"&b/papi",
|
"&b/papi &fversion",
|
||||||
" &7&oView plugin info/version",
|
" &7&oView plugin info/version",
|
||||||
"&b/papi &freload",
|
"&b/papi &freload",
|
||||||
" &7&oReload the config of PAPI",
|
" &7&oReload the config of PAPI",
|
||||||
@ -61,12 +61,14 @@ public final class CommandHelp extends PlaceholderCommand
|
|||||||
" &7&oParse a message with placeholders and broadcast it",
|
" &7&oParse a message with placeholders and broadcast it",
|
||||||
"&b/papi &fparserel &9<player one> <player two> <message>",
|
"&b/papi &fparserel &9<player one> <player two> <message>",
|
||||||
" &7&oParse a message with relational placeholders",
|
" &7&oParse a message with relational placeholders",
|
||||||
|
"&b/papi &fcmdparse &9<me/player> <command with placeholders>",
|
||||||
|
" &7&oParse a message with relational placeholders",
|
||||||
"&b/papi &fregister &9<file name>",
|
"&b/papi &fregister &9<file name>",
|
||||||
" &7&oRegister an expansion by the name of the file",
|
" &7&oRegister an expansion by the name of the file",
|
||||||
"&b/papi &funregister &9<expansion name>",
|
"&b/papi &funregister &9<expansion name>",
|
||||||
" &7&oUnregister an expansion by name",
|
" &7&oUnregister an expansion by name",
|
||||||
"&b/papi &fdump",
|
"&b/papi &fdump",
|
||||||
" &7&oTake a dump and send it to Sxtanna or someone else in HelpChat");
|
" &7&oDump all relevant information needed to help debug issues into a paste link.");
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -48,15 +48,15 @@ public final class CommandList extends PlaceholderCommand
|
|||||||
final Set<String> identifiers = PlaceholderAPI.getRegisteredIdentifiers();
|
final Set<String> identifiers = PlaceholderAPI.getRegisteredIdentifiers();
|
||||||
if (identifiers.isEmpty())
|
if (identifiers.isEmpty())
|
||||||
{
|
{
|
||||||
Msg.msg(sender, "&6There are no placeholder hooks active!");
|
Msg.msg(sender, "&cThere are no placeholder hooks active!");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
final List<List<String>> partitions = Lists.partition(identifiers.stream().sorted().collect(Collectors.toList()), 10);
|
final List<List<String>> partitions = Lists.partition(identifiers.stream().sorted().collect(Collectors.toList()), 10);
|
||||||
|
|
||||||
Msg.msg(sender,
|
Msg.msg(sender,
|
||||||
"&6" + identifiers.size() + "&7 placeholder hook(s) active: &a",
|
"&7A total of &f" + identifiers.size() + "&7 placeholder hook(s) are active: &a",
|
||||||
partitions.stream().map(partition -> " " + String.join(", ", partition)).collect(Collectors.joining("\n")));
|
partitions.stream().map(partition -> String.join("&7, &a", partition)).collect(Collectors.joining("\n")));
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -155,14 +155,14 @@ public final class CommandParse extends PlaceholderCommand
|
|||||||
final OfflinePlayer targetOne = resolvePlayer(params.get(0));
|
final OfflinePlayer targetOne = resolvePlayer(params.get(0));
|
||||||
if (targetOne == null || !targetOne.isOnline())
|
if (targetOne == null || !targetOne.isOnline())
|
||||||
{
|
{
|
||||||
Msg.msg(sender, "&cFailed to find player: &7" + params.get(0));
|
Msg.msg(sender, "&cFailed to find player: &f" + params.get(0));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
final OfflinePlayer targetTwo = resolvePlayer(params.get(1));
|
final OfflinePlayer targetTwo = resolvePlayer(params.get(1));
|
||||||
if (targetTwo == null || !targetTwo.isOnline())
|
if (targetTwo == null || !targetTwo.isOnline())
|
||||||
{
|
{
|
||||||
Msg.msg(sender, "&cFailed to find player: &7" + params.get(1));
|
Msg.msg(sender, "&cFailed to find player: &f" + params.get(1));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user