Templates

Templates are not living in one directory for each group like in v2. They are made up of user defined template actions, each with its own functionality. A unique template functionality is called template processor, and actions are grouped under these processors. You can have as many template actions per processor as you like.

Defining a template action

Template actions copy files from one directory to another by provided paths. They are defined under a destination processor in the templates YML file. Template YML files are saved under /droplets/serverhost-droplet/templates (see structure)

Destination processors

In each template YML file, you can opt in to destination processors, by listing the processor as a key and a list of actions as its value.

As of now, only 3 template processors exist:

  • destinations: Copies a file/directory to the servers directory on the server start
  • random-destinations: Copies a random file/directory inside a directory to the servers directory on the server start
  • shutdown-destinations: Copies a file/directory from the server to a template directory on the server stop

Example: Dynamic templates like in SimpleCloud v2

This example shows a default template implementation that would operate like SimpleCloud v2 templates, using the destinations destination processor.

# destination processor
destinations:
   # template action
   - copy-from: "%GROUP%"
     copy-to: ""

Template extending

Templates can also extend other templates. you can list the extended templates by adding a extends list in the YML file.

Example: lobby template extending the generic server template

generic_server.yml

destinations:
    - copy-from: "generic/server/plugins"
      copy-to: "plugins"

lobby.yml

extends:
    - "generic_server"
destinations:
    - copy-from: "%GROUP%"
      copy-to: ""

Assigning templates to a group

To assign a template to a group, set template-id to your wanted template id (e.g. if your wanted template is stored in lobby.yml, your template id is lobby) in the properties of the lobby group.

Was this page helpful?