Config - ParvatisGitHub/Towny-Flags GitHub Wiki

Default Config

#Towny Flags Config
flags:
  town-height: 64
  nation-height: 80
  
  #Town and Nation Flag Toggle
  enable-town: true
  enable-nation: true

  #Default flag from flags folder
  default-town-flag: ""
  default-nation-flag: ""

  #Roles That Can Change The Town or Nation Flag
  town-allowed-roles:
    - mayor
    - assistant

  nation-allowed-roles:
    - king
    - assistant

Flag Height in Webview

  town-height: 64
  nation-height: 80

These represent the height in pixels that the flag will show in the web view.

Town & Nation Toggle

  enable-town: true
  enable-nation: true

Disable or Enable the ability for towns or nations to set and remove their flags

Default Flag in Webview

  default-town-flag: ""
  default-nation-flag: ""

If you want all towns or all nations to share the same default flag when they haven't selected one. Just put the image name of the flag inside the quotes like so

  default-town-flag: "imagename"
  default-nation-flag: "imagename"

Town & Nation Roles

  town-allowed-roles:
    - mayor
    - assistant

  nation-allowed-roles:
    - king
    - assistant

Here you can specify what roles are necessary to be able to set or remove a towns or nations flag. These support custom roles as well, if for example you wanted only a nations leader and someone they set to be the cartographer to change the flag just set the roles as below nation-allowed-roles: - king - cartographer