2019-08-25 01:19:27 +02:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
|
|
|
id 'org.jetbrains.kotlin.jvm'
|
|
|
|
id 'com.github.johnrengelman.shadow'
|
|
|
|
id 'net.minecrell.plugin-yml.bukkit'
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compileOnly project(":VoidPlugin")
|
|
|
|
}
|
|
|
|
bukkit {
|
|
|
|
main = "nl.voidcorp.bankplugin.VoidBank"
|
|
|
|
apiVersion = '1.13'
|
|
|
|
author = 'J00LZ'
|
|
|
|
depend = ['VoidPlugin']
|
|
|
|
commands {
|
|
|
|
buymenu {
|
2019-08-25 16:00:36 +02:00
|
|
|
description = "Buy or sell stuff!"
|
2019-08-25 01:19:27 +02:00
|
|
|
}
|
2019-08-25 16:00:36 +02:00
|
|
|
woodstrip {
|
2019-08-25 01:19:27 +02:00
|
|
|
description = "Use this to transform stripped wood back into it's normal form"
|
|
|
|
}
|
2019-08-25 16:00:36 +02:00
|
|
|
checkcash {
|
|
|
|
description = "Check how many ECs you have in you account"
|
|
|
|
}
|
|
|
|
transfer {
|
|
|
|
description = "Send cash to another player"
|
|
|
|
}
|
|
|
|
reload {
|
|
|
|
description = "Reloads the fileconfig"
|
|
|
|
permission = "bank.reload"
|
|
|
|
permissionMessage = "You are not allowed to reload the config..."
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
permissions {
|
|
|
|
'bank.reload' {
|
|
|
|
setDefault("OP")
|
|
|
|
description = "Allows reloading the config"
|
|
|
|
}
|
2019-08-25 01:19:27 +02:00
|
|
|
}
|
|
|
|
}
|