-
Notifications
You must be signed in to change notification settings - Fork 43
config file
goflishMC edited this page Oct 21, 2024
·
11 revisions
Each section below comprises the settings within the /fabled/config.yml file, governing the majority of the plugin’s configurations. Accounts
Players can maintain multiple accounts that progress independently, enabling them to cultivate distinct characters such as a warrior or mage. Each account’s class level, skills, and experience advance autonomously. Switching between accounts is facilitated through controlled permissions.
Accounts: main-class-group: 'class' one-per-class: 'true' max-accounts: '1' perm-accounts: - 'skillapi.account.admin:5'
- main-class-group
- This is the primary group on your server.
- Most people use “class,” but it can be customized using any of your groups defined in groups.yml. one-per-class
- If set to true, players are limited to one account per class.
- Setting it to false allows players to level up multiple classes within each account.
- max-accounts
- Specifies the maximum number of accounts for default players.
- Every player joining the server will have this number of accounts by default.
- perm-accounts
- Permission nodes to grant multiple accounts to permission groups.
- Customize the number of accounts per group by editing the permission node.
- Format: skillapi.account.admin..
- Commands
- Players need access to specific commands for managing their accounts:
- /class acc : Switch between accounts by specifying the account ID.
- /class profess: Profess into a class after switching accounts.
- /class list: View a list of all accounts with their associated IDs.
- Players need access to specific commands for managing their accounts:
Targeting determines whether or not entities take damage.
Targeting: # monsters-enemy: # - world1 # - world2 'monsters-enemy': 'false' # passive-ally: # - world1 # - world2 'passive-ally': 'false' # player-ally: # - world1 # - world2 'player-ally': 'false' 'affect-npcs': 'false' 'affect-armor-stands': 'false'
-
monsters-enemy
- If set to true then all mobs are considered enemy and will take damage by skills.
- If you are using pet plugins that lets you have hostile mobs as pets you should set this to false.
- If you wish to designate certain worlds where all hostile mobs act as enemies, you can remove the comment markers from those lines and specify the particular worlds where hostile mobs are considered adversaries.
-
passive-ally
- If set to true then all passive mobs are considered allies and will not take damage by skills.
- If you have custom passive mobs that should be attacked, then set this to false.
-
player-ally
- If set to true then all players are considered allies and will not take damage by player’s skills.
- If you allow PVP on your server, then you should set this to false.
-
affect-npcs
- If set to true, then NPC’s will be affected by skills and can take damage.
- If you don’t want NPC’s to be damaged on your server, then set this to false.
-
affect-armor-stands
- If set to true, then skills will effect armor stands.