Class PlayerDamageEvent
java.lang.Object
net.risingworld.api.events.Event
net.risingworld.api.events.player.PlayerEvent
net.risingworld.api.events.player.PlayerDamageEvent
- All Implemented Interfaces:
Cancellable
Called when a player takes damage (e.g fall damage).
Example: Prevent player from taking fall damage
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic enum
Determines why thePlayerDamageEvent
was triggered exactly (i.e what's causing the damage). -
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptiongetCause()
Gets the "cause" of this damage, i.e the reason why the player takes damage (or in other words, what's causing the damage)short
Gets the amount of damage the player will receive.int
Gets the previous amount of health.boolean
Determines if the event is cancelled.void
setCancelled
(boolean cancel) Cancels this event.void
setDamage
(short damage) Sets the amount of damage the player will receive.Methods inherited from class net.risingworld.api.events.player.PlayerEvent
getPlayer
-
Method Details
-
setDamage
public void setDamage(short damage) Sets the amount of damage the player will receive.- Parameters:
damage
- the new damage amount.
-
getDamage
public short getDamage()Gets the amount of damage the player will receive.- Returns:
- the amount of damage.
-
getPreviousHealth
public int getPreviousHealth()Gets the previous amount of health.- Returns:
- the old health of the player.
-
getCause
Gets the "cause" of this damage, i.e the reason why the player takes damage (or in other words, what's causing the damage)- Returns:
- the reason why the player took damage.
- Example: While the player holds an apple in his hands, he should be immune to lava
-
isCancelled
public boolean isCancelled()Description copied from interface:Cancellable
Determines if the event is cancelled. If an event is cancelled, it will no longer be executed, but other plugins will still receive the event.
Please note: If the event is threaded, cancellation has no effect, i.e the event will still be executed.- Specified by:
isCancelled
in interfaceCancellable
- Returns:
- true if the event is cancelled, or false if not.
-
setCancelled
public void setCancelled(boolean cancel) Description copied from interface:Cancellable
Cancels this event. This means it will no longer be executed, but other plugins will still receive the event.- Specified by:
setCancelled
in interfaceCancellable
- Parameters:
cancel
- set to true if you want to cancel this event.- Example: Cancel "PlayerEnterAreaEvent", i.e prevent player from entering an area
-