0.5.0
Start of dungeon work, custom item/mobs/gates not needed, gate and dungeons wil be made automatically.
This commit is contained in:
parent
ce3c1d547c
commit
10c66d6fa4
13 changed files with 231 additions and 70 deletions
14
bin/main/config.yml
Normal file
14
bin/main/config.yml
Normal file
|
@ -0,0 +1,14 @@
|
|||
version: "${version}"
|
||||
motd: "YAY, Super server!"
|
||||
motd-reload: "Server reloading!"
|
||||
|
||||
storage: "MONGODB" # switch between "MONGODB", "MYSQL"(not implemented), "YML"(currently making it)
|
||||
# if MYSQL or MongoDB
|
||||
username: "no_usr" # if mysql if you are on mongodb, add username in the url
|
||||
password: "no_pass" # if mysql if you are on mongodb, add password in the url
|
||||
url: "mongodb://localhost:27017"
|
||||
|
||||
useResourcePack: false
|
||||
resource_pack_url: "https://mc-packs.net/" # recommend to use https://mc-packs.net/ => free resource pack hoster (will eventually develop one myself but not atm)
|
||||
resource_pack_sha1: "sha1hallo" # sha1 hash
|
||||
debug: true
|
49
bin/main/plugin.yml
Normal file
49
bin/main/plugin.yml
Normal file
|
@ -0,0 +1,49 @@
|
|||
name: Raxen
|
||||
version: '${version}'
|
||||
main: gq.unurled.raxen.Raxen
|
||||
author: unurled
|
||||
api-version: 1.18
|
||||
depend: [ProtocolLib, PlaceholderAPI]
|
||||
softdepend: [AureliumSkills, LuckPerms]
|
||||
|
||||
commands:
|
||||
reloadplugin:
|
||||
aliases:
|
||||
- rlpl
|
||||
- reloadpl
|
||||
description: reload command that stops the server.
|
||||
skills:
|
||||
aliases:
|
||||
- skill
|
||||
description: skill command.
|
||||
testgui:
|
||||
description: test gui command
|
||||
storage:
|
||||
description: acces player storage
|
||||
nbt:
|
||||
description: nbt command
|
||||
raxen:
|
||||
description: raxen main command
|
||||
itemlist:
|
||||
aliases: itl
|
||||
description: Open ItemList menu
|
||||
entityspawn:
|
||||
description: Spawn an custom entity
|
||||
class:
|
||||
description: player command that make them choose their class and then their stats
|
||||
|
||||
permissions:
|
||||
raxen.reload.cmd:
|
||||
description: reload command permission
|
||||
raxen.test.gui.cmd:
|
||||
description: testgui command permission
|
||||
raxen.nbt.cmd:
|
||||
description: nbt command permission
|
||||
raxen.raxen.cmd:
|
||||
description: raxen command permssion
|
||||
raxen.itemlist.cmd:
|
||||
description: itemlist command permission
|
||||
raxen.entityspawn.cmd:
|
||||
description: entityspawn command permission
|
||||
raxen.class.cmd:
|
||||
description: class command premission
|
Loading…
Add table
Add a link
Reference in a new issue