Package io.papermc.paper.event.player
Class PlayerPurchaseEvent
java.lang.Object
org.bukkit.event.Event
org.bukkit.event.player.PlayerEvent
io.papermc.paper.event.player.PlayerPurchaseEvent
- All Implemented Interfaces:
Cancellable
- Direct Known Subclasses:
PlayerTradeEvent
Called when a player trades with a standalone merchant GUI.
-
Nested Class Summary
Nested classes/interfaces inherited from class org.bukkit.event.Event
Event.Result
-
Field Summary
Fields inherited from class org.bukkit.event.player.PlayerEvent
player
-
Constructor Summary
ConstructorDescriptionPlayerPurchaseEvent
(Player player, MerchantRecipe trade, boolean rewardExp, boolean increaseTradeUses) -
Method Summary
Modifier and TypeMethodDescriptionstatic HandlerList
getTrade()
Gets the associated trade with this eventboolean
Gets the cancellation state of this event.boolean
void
setCancelled
(boolean cancel) Sets the cancellation state of this event.void
setIncreaseTradeUses
(boolean increaseTradeUses) Sets whether the trade will count as a usevoid
setRewardExp
(boolean rewardExp) Sets whether the trade will try to reward expvoid
setTrade
(MerchantRecipe trade) Sets the trade.boolean
Methods inherited from class org.bukkit.event.player.PlayerEvent
getPlayer
Methods inherited from class org.bukkit.event.Event
callEvent, getEventName, isAsynchronous
-
Constructor Details
-
PlayerPurchaseEvent
@Internal public PlayerPurchaseEvent(Player player, MerchantRecipe trade, boolean rewardExp, boolean increaseTradeUses)
-
-
Method Details
-
getTrade
Gets the associated trade with this event- Returns:
- the trade
-
setTrade
Sets the trade. This is then used to determine the next prices- Parameters:
trade
- the trade to use
-
isRewardingExp
public boolean isRewardingExp()- Returns:
- will trade try to reward exp
-
setRewardExp
public void setRewardExp(boolean rewardExp) Sets whether the trade will try to reward exp- Parameters:
rewardExp
- try to reward exp
-
willIncreaseTradeUses
public boolean willIncreaseTradeUses()- Returns:
- whether the trade will count as a use of the trade
-
setIncreaseTradeUses
public void setIncreaseTradeUses(boolean increaseTradeUses) Sets whether the trade will count as a use- Parameters:
increaseTradeUses
-true
to count,false
otherwise
-
isCancelled
public boolean isCancelled()Description copied from interface:Cancellable
Gets the cancellation state of this event. A cancelled event will not be executed in the server, but will still pass to other plugins- Specified by:
isCancelled
in interfaceCancellable
- Returns:
- true if this event is cancelled
-
setCancelled
public void setCancelled(boolean cancel) Description copied from interface:Cancellable
Sets the cancellation state of this event. A cancelled event will not be executed in the server, but will still pass to other plugins.- Specified by:
setCancelled
in interfaceCancellable
- Parameters:
cancel
- true if you wish to cancel this event
-
getHandlers
- Specified by:
getHandlers
in classEvent
-
getHandlerList
-