---
title: net.axay.kspigot.extensions.bukkit -
---
//[KSpigot](../index.md)/[net.axay.kspigot.extensions.bukkit](index.md)
# Package net.axay.kspigot.extensions.bukkit
## Functions
| Name| Summary|
|---|---|
| [appear](appear.md)| [jvm]
Brief description
Shows the player for all [onlinePlayers](../net.axay.kspigot.extensions/index.md#net.axay.kspigot.extensions//onlinePlayers/#/PointingToDeclaration/).
Content
fun Player.[appear](appear.md)()
| [disappear](disappear.md)| [jvm]
Brief description
Hides the player for all [onlinePlayers](../net.axay.kspigot.extensions/index.md#net.axay.kspigot.extensions//onlinePlayers/#/PointingToDeclaration/).
Content
fun Player.[disappear](disappear.md)()
| [error](error.md)| [jvm]
Content
fun CommandSender.[error](error.md)(text: [String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html), plugin: Plugin?)
| [feed](feed.md)| [jvm]
Brief description
Sets the players' foodLevel to the max possible value.
Content
fun Player.[feed](feed.md)()
| [feedSaturate](feed-saturate.md)| [jvm]
Brief description
Feeds and saturates the player.
Content
fun Player.[feedSaturate](feed-saturate.md)()
| [getHandItem](get-hand-item.md)| [jvm]
Brief description
Returns the itemInHand of the given EquipmentSlot if it is an hand slot.
Content
fun Player.[getHandItem](get-hand-item.md)(hand: EquipmentSlot?): ItemStack?
| [heal](heal.md)| [jvm]
Brief description
Sets the entities' health to the max possible value.
Content
fun LivingEntity.[heal](heal.md)()
| [info](info.md)| [jvm]
Content
fun CommandSender.[info](info.md)(text: [String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html), plugin: Plugin?)
| [kick](kick.md)| [jvm]
Brief description
Kicks the player from the server.
Content
fun Player.[kick](kick.md)(reason: [String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)?)
| [kill](kill.md)| [jvm]
Brief description
Kills the damageable.
Content
fun Damageable.[kill](kill.md)()
| [print](print.md)| [jvm]
Content
fun CommandSender.[print](print.md)(text: [String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html), plugin: Plugin?)
| [printColoredPrefix](print-colored-prefix.md)| [jvm]
Brief description
Sends the given message and adds the given prefix with the given color to it.
Content
fun CommandSender.[printColoredPrefix](print-colored-prefix.md)(text: [String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html), textColor: ChatColor, prefix: [String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html), prefixColor: ChatColor)
| [saturate](saturate.md)| [jvm]
Brief description
Sets the players' saturation to the current max possible value.
Content
fun Player.[saturate](saturate.md)()
| [spawnCleanEntity](spawn-clean-entity.md)| [jvm]
Brief description
Spawns an entity without any variations in color, type etc...
Content
fun Location.[spawnCleanEntity](spawn-clean-entity.md)(entityType: EntityType): Entity?
| [success](success.md)| [jvm]
Content
fun CommandSender.[success](success.md)(text: [String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html), plugin: Plugin?)
| [title](title.md)| [jvm]
Content
fun Player.[title](title.md)(mainText: [String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)?, subText: [String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)?, fadeIn: [Int](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html), stay: [Int](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html), fadeOut: [Int](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html))
| [warn](warn.md)| [jvm]
Content
fun CommandSender.[warn](warn.md)(text: [String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html), plugin: Plugin?)
## Properties
| Name| Summary|
|---|---|
| [isDamageable](index.md#net.axay.kspigot.extensions.bukkit//isDamageable/org.bukkit.GameMode#/PointingToDeclaration/)| [jvm]
val GameMode.[isDamageable](index.md#net.axay.kspigot.extensions.bukkit//isDamageable/org.bukkit.GameMode#/PointingToDeclaration/): [Boolean](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html)
| [isFeetInWater](index.md#net.axay.kspigot.extensions.bukkit//isFeetInWater/org.bukkit.entity.Entity#/PointingToDeclaration/)| [jvm]
Checks if the entities' feet are in water.
val Entity.[isFeetInWater](index.md#net.axay.kspigot.extensions.bukkit//isFeetInWater/org.bukkit.entity.Entity#/PointingToDeclaration/): [Boolean](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html)
| [isGroundSolid](index.md#net.axay.kspigot.extensions.bukkit//isGroundSolid/org.bukkit.entity.Entity#/PointingToDeclaration/)| [jvm]
Checks if the entity stands on solid ground.
val Entity.[isGroundSolid](index.md#net.axay.kspigot.extensions.bukkit//isGroundSolid/org.bukkit.entity.Entity#/PointingToDeclaration/): [Boolean](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html)
| [isHeadInWater](index.md#net.axay.kspigot.extensions.bukkit//isHeadInWater/org.bukkit.entity.LivingEntity#/PointingToDeclaration/)| [jvm]
Checks if the entities' head is in water.
val LivingEntity.[isHeadInWater](index.md#net.axay.kspigot.extensions.bukkit//isHeadInWater/org.bukkit.entity.LivingEntity#/PointingToDeclaration/): [Boolean](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html)
| [isInWater](index.md#net.axay.kspigot.extensions.bukkit//isInWater/org.bukkit.entity.LivingEntity#/PointingToDeclaration/)| [jvm]
Checks if the entity is completely in water.
val LivingEntity.[isInWater](index.md#net.axay.kspigot.extensions.bukkit//isInWater/org.bukkit.entity.LivingEntity#/PointingToDeclaration/): [Boolean](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html)