This repository has been archived by the owner on Jan 16, 2024. It is now read-only.
forked from hsyyid/PayDay
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reformat code and various other updates
- Loading branch information
Flibio
committed
Apr 14, 2017
1 parent
552c3c4
commit cdbc363
Showing
5 changed files
with
205 additions
and
124 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
PayDay is a Sponge plugin that pays players at set intervals. | ||
|
||
## Usage | ||
|
||
A configuration file (`payday.conf`) is located in the Sponge configuration directory, and allows you to modify how the plugin functions. | ||
|
||
``` | ||
timeamount="1" | ||
timeunit=Hours | ||
payamounts={ | ||
"players"= { | ||
"permission"= "*", | ||
"amount"= 50.0 | ||
} | ||
} | ||
``` | ||
|
||
Valid time units are: | ||
|
||
- `Nanoseconds` | ||
- `Microseconds` | ||
- `Milliseconds` | ||
- `Seconds` | ||
- `Minutes` | ||
- `Hours` | ||
- `Days` | ||
|
||
Pay amounts are assigned using the following format: | ||
|
||
``` | ||
payamounts={ | ||
"my group"= { | ||
"permission"= "*", | ||
"amount"= 50.0 | ||
}, | ||
"my group 2"= { | ||
"permission"= "requires.this.permission", | ||
"amount"= 19.99 | ||
} | ||
} | ||
``` | ||
|
||
If the permission is set to `*`, it will pay all players. | ||
|
||
--- | ||
|
||
## Credit | ||
|
||
PayDay was originally created by HassanS6000 of [NEGAFINITY](http://negafinity.com). |
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.