added readme in data
This commit is contained in:
parent
c3755e4ac4
commit
35551fbfd4
2 changed files with 23 additions and 1 deletions
22
data/README.md
Normal file
22
data/README.md
Normal file
|
@ -0,0 +1,22 @@
|
|||
# `playerData.resurrection` Example File
|
||||
|
||||
This file is crucial to Resurrection as it contains important timing data for the plugin. This file should only contain one line of data at all times and new users are appended to such line.
|
||||
|
||||
This directory contains a sample file for you to visualize what this file will contain. The plugin creates this file in the same directory as the Spigot server jar file.
|
||||
|
||||
Avoid touching this file while the plugin is enabled and avoid deleting or moving the file at any time after it's creation to prevent breaking the plugin.
|
||||
|
||||
## Formatting
|
||||
|
||||
The file is read as follows:
|
||||
```
|
||||
;username,dead,timeUntilResurrection;.............
|
||||
```
|
||||
|
||||
* `;` are seperators between player data
|
||||
* `username` is the String of the player's display name
|
||||
* This is planned to change to the player's UUID as development progresses.
|
||||
* `dead` is a boolean indicating if the player has died.
|
||||
* `timeUntilResurrection` is a long containing the milliseconds for when the user shall be resurrected.
|
||||
* This value is reset to 0 if the `dead` flag is false.
|
||||
|
|
@ -1 +1 @@
|
|||
username,false,0
|
||||
;username,false,0;username2,true,123456789234
|
||||
|
|
Loading…
Add table
Reference in a new issue