GitBook: [#78] Updated links

This commit is contained in:
OpenSource 2022-08-24 23:42:51 +00:00 committed by gitbook-bot
parent 4bc446f446
commit 487ffb70e9
No known key found for this signature in database
GPG Key ID: 07D2180C7B12D0FF
7 changed files with 56 additions and 5 deletions

View File

@ -4,18 +4,20 @@
* [🖥 PlayerServers - Overview](README.md) * [🖥 PlayerServers - Overview](README.md)
* [🚀 Plugin Installation Tutorial](overview/installation/README.md) * [🚀 Plugin Installation Tutorial](overview/installation/README.md)
* [🛳 Docker support](overview/installation/docker-support.md) * [🎁 Templates](overview/installation/templates.md)
* [📦 Adding pre-defined plugins](overview/installation/adding-pre-defined-plugins.md)
* [🛳 Docker installation](overview/installation/docker-installation.md)
* [🌐 Pterodactyl configuration](overview/installation/pterodactyl-configuration.md)
* [📜 Current Config files](overview/config.md) * [📜 Current Config files](overview/config.md)
* [🚫 Limitations](overview/limitations/README.md) * [🚫 Limitations](overview/limitations/README.md)
* [Permission-based RAM](overview/limitations/permission-based-ram.md) * [Permission-based RAM](overview/limitations/permission-based-ram.md)
* [Permission-based CPU](overview/limitations/permission-based-ram-1.md) * [Permission-based CPU](overview/limitations/permission-based-ram-1.md)
* [Max players limitation](overview/limitations/max-players-limitation.md) * [Max players limitation](overview/limitations/max-players-limitation.md)
* [Max plugins limitation](overview/limitations/max-plugins-limitation.md) * [Max plugins limitation](overview/limitations/max-plugins-limitation.md)
* [📦 Adding pre-defined plugins](overview/adding-pre-defined-plugins.md)
*** ***
* [Legacy](legacy/README.md) * [👵 Legacy](legacy/README.md)
* [Updates](legacy/updates/README.md) * [Updates](legacy/updates/README.md)
* [PlayerServers - General](legacy/updates/master.md) * [PlayerServers - General](legacy/updates/master.md)
* [v1.1 to v1.2](legacy/updates/v1.1-to-v1.2.md) * [v1.1 to v1.2](legacy/updates/v1.1-to-v1.2.md)
@ -41,4 +43,12 @@
* [Multi-Node Support](legacy/multi-node-support.md) * [Multi-Node Support](legacy/multi-node-support.md)
* [Unofficial Video Tutorial](https://www.youtube.com/watch?v=VApcwAG4y5c) * [Unofficial Video Tutorial](https://www.youtube.com/watch?v=VApcwAG4y5c)
* [MC-Market Thread](https://www.mc-market.org/threads/583445/#post-4508558) * [MC-Market Thread](https://www.mc-market.org/threads/583445/#post-4508558)
* [Support Discord](https://invite.gg/arcadiaxyz)
## 🛍 Buy
* [⛲ Spigot Link](https://www.spigotmc.org/resources/82268)
* [🏪 BuiltByBit](https://builtbybit.com/resources/15521/)
***
* [🔗 Support Discord](https://invite.gg/arcadiaxyz)

View File

@ -4,7 +4,7 @@ description: >-
PlayerServers (older than v3) PlayerServers (older than v3)
--- ---
# Legacy # 👵 Legacy
{% content-ref url="../" %} {% content-ref url="../" %}
[..](../) [..](../)

View File

@ -66,3 +66,7 @@ After the configuration of MySQL database, boot up your BungeeCord server. The p
If you followed the guide correctly, you will have a working version of PlayerServers installed. If there are any additional errors, or you need help with something, please don't hesitate to send me PM od MC-Market, or on Discord - `OpenSource#3310` If you followed the guide correctly, you will have a working version of PlayerServers installed. If there are any additional errors, or you need help with something, please don't hesitate to send me PM od MC-Market, or on Discord - `OpenSource#3310`
{% endhint %} {% endhint %}
## Now setup your first template
After successfully installing the plugin, in order to create your first server, you'll need to setup default (and optionally additional templates). Click the link below to learn more.

View File

@ -0,0 +1,10 @@
---
description: >-
Learn how to setup and configure PlayerServers to work with Pterodactyl
control panel and give your users ability to manage their server through
Pterodactyls beautiful and easy-to-use interface.
---
# 🌐 Pterodactyl configuration
## Work in progress

View File

@ -0,0 +1,27 @@
---
description: Learn how to setup templates with plugins, mods, worlds and configurations
---
# 🎁 Templates
## Instructions
1. Create folder in /templates/\<yourtemplate>
2. Put all the server files there INCLUDING Spigot.jar (do not include server.properties or spigot.yml)
3. If the folder includes plugins, please do not include PSServerCore.jar or it's configuration files
4. If your server includes plugins, please add all of them to plugins-to-be-installed-ingame folder
5. Add your template to config.yml as in the following example:
```yaml
templates:
default:
plugins:
- EssentialsX-2.18.1.0.jar;Essentials;Provides an essential, core set of commands for Bukkit.
```
As you can see, the template is the following: \
JarFileNameFromPluginsToBeInstalledIngameFolder;PluginNameFromPlugin.yml;Description
* JarFileNameFromPluginsToBeInstalledIngameFolder - the name of the jar file from the plugins to be installed ingame folder (example: EssentialsX-2.18.1.0.jar)
* PluginNameFromPlugin.yml - Find it by openning the plugin with WinRar, for example. Inside, you will see plugin.yml. Copy the plugin name from there
* Description - As described in the previous step, there is also a plugin description in plugin.yml. Copy it in the description part. NOTE THAT NOT ALL THE PLUGINS CONTAIN DESCRIPTION. In that case, you can create a custom one.