|
|
@ -3,14 +3,17 @@ import org.bukkit.OfflinePlayer; |
|
|
|
import org.bukkit.World; |
|
|
|
import org.bukkit.World; |
|
|
|
import org.bukkit.entity.Player; |
|
|
|
import org.bukkit.entity.Player; |
|
|
|
import ru.simsonic.rscPermissions.BridgeForBukkitAPI; |
|
|
|
import ru.simsonic.rscPermissions.BridgeForBukkitAPI; |
|
|
|
|
|
|
|
import ru.simsonic.rscPermissions.BukkitPluginMain; |
|
|
|
|
|
|
|
|
|
|
|
public final class VaultChat extends net.milkbowl.vault.chat.Chat |
|
|
|
public final class VaultChat extends net.milkbowl.vault.chat.Chat |
|
|
|
{ |
|
|
|
{ |
|
|
|
private final BridgeForBukkitAPI bridge; |
|
|
|
private final BridgeForBukkitAPI bridge; |
|
|
|
|
|
|
|
private final BukkitPluginMain rscp; |
|
|
|
public VaultChat(BridgeForBukkitAPI bridge, net.milkbowl.vault.permission.Permission perms) |
|
|
|
public VaultChat(BridgeForBukkitAPI bridge, net.milkbowl.vault.permission.Permission perms) |
|
|
|
{ |
|
|
|
{ |
|
|
|
super(perms); |
|
|
|
super(perms); |
|
|
|
this.bridge = bridge; |
|
|
|
this.bridge = bridge; |
|
|
|
|
|
|
|
this.rscp = (BukkitPluginMain)bridge.getPlugin(); |
|
|
|
} |
|
|
|
} |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public String getName() |
|
|
|
public String getName() |
|
|
@ -25,336 +28,338 @@ public final class VaultChat extends net.milkbowl.vault.chat.Chat |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public String getPlayerPrefix(String world, String player) |
|
|
|
public String getPlayerPrefix(String world, String player) |
|
|
|
{ |
|
|
|
{ |
|
|
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry."); |
|
|
|
final Player online = bridge.findPlayer(player); |
|
|
|
|
|
|
|
return online != null ? rscp.permissionManager.getPlayerPrefix(online) : null; |
|
|
|
} |
|
|
|
} |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public void setPlayerPrefix(String world, String player, String prefix) |
|
|
|
public String getPlayerSuffix(String world, String player) |
|
|
|
{ |
|
|
|
{ |
|
|
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry."); |
|
|
|
final Player online = bridge.findPlayer(player); |
|
|
|
|
|
|
|
return online != null ? rscp.permissionManager.getPlayerSuffix(online) : null; |
|
|
|
} |
|
|
|
} |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public String getPlayerSuffix(String world, String player) |
|
|
|
public void setPlayerPrefix(String world, String player, String prefix) |
|
|
|
{ |
|
|
|
{ |
|
|
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry."); |
|
|
|
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
|
|
|
} |
|
|
|
} |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public void setPlayerSuffix(String world, String player, String suffix) |
|
|
|
public void setPlayerSuffix(String world, String player, String suffix) |
|
|
|
{ |
|
|
|
{ |
|
|
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry."); |
|
|
|
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
|
|
|
} |
|
|
|
} |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public String getGroupPrefix(String world, String group) |
|
|
|
public String getGroupPrefix(String world, String group) |
|
|
|
{ |
|
|
|
{ |
|
|
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry."); |
|
|
|
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
|
|
|
} |
|
|
|
} |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public void setGroupPrefix(String world, String group, String prefix) |
|
|
|
public void setGroupPrefix(String world, String group, String prefix) |
|
|
|
{ |
|
|
|
{ |
|
|
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry."); |
|
|
|
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
|
|
|
} |
|
|
|
} |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public String getGroupSuffix(String world, String group) |
|
|
|
public String getGroupSuffix(String world, String group) |
|
|
|
{ |
|
|
|
{ |
|
|
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry."); |
|
|
|
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
|
|
|
} |
|
|
|
} |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public void setGroupSuffix(String world, String group, String suffix) |
|
|
|
public void setGroupSuffix(String world, String group, String suffix) |
|
|
|
{ |
|
|
|
{ |
|
|
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry."); |
|
|
|
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
|
|
|
} |
|
|
|
} |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public int getPlayerInfoInteger(String world, String player, String node, int defaultValue) |
|
|
|
public String getPlayerPrefix(String world, OfflinePlayer player) |
|
|
|
{ |
|
|
|
{ |
|
|
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry."); |
|
|
|
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
|
|
|
} |
|
|
|
} |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public void setPlayerInfoInteger(String world, String player, String node, int value) |
|
|
|
public String getPlayerPrefix(Player player) |
|
|
|
{ |
|
|
|
{ |
|
|
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry."); |
|
|
|
return rscp.permissionManager.getPlayerPrefix(player); |
|
|
|
} |
|
|
|
} |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public int getGroupInfoInteger(String world, String group, String node, int defaultValue) |
|
|
|
public void setPlayerPrefix(String world, OfflinePlayer player, String prefix) |
|
|
|
{ |
|
|
|
{ |
|
|
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry."); |
|
|
|
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
|
|
|
} |
|
|
|
} |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public void setGroupInfoInteger(String world, String group, String node, int value) |
|
|
|
public void setPlayerPrefix(Player player, String prefix) |
|
|
|
{ |
|
|
|
{ |
|
|
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry."); |
|
|
|
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
|
|
|
} |
|
|
|
} |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public double getPlayerInfoDouble(String world, String player, String node, double defaultValue) |
|
|
|
public String getPlayerSuffix(String world, OfflinePlayer player) |
|
|
|
{ |
|
|
|
{ |
|
|
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry."); |
|
|
|
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
|
|
|
} |
|
|
|
} |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public void setPlayerInfoDouble(String world, String player, String node, double value) |
|
|
|
public String getPlayerSuffix(Player player) |
|
|
|
{ |
|
|
|
{ |
|
|
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry."); |
|
|
|
return rscp.permissionManager.getPlayerSuffix(player); |
|
|
|
} |
|
|
|
} |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public double getGroupInfoDouble(String world, String group, String node, double defaultValue) |
|
|
|
public void setPlayerSuffix(String world, OfflinePlayer player, String suffix) |
|
|
|
{ |
|
|
|
{ |
|
|
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry."); |
|
|
|
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
|
|
|
} |
|
|
|
} |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public void setGroupInfoDouble(String world, String group, String node, double value) |
|
|
|
public void setPlayerSuffix(Player player, String suffix) |
|
|
|
{ |
|
|
|
{ |
|
|
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry."); |
|
|
|
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
|
|
|
} |
|
|
|
} |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public boolean getPlayerInfoBoolean(String world, String player, String node, boolean defaultValue) |
|
|
|
public String getGroupPrefix(World world, String group) |
|
|
|
{ |
|
|
|
{ |
|
|
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry."); |
|
|
|
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
|
|
|
} |
|
|
|
} |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public void setPlayerInfoBoolean(String world, String player, String node, boolean value) |
|
|
|
public void setGroupPrefix(World world, String group, String prefix) |
|
|
|
{ |
|
|
|
{ |
|
|
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry."); |
|
|
|
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
|
|
|
} |
|
|
|
} |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public boolean getGroupInfoBoolean(String world, String group, String node, boolean defaultValue) |
|
|
|
public String getGroupSuffix(World world, String group) |
|
|
|
{ |
|
|
|
{ |
|
|
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry."); |
|
|
|
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
|
|
|
} |
|
|
|
} |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public void setGroupInfoBoolean(String world, String group, String node, boolean value) |
|
|
|
public void setGroupSuffix(World world, String group, String suffix) |
|
|
|
{ |
|
|
|
{ |
|
|
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry."); |
|
|
|
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
|
|
|
} |
|
|
|
} |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public String getPlayerInfoString(String world, String player, String node, String defaultValue) |
|
|
|
public boolean playerInGroup(String world, OfflinePlayer player, String group) |
|
|
|
{ |
|
|
|
{ |
|
|
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry."); |
|
|
|
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
|
|
|
} |
|
|
|
} |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public void setPlayerInfoString(String world, String player, String node, String value) |
|
|
|
public boolean playerInGroup(Player player, String group) |
|
|
|
{ |
|
|
|
{ |
|
|
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry."); |
|
|
|
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
|
|
|
} |
|
|
|
} |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public String getGroupInfoString(String world, String group, String node, String defaultValue) |
|
|
|
public String[] getPlayerGroups(String world, OfflinePlayer player) |
|
|
|
{ |
|
|
|
{ |
|
|
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry."); |
|
|
|
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
|
|
|
} |
|
|
|
} |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public void setGroupInfoString(String world, String group, String node, String value) |
|
|
|
public String[] getPlayerGroups(Player player) |
|
|
|
{ |
|
|
|
{ |
|
|
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry."); |
|
|
|
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
|
|
|
} |
|
|
|
} |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public String getPlayerPrefix(String world, OfflinePlayer player) |
|
|
|
public String getPrimaryGroup(String world, OfflinePlayer player) |
|
|
|
{ |
|
|
|
{ |
|
|
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry."); |
|
|
|
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
|
|
|
} |
|
|
|
} |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public String getPlayerPrefix(Player player) |
|
|
|
public String getPrimaryGroup(Player player) |
|
|
|
{ |
|
|
|
{ |
|
|
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry."); |
|
|
|
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
|
|
|
} |
|
|
|
} |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public void setPlayerPrefix(String world, OfflinePlayer player, String prefix) |
|
|
|
public String[] getGroups() |
|
|
|
{ |
|
|
|
{ |
|
|
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry."); |
|
|
|
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
|
|
|
} |
|
|
|
} |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public void setPlayerPrefix(Player player, String prefix) |
|
|
|
public int getPlayerInfoInteger(String world, String player, String node, int defaultValue) |
|
|
|
{ |
|
|
|
{ |
|
|
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry."); |
|
|
|
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
|
|
|
} |
|
|
|
} |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public String getPlayerSuffix(String world, OfflinePlayer player) |
|
|
|
public void setPlayerInfoInteger(String world, String player, String node, int value) |
|
|
|
{ |
|
|
|
{ |
|
|
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry."); |
|
|
|
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
|
|
|
} |
|
|
|
} |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public String getPlayerSuffix(Player player) |
|
|
|
public int getGroupInfoInteger(String world, String group, String node, int defaultValue) |
|
|
|
{ |
|
|
|
{ |
|
|
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry."); |
|
|
|
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
|
|
|
} |
|
|
|
} |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public void setPlayerSuffix(String world, OfflinePlayer player, String suffix) |
|
|
|
public void setGroupInfoInteger(String world, String group, String node, int value) |
|
|
|
{ |
|
|
|
{ |
|
|
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry."); |
|
|
|
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
|
|
|
} |
|
|
|
} |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public void setPlayerSuffix(Player player, String suffix) |
|
|
|
public double getPlayerInfoDouble(String world, String player, String node, double defaultValue) |
|
|
|
{ |
|
|
|
{ |
|
|
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry."); |
|
|
|
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
|
|
|
} |
|
|
|
} |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public String getGroupPrefix(World world, String group) |
|
|
|
public void setPlayerInfoDouble(String world, String player, String node, double value) |
|
|
|
{ |
|
|
|
{ |
|
|
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry."); |
|
|
|
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
|
|
|
} |
|
|
|
} |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public void setGroupPrefix(World world, String group, String prefix) |
|
|
|
public double getGroupInfoDouble(String world, String group, String node, double defaultValue) |
|
|
|
{ |
|
|
|
{ |
|
|
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry."); |
|
|
|
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
|
|
|
} |
|
|
|
} |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public String getGroupSuffix(World world, String group) |
|
|
|
public void setGroupInfoDouble(String world, String group, String node, double value) |
|
|
|
{ |
|
|
|
{ |
|
|
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry."); |
|
|
|
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
|
|
|
} |
|
|
|
} |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public void setGroupSuffix(World world, String group, String suffix) |
|
|
|
public boolean getPlayerInfoBoolean(String world, String player, String node, boolean defaultValue) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
|
|
|
|
public void setPlayerInfoBoolean(String world, String player, String node, boolean value) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
|
|
|
|
public boolean getGroupInfoBoolean(String world, String group, String node, boolean defaultValue) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
|
|
|
|
public void setGroupInfoBoolean(String world, String group, String node, boolean value) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
|
|
|
|
public String getPlayerInfoString(String world, String player, String node, String defaultValue) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
|
|
|
|
public void setPlayerInfoString(String world, String player, String node, String value) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
|
|
|
|
public String getGroupInfoString(String world, String group, String node, String defaultValue) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
|
|
|
|
public void setGroupInfoString(String world, String group, String node, String value) |
|
|
|
{ |
|
|
|
{ |
|
|
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry."); |
|
|
|
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
|
|
|
} |
|
|
|
} |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public int getPlayerInfoInteger(String world, OfflinePlayer player, String node, int defaultValue) |
|
|
|
public int getPlayerInfoInteger(String world, OfflinePlayer player, String node, int defaultValue) |
|
|
|
{ |
|
|
|
{ |
|
|
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry."); |
|
|
|
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
|
|
|
} |
|
|
|
} |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public int getPlayerInfoInteger(Player player, String node, int defaultValue) |
|
|
|
public int getPlayerInfoInteger(Player player, String node, int defaultValue) |
|
|
|
{ |
|
|
|
{ |
|
|
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry."); |
|
|
|
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
|
|
|
} |
|
|
|
} |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public void setPlayerInfoInteger(String world, OfflinePlayer player, String node, int value) |
|
|
|
public void setPlayerInfoInteger(String world, OfflinePlayer player, String node, int value) |
|
|
|
{ |
|
|
|
{ |
|
|
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry."); |
|
|
|
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
|
|
|
} |
|
|
|
} |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public void setPlayerInfoInteger(Player player, String node, int value) |
|
|
|
public void setPlayerInfoInteger(Player player, String node, int value) |
|
|
|
{ |
|
|
|
{ |
|
|
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry."); |
|
|
|
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
|
|
|
} |
|
|
|
} |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public int getGroupInfoInteger(World world, String group, String node, int defaultValue) |
|
|
|
public int getGroupInfoInteger(World world, String group, String node, int defaultValue) |
|
|
|
{ |
|
|
|
{ |
|
|
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry."); |
|
|
|
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
|
|
|
} |
|
|
|
} |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public void setGroupInfoInteger(World world, String group, String node, int value) |
|
|
|
public void setGroupInfoInteger(World world, String group, String node, int value) |
|
|
|
{ |
|
|
|
{ |
|
|
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry."); |
|
|
|
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
|
|
|
} |
|
|
|
} |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public double getPlayerInfoDouble(String world, OfflinePlayer player, String node, double defaultValue) |
|
|
|
public double getPlayerInfoDouble(String world, OfflinePlayer player, String node, double defaultValue) |
|
|
|
{ |
|
|
|
{ |
|
|
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry."); |
|
|
|
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
|
|
|
} |
|
|
|
} |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public double getPlayerInfoDouble(Player player, String node, double defaultValue) |
|
|
|
public double getPlayerInfoDouble(Player player, String node, double defaultValue) |
|
|
|
{ |
|
|
|
{ |
|
|
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry."); |
|
|
|
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
|
|
|
} |
|
|
|
} |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public void setPlayerInfoDouble(String world, OfflinePlayer player, String node, double value) |
|
|
|
public void setPlayerInfoDouble(String world, OfflinePlayer player, String node, double value) |
|
|
|
{ |
|
|
|
{ |
|
|
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry."); |
|
|
|
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
|
|
|
} |
|
|
|
} |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public void setPlayerInfoDouble(Player player, String node, double value) |
|
|
|
public void setPlayerInfoDouble(Player player, String node, double value) |
|
|
|
{ |
|
|
|
{ |
|
|
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry."); |
|
|
|
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
|
|
|
} |
|
|
|
} |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public double getGroupInfoDouble(World world, String group, String node, double defaultValue) |
|
|
|
public double getGroupInfoDouble(World world, String group, String node, double defaultValue) |
|
|
|
{ |
|
|
|
{ |
|
|
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry."); |
|
|
|
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
|
|
|
} |
|
|
|
} |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public void setGroupInfoDouble(World world, String group, String node, double value) |
|
|
|
public void setGroupInfoDouble(World world, String group, String node, double value) |
|
|
|
{ |
|
|
|
{ |
|
|
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry."); |
|
|
|
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
|
|
|
} |
|
|
|
} |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public boolean getPlayerInfoBoolean(String world, OfflinePlayer player, String node, boolean defaultValue) |
|
|
|
public boolean getPlayerInfoBoolean(String world, OfflinePlayer player, String node, boolean defaultValue) |
|
|
|
{ |
|
|
|
{ |
|
|
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry."); |
|
|
|
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
|
|
|
} |
|
|
|
} |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public boolean getPlayerInfoBoolean(Player player, String node, boolean defaultValue) |
|
|
|
public boolean getPlayerInfoBoolean(Player player, String node, boolean defaultValue) |
|
|
|
{ |
|
|
|
{ |
|
|
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry."); |
|
|
|
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
|
|
|
} |
|
|
|
} |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public void setPlayerInfoBoolean(String world, OfflinePlayer player, String node, boolean value) |
|
|
|
public void setPlayerInfoBoolean(String world, OfflinePlayer player, String node, boolean value) |
|
|
|
{ |
|
|
|
{ |
|
|
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry."); |
|
|
|
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
|
|
|
} |
|
|
|
} |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public void setPlayerInfoBoolean(Player player, String node, boolean value) |
|
|
|
public void setPlayerInfoBoolean(Player player, String node, boolean value) |
|
|
|
{ |
|
|
|
{ |
|
|
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry."); |
|
|
|
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
|
|
|
} |
|
|
|
} |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public boolean getGroupInfoBoolean(World world, String group, String node, boolean defaultValue) |
|
|
|
public boolean getGroupInfoBoolean(World world, String group, String node, boolean defaultValue) |
|
|
|
{ |
|
|
|
{ |
|
|
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry."); |
|
|
|
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
|
|
|
} |
|
|
|
} |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public void setGroupInfoBoolean(World world, String group, String node, boolean value) |
|
|
|
public void setGroupInfoBoolean(World world, String group, String node, boolean value) |
|
|
|
{ |
|
|
|
{ |
|
|
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry."); |
|
|
|
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
|
|
|
} |
|
|
|
} |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public String getPlayerInfoString(String world, OfflinePlayer player, String node, String defaultValue) |
|
|
|
public String getPlayerInfoString(String world, OfflinePlayer player, String node, String defaultValue) |
|
|
|
{ |
|
|
|
{ |
|
|
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry."); |
|
|
|
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
|
|
|
} |
|
|
|
} |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public String getPlayerInfoString(Player player, String node, String defaultValue) |
|
|
|
public String getPlayerInfoString(Player player, String node, String defaultValue) |
|
|
|
{ |
|
|
|
{ |
|
|
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry."); |
|
|
|
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
|
|
|
} |
|
|
|
} |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public void setPlayerInfoString(String world, OfflinePlayer player, String node, String value) |
|
|
|
public void setPlayerInfoString(String world, OfflinePlayer player, String node, String value) |
|
|
|
{ |
|
|
|
{ |
|
|
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry."); |
|
|
|
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
|
|
|
} |
|
|
|
} |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public void setPlayerInfoString(Player player, String node, String value) |
|
|
|
public void setPlayerInfoString(Player player, String node, String value) |
|
|
|
{ |
|
|
|
{ |
|
|
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry."); |
|
|
|
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
|
|
|
} |
|
|
|
} |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public String getGroupInfoString(World world, String group, String node, String defaultValue) |
|
|
|
public String getGroupInfoString(World world, String group, String node, String defaultValue) |
|
|
|
{ |
|
|
|
{ |
|
|
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry."); |
|
|
|
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
|
|
|
} |
|
|
|
} |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public void setGroupInfoString(World world, String group, String node, String value) |
|
|
|
public void setGroupInfoString(World world, String group, String node, String value) |
|
|
|
{ |
|
|
|
{ |
|
|
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry."); |
|
|
|
throw new UnsupportedOperationException("This method is unsupported by rscPermissions."); |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
|
|
|
|
public boolean playerInGroup(String world, OfflinePlayer player, String group) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry."); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
|
|
|
|
public boolean playerInGroup(Player player, String group) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry."); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
|
|
|
|
public String[] getPlayerGroups(String world, OfflinePlayer player) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry."); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
|
|
|
|
public String[] getPlayerGroups(Player player) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry."); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
|
|
|
|
public String getPrimaryGroup(String world, OfflinePlayer player) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry."); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
|
|
|
|
public String getPrimaryGroup(Player player) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry."); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
|
|
|
|
public String[] getGroups() |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
throw new UnsupportedOperationException("This method is still unsupported. Sorry."); |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|