Economy.createBank(String, OfflinePlayer)
instead.
Creates a bank account with the specified name and the player as the ownerEconomy.createPlayerAccount(OfflinePlayer)
instead.
Attempts to create a player account for the given playerEconomy.createPlayerAccount(OfflinePlayer, String)
instead.
Attempts to create a player account for the given player on the specified world
IMPLEMENTATION SPECIFIC - if an economy plugin does not support this the global balance will be returned.Economy.depositPlayer(OfflinePlayer, double)
instead.
Deposit an amount to a player - DO NOT USE NEGATIVE AMOUNTSEconomy.depositPlayer(OfflinePlayer, String, double)
instead.
Deposit an amount to a player - DO NOT USE NEGATIVE AMOUNTS
IMPLEMENTATION SPECIFIC - if an economy plugin does not support this the global balance will be returned.Economy.getBalance(OfflinePlayer)
instead.
Gets balance of a playerEconomy.getBalance(OfflinePlayer, String)
instead.
Gets balance of a player on the specified world.
IMPLEMENTATION SPECIFIC - if an economy plugin does not support this the global balance will be returned.getPlayerGroups(String, OfflinePlayer)
instead.
Gets the list of groups that this player hasgetPlayerGroups(String, OfflinePlayer)
instead.
Gets the list of groups that this player hasPermission.getPlayerGroups(String, OfflinePlayer)
instead.
Gets the list of groups that this player has.
Supports NULL value for World if the permission system registered supports global permissions.
But May return odd values if the servers registered permission system does not have a global permission store.Permission.getPlayerGroups(String, OfflinePlayer)
instead.
Gets the list of groups that this player has
Supports NULL value for World if the permission system registered supports global permissions.
But May return odd values if the servers registered permission system does not have a global permission store.getPlayerInfoBoolean(String, OfflinePlayer, String, boolean)
instead.
Get a players informational node (Boolean) valuegetPlayerInfoBoolean(String, OfflinePlayer, String, boolean)
instead.
Get a players informational node (Boolean) valuegetPlayerInfoDouble(String, OfflinePlayer, String, double)
instead.
Get a players informational node (Double) valuegetPlayerInfoDouble(String, OfflinePlayer, String, double)
instead
Get a players informational node (Double) valuegetPlayerInfoInteger(String, OfflinePlayer, String, int)
instead.
Get a players informational node (Integer) valuegetPlayerInfoInteger(String, OfflinePlayer, String, int)
instead.
Get a players informational node (Integer) valuegetPlayerInfoString(String, OfflinePlayer, String, String)
instead.
Get a players informational node (String) valuegetPlayerInfoString(String, OfflinePlayer, String, String)
instead.
Get a players informational node (String) valuegetPlayerPrefix(String, OfflinePlayer)
instead.
Get players prefixgetPlayerPrefix(String, OfflinePlayer)
instead.
Get players prefixgetPlayerSuffix(String, OfflinePlayer)
instead.
Get players suffixgetPlayerSuffix(String, OfflinePlayer)
instead.
Get players suffixgetPrimaryGroup(String, OfflinePlayer)
instead.
Gets players primary groupgetPrimaryGroup(String, OfflinePlayer)
instead.
Gets players primary groupPermission.getPrimaryGroup(String, OfflinePlayer)
instead.
Gets players primary group
Supports NULL value for World if the permission system registered supports global permissions.
But May return odd values if the servers registered permission system does not have a global permission store.Permission.getPrimaryGroup(String, OfflinePlayer)
instead.
Gets players primary group
Supports NULL value for World if the permission system registered supports global permissions.
But May return odd values if the servers registered permission system does not have a global permission store.Economy.has(OfflinePlayer, double)
instead.
Checks if the player account has the amount - DO NOT USE NEGATIVE AMOUNTSEconomy.has(OfflinePlayer, String, double)
instead.
Checks if the player account has the amount in a given world - DO NOT USE NEGATIVE AMOUNTS
IMPLEMENTATION SPECIFIC - if an economy plugin does not support this the global balance will be returned.Permission.playerHas(String, OfflinePlayer, String)
instead.
Checks if player has a permission node. (Short for playerHas(...)
Supports NULL value for World if the permission system registered supports global permissions.
But May return odd values if the servers registered permission system does not have a global permission store.Permission.playerHas(String, OfflinePlayer, String)
instead.
Checks if player has a permission node. (Short for playerHas(...)
Supports NULL value for World if the permission system registered supports global permissions.
But May return odd values if the servers registered permission system does not have a global permission store.Economy.hasAccount(OfflinePlayer)
instead.
Checks if this player has an account on the server yet
This will always return true if the player has joined the server at least once
as all major economy plugins auto-generate a player account when the player joins the serverEconomy.hasAccount(OfflinePlayer, String)
instead.
Checks if this player has an account on the server yet on the given world
This will always return true if the player has joined the server at least once
as all major economy plugins auto-generate a player account when the player joins the serverEconomy.isBankMember(String, OfflinePlayer)
instead.
Check if the player is a member of the bank accountEconomy.isBankOwner(String, OfflinePlayer)
instead.
Check if a player is the owner of a bank accountPermission.playerAdd(String, OfflinePlayer, String)
instead.
Add permission to a player.
Supports NULL value for World if the permission system registered supports global permissions.
But May return odd values if the servers registered permission system does not have a global permission store.Permission.playerAdd(String, OfflinePlayer, String)
instead.
Add permission to a player.
Supports NULL value for World if the permission system registered supports global permissions.
But May return odd values if the servers registered permission system does not have a global permission store.Permission.playerAddGroup(String, OfflinePlayer, String)
instead.
Add player to a group.
Supports NULL value for World if the permission system registered supports global permissions.
But May return odd values if the servers registered permission system does not have a global permission store.Permission.playerAddGroup(String, OfflinePlayer, String)
instead.
Add player to a group.
Supports NULL value for World if the permission system registered supports global permissions.
But May return odd values if the servers registered permission system does not have a global permission store.Permission.playerAddTransient(OfflinePlayer, String)
instead.
Add transient permission to a player.
This implementation can be used by any subclass which implements a "pure" superperms plugin, i.e.
one that only needs the built-in Bukkit API to add transient permissions to a player. Any subclass
implementing a plugin which provides its own API for this needs to override this method.Permission.playerAddTransient(String, OfflinePlayer, String)
instead.
Adds a world specific transient permission to the player - ONLY WORKS IN PEX/P3 - otherwise it defaults to GLOBAL!Permission.playerHas(String, OfflinePlayer, String)
instead.
Checks if player has a permission node.
Supports NULL value for World if the permission system registered supports global permissions.
But May return odd values if the servers registered permission system does not have a global permission store.Permission.playerHas(String, OfflinePlayer, String)
instead.
Checks if player has a permission node.
Supports NULL value for World if the permission system registered supports global permissions.
But May return odd values if the servers registered permission system does not have a global permission store.playerInGroup(String, OfflinePlayer, String)
instead.
Check if player is member of a group.playerInGroup(String, OfflinePlayer, String)
instead.
Check if player is member of a group.Permission.playerInGroup(String, OfflinePlayer, String)
instead.
Check if player is member of a group.
Supports NULL value for World if the permission system registered supports global permissions.
But May return odd values if the servers registered permission system does not have a global permission store.
This method is known to return unexpected results depending on what permission system is being used. Different permission systems
will store the player groups differently, It is HIGHLY suggested you test your code out first.Permission.playerInGroup(String, OfflinePlayer, String)
instead.
Check if player is member of a group.
Supports NULL value for World if the permission system registered supports global permissions.
But May return odd values if the servers registered permission system does not have a global permission store.Permission.playerRemove(String, OfflinePlayer, String)
instead.
Remove permission from a player.Permission.playerRemoveGroup(String, OfflinePlayer, String)
instead.
Remove player from a group.
Supports NULL value for World if the permission system registered supports global permissions.
But May return odd values if the servers registered permission system does not have a global permission store.Permission.playerRemoveGroup(String, OfflinePlayer, String)
instead.
Remove player from a group.
Supports NULL value for World if the permission system registered supports global permissions.
But May return odd values if the servers registered permission system does not have a global permission store.Permission.playerRemoveTransient(String, OfflinePlayer, String)
instead.
Removes a world specific transient permission from the player - Only works in PEX/P3 - otherwise it defaults to Global!Permission.playerRemoveTransient(OfflinePlayer, String)
instead.
Remove transient permission from a player.
This implementation can be used by any subclass which implements a "pure" superperms plugin, i.e.
one that only needs the built-in Bukkit API to remove transient permissions from a player. Any subclass
implementing a plugin which provides its own API for this needs to override this method.setPlayerInfoBoolean(String, OfflinePlayer, String, boolean)
instead.
Set a players informational node (Boolean) valuesetPlayerInfoBoolean(String, OfflinePlayer, String, boolean)
instead.
Set a players informational node (Boolean) valuesetPlayerInfoDouble(String, OfflinePlayer, String, double)
instead.
Set a players informational node (Double) valuesetPlayerInfoDouble(String, OfflinePlayer, String, double)
instead.
Set a players informational node (Double) valuesetPlayerInfoInteger(String, OfflinePlayer, String, int)
instead.
Set a players informational node (Integer) valuesetPlayerInfoInteger(String, OfflinePlayer, String, int)
instead.
Set a players informational node (Integer) valuesetPlayerInfoString(String, OfflinePlayer, String, String)
instead.
Set a players informational node (String) valuesetPlayerInfoString(String, OfflinePlayer, String, String)
instead.
Set a players informational node (String) valuesetPlayerPrefix(String, OfflinePlayer, String)
instead.
Set players prefixsetPlayerPrefix(String, OfflinePlayer, String)
instead.
Set players prefix in the given world.setPlayerSuffix(String, OfflinePlayer, String)
instead.
Set players suffixsetPlayerSuffix(String, OfflinePlayer, String)
instead.
Set players suffixEconomy.withdrawPlayer(OfflinePlayer, double)
instead.
Withdraw an amount from a player - DO NOT USE NEGATIVE AMOUNTSEconomy.withdrawPlayer(OfflinePlayer, String, double)
instead.
Withdraw an amount from a player on a given world - DO NOT USE NEGATIVE AMOUNTS
IMPLEMENTATION SPECIFIC - if an economy plugin does not support this the global balance will be returned.Milkbowl, 2014