-
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.
- Loading branch information
Showing
4 changed files
with
59 additions
and
8 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
@@ -0,0 +1,44 @@ | ||
# Multi Currency Plugins | ||
|
||
* If a plugin supports multiple currencies, you can allow multiple currencies to be used in AxAuctions. | ||
|
||
Example CoinsEngine setup with 2 currencies in the `currencies.yml`: | ||
|
||
We have 2 currencies set up in CoinsEngine: | ||
|
||
![image_52.png](image_52.png) | ||
|
||
And in The AxAuctions currencies.yml, this is how the 2 currencies are set up: | ||
```yaml | ||
currencies: | ||
CoinsEngine: | ||
register: true | ||
# CoinsEngine supports multiple currencies, so you can also add multiple here | ||
# "coins" is the name of the currency | ||
# first currency | ||
coins: | ||
tax: 0 | ||
display: | ||
raw: "CoinsEngine-coins" | ||
gui: "&f%\price% &#AAFFFFcoins" | ||
item: | ||
material: GOLD_INGOT | ||
name: "�DDFFCoinsEngine coins" | ||
lore: | ||
- " " | ||
- "�DDFF&l(!) �DDFFClick here to select!" | ||
# second currency | ||
money: | ||
tax: 0 | ||
display: | ||
raw: "CoinsEngine-money" | ||
gui: "&f%\price% &#AAFFFFmoney" | ||
item: | ||
material: GOLD_NUGGET | ||
name: "�DDFFCoinsEngine money" | ||
lore: | ||
- " " | ||
- "�DDFF&l(!) �DDFFClick here to select!" | ||
``` | ||
You can register any amount of custom currencies if the plugin supports it. |