Klasse PlayerInventoryItemEditEvent
java.lang.Object
net.risingworld.api.events.Event
net.risingworld.api.events.player.PlayerEvent
net.risingworld.api.events.player.inventory.PlayerInventoryItemEditEvent
- Alle implementierten Schnittstellen:
Cancellable
Called when an item in inventory gets modified. This happens, for example,
if the player changes the shape of a block
-
Verschachtelte Klassen - Übersicht
-
Feldübersicht
-
Konstruktorübersicht
-
Methodenübersicht
Modifizierer und TypMethodeBeschreibungGets the edit type, i.e what causes the item modification exactly.int
Gets the inventory slot.Gets the inventory slot type (e.g quickslot, equipment etc).getItem()
Gets the item.int
Gets the new item texture (if the texture was changed with this action).short
Gets the new type id.boolean
Determines if the event is cancelled.void
setCancelled
(boolean cancel) Cancels this event.void
setNewTexture
(int texture) void
setNewTypeID
(short id) Von Klasse geerbte Methoden net.risingworld.api.events.player.PlayerEvent
getPlayer
-
Konstruktordetails
-
PlayerInventoryItemEditEvent
public PlayerInventoryItemEditEvent(long pointer)
-
-
Methodendetails
-
getItem
Gets the item.- Gibt zurück:
- the item.
-
getInventorySlot
public int getInventorySlot()Gets the inventory slot.- Gibt zurück:
- the item slot in the inventory.
-
getInventorySlotType
Gets the inventory slot type (e.g quickslot, equipment etc).- Gibt zurück:
- the inventory slot type.
-
getNewTypeID
public short getNewTypeID()Gets the new type id. This highly depends on the edit type: For example, when changing the block shape, the new type id describes the id of the new construction element type. In other cases it might be a new item type id instead.- Gibt zurück:
- the new type id.
-
setNewTypeID
public void setNewTypeID(short id) -
getNewTexture
public int getNewTexture()Gets the new item texture (if the texture was changed with this action).- Gibt zurück:
- the new texture, otherwise just the old texture of the item.
-
setNewTexture
public void setNewTexture(int texture) -
getEditType
Gets the edit type, i.e what causes the item modification exactly.- Gibt zurück:
- the edit type.
-
isCancelled
public boolean isCancelled()Beschreibung aus Schnittstelle kopiert: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.- Angegeben von:
isCancelled
in SchnittstelleCancellable
- Gibt zurück:
- true if the event is cancelled, or false if not.
-
setCancelled
public void setCancelled(boolean cancel) Beschreibung aus Schnittstelle kopiert:Cancellable
Cancels this event. This means it will no longer be executed, but other plugins will still receive the event.- Angegeben von:
setCancelled
in SchnittstelleCancellable
- Parameter:
cancel
- set to true if you want to cancel this event.- Example: Cancel "PlayerEnterAreaEvent", i.e prevent player from entering an area
-