@@ -8,8 +8,6 @@ All data will be destroyed uniformly only when the server is shut down.
88
99As such, LLSE gives developers the ability to track data about a particular player throughout the plugin's lifecycle.
1010
11-
12-
1311For a specific player object ` pl ` , with the following interfaces:
1412
1513#### Store Player Binding Data
@@ -25,8 +23,6 @@ For a specific player object `pl`, with the following interfaces:
2523- Return value: Whether the save was successful or not.
2624- Return value type: ` Boolean `
2725
28-
29-
3026#### Get Player Binding Data
3127
3228` pl.getExtraData(name) `
@@ -38,8 +34,6 @@ For a specific player object `pl`, with the following interfaces:
3834- Return value type: ` Any type ` , depending on the type of data stored.
3935 - If the return value is ` Null ` , it means that the specified binding data is not obtained, or the data is empty.
4036
41-
42-
4337#### Delete Player Binding Data
4438
4539` pl.delExtraData(name) `
@@ -50,8 +44,6 @@ For a specific player object `pl`, with the following interfaces:
5044- Return value: Whether the deletion is successful.
5145- Return value type: ` Boolean `
5246
53-
54-
5547## 👨💻 XUID Database
5648
5749The XUID database allows you to query the correspondence between player names and XUIDs even when players are offline.
@@ -68,8 +60,6 @@ When a player enters the server for the first time, his name and XUID are automa
6860- Return value type: ` String `
6961 - If the return value is ` Null ` , it means the query failed.
7062
71-
72-
7363#### Query Player Name Based on XUID
7464
7565` data.xuid2name(xuid) `
@@ -81,8 +71,6 @@ When a player enters the server for the first time, his name and XUID are automa
8171- Return value type: ` String `
8272 - If the return value is ` Null ` , it means the query failed.
8373
84-
85-
8674#### Query UUID by Player Name
8775
8876` data.name2uuid(name) `
@@ -94,8 +82,6 @@ When a player enters the server for the first time, his name and XUID are automa
9482- Return value type: ` String `
9583 - If the return value is ` Null ` , it means the query failed.
9684
97-
98-
9985#### Query UUID Based on XUID
10086
10187` data.xuid2uuid(xuid) `
@@ -107,9 +93,6 @@ When a player enters the server for the first time, his name and XUID are automa
10793- Return value type: ` String `
10894 - If the return value is ` Null ` , it means the query failed.
10995
110-
111- !!! tip
112- getAllPlayerInfo has been deprecated, it will only return online players's data
11396#### Get all player information
11497
11598` data.getAllPlayerInfo() `
@@ -121,6 +104,4 @@ When a player enters the server for the first time, his name and XUID are automa
121104 - ` xuid ` : Player's XUID.
122105 - ` uuid ` : Player's UUID.
123106
124-
125-
126107Tip: The player name stored in the XUID database is named corresponding to the player object. ` realName ` field.
0 commit comments