Skip to content
This repository was archived by the owner on Sep 12, 2020. It is now read-only.

Configs

GrafDimenzio edited this page Jun 23, 2020 · 20 revisions

Configs

Every Server has his own Server Config Folder in Synapse\ServerConfigs named after his serverport where the most configs are.

server-config.yml

It is the main Server config for the most plugin and synapse configs.

You have to add the configs on your own and are not added by Synapse

These are the Configs Synapse use in this file

Config Type Default Description
synapse_femur int 1 How Many Persons are needed to contain Larry.
synapse_remote_keyCard Boolean True Can a Player open a door without need of equip his Keycard

permissions.yml

It is the permissions Config of the Player Groups used by Plugins to Check if a Player is allowed for something like a Command.

It Exist 3 Types of Groups:

  1. Default: add default:true to a group and every player who has no Group become this Group

  2. Northwood: add northwood: true to a group and every Northwood staff become the Permission of the Group

  3. ServerGroups: when the name of the ServerGroup(config_remoteadmin.txt) match the name of the PermissionGroup every Player with the Server Group get the Permission

You can also inheritance a group just add inheritance: and list the Groups like the permissions

The Permission .* Gives all Permissions

Example:

groups:
    user:
        default: true
        permissions:
        - plugin.permission
    northwood:
        northwood: true
        permissions:
        - plugin.permission
    admin:
        inheritance:
        - user
        - northwood
        permission:
        - plugin.otherpermission
    owner:
        permissions:
        - .*

Plugin-translation.txt

Every Plugin can create such a file to support Custom Translation.

Just Change the Line you want and the Plugin (should) use it instead of the default text.

Clone this wiki locally