-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: switch to default true values
- Loading branch information
1 parent
5a9c6e4
commit 09c9afb
Showing
2 changed files
with
37 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,24 @@ | ||
# rust-server-plugin | ||
The rust server plugin utilizing Umod for for sharing events. | ||
# UMod GamingAPI Plugin | ||
The rust server plugin utilizing UMod for GamingAPI. | ||
|
||
## Configuration | ||
|
||
The plugin is setup for you to control which events you want your server to save, certain services can require you to enable certain ones in order to function, but that is up to the individual service. | ||
|
||
```json | ||
{ | ||
"If true, when a player writes in the chat the event will be saved": true, | ||
"If true, when a player farms a resource the event will be saved": true, | ||
"If true, when a player respawns the event will be saved": true, | ||
"If true, when a player disconnects the event will be saved": true, | ||
"If true, when a player connects the event will be saved": true, | ||
"If true, when the server wipes the event will be saved": true, | ||
"If true, when a player crafts an item the event will be saved": true, | ||
"If true, when a player is banned the event will be saved": true, | ||
"If true, when a player is reported the event will be saved": true, | ||
"If true, when a server command is run the event will be saved": true, | ||
"If true, when a player hits another player the event will be saved": true, | ||
"If true, when a player picks up an item the event will be saved": true, | ||
"If true, when a player loots an item the event will be saved": true | ||
} | ||
``` |