Uses of Interface
konquest.api.model.KonquestPlayer
Packages that use KonquestPlayer
Package
Description
Events related to barbarian camps.
Events related to players.
Events related to ruins.
Events related to all territories.
Events related to towns.
The manager package provides specialized interfaces for specific features in Konquest.
-
Uses of KonquestPlayer in konquest.api.event.camp
Methods in konquest.api.event.camp that return KonquestPlayerModifier and TypeMethodDescriptionKonquestCampCreateEvent.getPlayer()Gets the player that created the camp.KonquestCampDestroyEvent.getPlayer()Gets the player that is destroying the camp's bed.Constructors in konquest.api.event.camp with parameters of type KonquestPlayerModifierConstructorDescriptionKonquestCampCreateEvent(KonquestAPI konquest, KonquestCamp camp, KonquestPlayer player) Default constructorKonquestCampDestroyEvent(KonquestAPI konquest, KonquestCamp camp, KonquestPlayer player, org.bukkit.Location location) Default constructor -
Uses of KonquestPlayer in konquest.api.event.player
Methods in konquest.api.event.player that return KonquestPlayerModifier and TypeMethodDescriptionKonquestPlayerCombatTagEvent.getAttacker()Gets the attacking player.KonquestPlayerEvent.getPlayer()Gets the player associated with the event.Constructors in konquest.api.event.player with parameters of type KonquestPlayerModifierConstructorDescriptionKonquestPlayerCampEvent(KonquestAPI konquest, KonquestPlayer player, org.bukkit.Location location) Default constructorKonquestPlayerCombatTagEvent(KonquestAPI konquest, KonquestPlayer player, KonquestPlayer attacker, org.bukkit.Location location) Default constructorKonquestPlayerEvent(KonquestAPI konquest, KonquestPlayer player) Default constructorKonquestPlayerKingdomEvent(KonquestAPI konquest, KonquestPlayer player, KonquestKingdom newKingdom, KonquestKingdom oldKingdom) Default constructorKonquestPlayerPrefixEvent(KonquestAPI konquest, KonquestPlayer player, String prefix, boolean isDisabled) Default constructorKonquestPlayerSettleEvent(KonquestAPI konquest, KonquestPlayer player, KonquestKingdom kingdom, org.bukkit.Location location, String name) Default constructor -
Uses of KonquestPlayer in konquest.api.event.ruin
Methods in konquest.api.event.ruin that return KonquestPlayerModifier and TypeMethodDescriptionKonquestRuinAttackEvent.getAttacker()Gets the attacking player.KonquestRuinCaptureEvent.getPlayer()Gets the player that captured this ruin.Methods in konquest.api.event.ruin that return types with arguments of type KonquestPlayerModifier and TypeMethodDescriptionList<? extends KonquestPlayer>KonquestRuinCaptureEvent.getRewardPlayers()Gets the list of players that get a reward for capturing the ruin.Constructors in konquest.api.event.ruin with parameters of type KonquestPlayerModifierConstructorDescriptionKonquestRuinAttackEvent(KonquestAPI konquest, KonquestRuin ruin, KonquestPlayer attacker, org.bukkit.block.Block block) Default constructorKonquestRuinCaptureEvent(KonquestAPI konquest, KonquestRuin ruin, KonquestPlayer player, List<? extends KonquestPlayer> rewardPlayers) Default constructorConstructor parameters in konquest.api.event.ruin with type arguments of type KonquestPlayerModifierConstructorDescriptionKonquestRuinCaptureEvent(KonquestAPI konquest, KonquestRuin ruin, KonquestPlayer player, List<? extends KonquestPlayer> rewardPlayers) Default constructor -
Uses of KonquestPlayer in konquest.api.event.territory
Methods in konquest.api.event.territory that return KonquestPlayerModifier and TypeMethodDescriptionKonquestTerritoryMoveEvent.getPlayer()Get the player that moved between territories.Constructors in konquest.api.event.territory with parameters of type KonquestPlayerModifierConstructorDescriptionKonquestTerritoryMoveEvent(KonquestAPI konquest, KonquestTerritory territoryTo, KonquestTerritory territoryFrom, KonquestPlayer player) Default constructor -
Uses of KonquestPlayer in konquest.api.event.town
Methods in konquest.api.event.town that return KonquestPlayerModifier and TypeMethodDescriptionKonquestTownAttackEvent.getAttacker()Gets the attacking player.KonquestTownCaptureEvent.getPlayer()Gets the player that captured this town, and is now the town lord.KonquestTownDestroyEvent.getPlayer()Gets the player that is destroying the town.KonquestTownSettleEvent.getPlayer()Gets the player that settled the town.Constructors in konquest.api.event.town with parameters of type KonquestPlayerModifierConstructorDescriptionKonquestTownAttackEvent(KonquestAPI konquest, KonquestTown town, KonquestPlayer attacker, org.bukkit.block.Block block, boolean isMonument, boolean isCritical) Default constructorKonquestTownCaptureEvent(KonquestAPI konquest, KonquestTown town, KonquestPlayer player, KonquestKingdom newKingdom) Default constructorKonquestTownDestroyEvent(KonquestAPI konquest, KonquestTown town, KonquestPlayer player) Default constructorKonquestTownSettleEvent(KonquestAPI konquest, KonquestTown town, KonquestPlayer player, KonquestKingdom kingdom) Default constructor -
Uses of KonquestPlayer in konquest.api.manager
Methods in konquest.api.manager that return KonquestPlayerModifier and TypeMethodDescriptionKonquestPlayerManager.getPlayer(org.bukkit.entity.Player bukkitPlayer) Gets a Konquest player object from the given Bukkit Player.KonquestPlayerManager.getPlayerFromID(UUID id) Gets a Konquest player object from the given UUID.KonquestPlayerManager.getPlayerFromName(String displayName) Gets a Konquest player object from the given name.Methods in konquest.api.manager that return types with arguments of type KonquestPlayerModifier and TypeMethodDescriptionArrayList<? extends KonquestPlayer>KonquestPlayerManager.getPlayersInKingdom(String kingdomName) Gets the players currently online that are members of the given kingdom name.ArrayList<? extends KonquestPlayer>KonquestPlayerManager.getPlayersInKingdom(KonquestKingdom kingdom) Gets the players currently online that are members of the given kingdom object.Collection<? extends KonquestPlayer>KonquestPlayerManager.getPlayersOnline()Gets all of Konquest's players that are currently online.Methods in konquest.api.manager with parameters of type KonquestPlayerModifier and TypeMethodDescriptionintKonquestKingdomManager.assignPlayerKingdom(KonquestPlayer player, String kingdomName, boolean force) Assign a player to a kingdom and teleport them to the capital spawn point.booleanKonquestKingdomManager.captureTownForPlayer(String name, String oldKingdomName, KonquestPlayer conquerPlayer) Transfers ownership of a town to the given player's kingdom.booleanKonquestKingdomManager.exilePlayer(KonquestPlayer player, boolean teleport, boolean clearStats, boolean isFull) Exiles a player to the Barbarians and teleports to a random Wild location.