mirror of
https://github.com/Ne0nx3r0/BetterAlias.git
synced 2024-11-23 12:05:40 +01:00
commit
6e92dfd56f
33
aliases.yml
33
aliases.yml
@ -1,13 +1,19 @@
|
||||
#'dumb' parameter, will just use what you put in
|
||||
# 'dumb' parameter, will just use what you put in
|
||||
banhammer:
|
||||
1: /ban !1
|
||||
#name parameter is replaced with the command users name
|
||||
gmon:
|
||||
|
||||
# name parameter is replaced with the command users name
|
||||
gmon:
|
||||
0: /gamemode creative !name
|
||||
1: /gamemode creative !1
|
||||
gmoff:
|
||||
gmoff:
|
||||
0: /gamemode survival !name
|
||||
1: /gamemode survival !1
|
||||
|
||||
# call command which needs permission with default player
|
||||
day:
|
||||
0: player_as_op /time set 0
|
||||
|
||||
# putting a P after the parameter specifies this is a player, and BA should try to guess which player
|
||||
# useful for things like "/to e0n" instead of "/to Ne0nx3r0"
|
||||
# This will ONLY look for players that are online
|
||||
@ -16,17 +22,18 @@ to:
|
||||
2: /tp !1p !2p
|
||||
bring:
|
||||
1: /tp !1p !name
|
||||
|
||||
# multiple command example
|
||||
# note spaces in an alias go within quotes
|
||||
"tp then kick":
|
||||
"tp then kick":
|
||||
1:
|
||||
- /tp !1p !name
|
||||
- /kick !1p
|
||||
|
||||
# replaced with the item name in the player's hand
|
||||
hand:
|
||||
hand:
|
||||
0: I have a !handItemName in my hand right now!
|
||||
|
||||
|
||||
# replace with the item ID in the player's hand
|
||||
handid:
|
||||
0: /give !name !handItemID
|
||||
@ -38,7 +45,7 @@ gm:
|
||||
# Send everything with a command
|
||||
sendAll:
|
||||
"*": /say !*
|
||||
|
||||
|
||||
# Send everything with a command, but only on certain parameter lengths
|
||||
sendAll:
|
||||
3: /say !*
|
||||
@ -53,7 +60,7 @@ sendAll:
|
||||
# (Also shows how to use the reply modifier to only reply to the player)
|
||||
redText:
|
||||
0: reply Look at my &REDcolored &DARK_GREENtext!
|
||||
|
||||
|
||||
# User must have betteralias.staff permission or be the console.
|
||||
staff:
|
||||
permission: staff
|
||||
@ -61,22 +68,22 @@ staff:
|
||||
- /seen Ne0nx3r0
|
||||
- /seen someOtherStaffMember
|
||||
- /seen someThirdStaffMember
|
||||
|
||||
|
||||
# Console example
|
||||
# If this seems dangerous, that's because it is!
|
||||
#
|
||||
makeOp:
|
||||
# Required permission will be betteralias.your.node
|
||||
permission: your.node
|
||||
permission: your.node
|
||||
# Must be makeOp, not Makeup, makeop, etc.
|
||||
caseSensitive: true
|
||||
caseSensitive: true
|
||||
# Quotes are required because 0 uses a colon (:)
|
||||
0: "reply Usage: /makeOp <username>"
|
||||
1:
|
||||
- console /say !1 has been opped!
|
||||
- console /op !1
|
||||
- /me has opped !1
|
||||
|
||||
|
||||
# Wait example
|
||||
wait:
|
||||
# Quotes are required because 0 uses a colon (:)
|
||||
|
@ -3,6 +3,7 @@ package com.ne0nx3r0.betteralias.alias;
|
||||
public enum AliasCommandTypes
|
||||
{
|
||||
PLAYER,
|
||||
PLAYER_AS_OP,
|
||||
CONSOLE,
|
||||
REPLY_MESSAGE,
|
||||
WAIT,
|
||||
|
@ -107,6 +107,12 @@ public class AliasManager
|
||||
|
||||
sArgLine = sArgLine.substring(sArgLine.indexOf(" ")+1);
|
||||
}
|
||||
else if(sType.equalsIgnoreCase("player_as_op"))
|
||||
{
|
||||
type = AliasCommandTypes.PLAYER_AS_OP;
|
||||
|
||||
sArgLine = sArgLine.substring(sArgLine.indexOf(" ")+1);
|
||||
}
|
||||
else if(sType.equalsIgnoreCase("reply"))
|
||||
{
|
||||
type = AliasCommandTypes.REPLY_MESSAGE;
|
||||
@ -342,7 +348,6 @@ public class AliasManager
|
||||
|
||||
plugin.getServer().getScheduler().runTaskLater(plugin, new Runnable()
|
||||
{
|
||||
@Override
|
||||
public void run()
|
||||
{
|
||||
csWait.sendMessage(message);
|
||||
@ -375,6 +380,35 @@ public class AliasManager
|
||||
"[BetterAlias] "+ChatColor.AQUA+"Running: "+sNewCommand), ac.waitTime);
|
||||
}
|
||||
}
|
||||
else if(ac.type.equals(AliasCommandTypes.PLAYER_AS_OP) && player != null)
|
||||
{
|
||||
AliasManager.plugin.getLogger().log(
|
||||
Level.INFO,
|
||||
"[BetterAlias] {0}Running player_as_op command for {1}: {2}",
|
||||
new Object[] { ChatColor.AQUA, player.getName(), sNewCommand }
|
||||
);
|
||||
|
||||
if(player.isOp() == false)
|
||||
{
|
||||
try
|
||||
{
|
||||
player.setOp(true);
|
||||
AliasManager.plugin.getServer().dispatchCommand(player, sNewCommand.substring(1));
|
||||
}
|
||||
catch(Exception e)
|
||||
{
|
||||
e.printStackTrace();
|
||||
}
|
||||
finally
|
||||
{
|
||||
player.setOp(false);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
AliasManager.plugin.getServer().dispatchCommand(player, sNewCommand.substring(1));
|
||||
}
|
||||
}
|
||||
else if(ac.type.equals(AliasCommandTypes.CONSOLE)
|
||||
|| player == null)
|
||||
{
|
||||
@ -428,7 +462,7 @@ public class AliasManager
|
||||
return null;
|
||||
}
|
||||
|
||||
// Delayed tasks
|
||||
// Delayed tasks
|
||||
private static class waitConsoleCommand implements Runnable
|
||||
{
|
||||
private final String message;
|
||||
@ -440,7 +474,6 @@ public class AliasManager
|
||||
this.command = command;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void run()
|
||||
{
|
||||
plugin.getServer().dispatchCommand(plugin.getServer().getConsoleSender(), command);
|
||||
@ -458,7 +491,6 @@ public class AliasManager
|
||||
this.command = command;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void run()
|
||||
{
|
||||
Player p = plugin.getServer().getPlayer(playerName);
|
||||
|
@ -15,7 +15,6 @@ public class BetterAliasCommandExecutor implements CommandExecutor
|
||||
this.plugin = plugin;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean onCommand(CommandSender cs, Command cmnd, String alias, String[] args)
|
||||
{
|
||||
// To allow nulling server commands out
|
||||
|
Loading…
Reference in New Issue
Block a user