ServerPlayer
Link to serverplayer
Importare la Classe
Link to importare-la-classe
It might be required for you to import the package if you encounter any issues (like casting an Array), so better be safe than sorry and add the import at the very top of the file.
ZenScript Copyimport crafttweaker.api.entity.type.player.ServerPlayer;
Extending Player
Link to extending-player
ServerPlayer extends Player. That means all methods available in Player are also available in ServerPlayer
Metodi
Link to metodi
Name: getPersistentData
Gets the persistent NBT data for this player.
Persistent data is kept through deaths
Returns: The persistent data for this Entity.
Return Type: MapData
ZenScript Copy// ServerPlayer.getPersistentData() as MapData
myServerPlayer.getPersistentData();
Name: updatePersistentData
Updates the persistent NBT data for this player.
Persistent data is kept through deaths
ZenScript Copy// ServerPlayer.updatePersistentData(data as MapData)
myServerPlayer.updatePersistentData({custom: "data"});
Parametro | Tipo | Descrizione |
---|---|---|
Parametro data | Tipo MapData | Descrizione The custom data to store. |
Proprietà
Link to proprietà
Nome | Tipo | Ha Getter | Ha Setter | Descrizione |
---|---|---|---|---|
Nome persistentData | Tipo MapData | Ha Getter sì | Ha Setter no | Descrizione Gets the persistent NBT data for this player. Persistent data is kept through deaths |