Mavenized.
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd">
|
||||
<id>bin</id>
|
||||
<includeBaseDirectory>false</includeBaseDirectory>
|
||||
<formats>
|
||||
<format>zip</format>
|
||||
</formats>
|
||||
<files>
|
||||
<file>
|
||||
<source>${project.build.directory}/${artifactId}.jar</source>
|
||||
<outputDirectory>/</outputDirectory>
|
||||
<destName>${project.name}.jar</destName>
|
||||
</file>
|
||||
</files>
|
||||
</assembly>
|
||||
@@ -0,0 +1,15 @@
|
||||
# PlayerVaults by drsthock
|
||||
# http://dev.bukkit.org/server-mods/playervaults
|
||||
|
||||
# Whether or not you want to check for updates.
|
||||
# Will not download an update, that is your job :)
|
||||
check-update: true
|
||||
|
||||
# Settings here are for economy integration.
|
||||
economy:
|
||||
enabled: false
|
||||
|
||||
# Cost to create a vault. You can give players playervaults.free to bypass this.
|
||||
cost-to-create: 100
|
||||
cost-to-open: 10
|
||||
refund-on-delete: 50
|
||||
@@ -0,0 +1,19 @@
|
||||
# Use & for color codes.
|
||||
# %p is where the player name will get inserted.
|
||||
# %v is where the vault number will get inserted.
|
||||
# %price is the price.
|
||||
# Made with love :)
|
||||
title-name: "&4[&fPlayerVaults&4]: "
|
||||
open-vault: "&fOpening vault &a%v"
|
||||
open-other-vault: "&fOpening vault &a%v &fof &a%p"
|
||||
delete-vault: "&fDeleted vault &a%v"
|
||||
delete-other-vault: "&fDeleted vault &a%v &fof &a%p"
|
||||
player-only: "Sorry but that can only be run by a player!"
|
||||
must-be-number: "&cYou need to specify a number between 1-99"
|
||||
invalid-args: "&cInvalid args!"
|
||||
delete-vault-error: "&cError deleting vault :("
|
||||
no-permissions: "&cYou don't have permission for that!"
|
||||
insufficient-funds: "&cYou don't have enough money for that!"
|
||||
refund-amount: "&fYou were refunded &a%price &ffor deleting that vault."
|
||||
cost-to-create: "&fYou were charged &c%price &ffor creating that vault."
|
||||
cost-to-open: "&fYou were charged &c%price &ffor opening that vault."
|
||||
Reference in New Issue
Block a user