Skip to content
PaulBGD edited this page May 18, 2021 · 2 revisions

Welcome to the Airplane wiki!

Configuration Guide

# Airplane Configuration
# Read https://blog.airplane.gg/ to find out more about Airplane
# Join our Discord to receive support & optimization help: https://discord.gg/3gtc45q
[info]
  version = "1.0"

# Optimizes how entities act when
# they're far away from the player
[activation-range]
  # This value defines how often in ticks, the furthest entity
  # will get their pathfinders and behaviors ticked. 20 = 1s
  max-tick-freq = 20
  # This value defines how much distance modifies an entity's
  # tick frequency. freq = (distanceToPlayer^2) / (2^value)
  # If you want further away entities to tick less often, use 7.
  # If you want further away entities to tick more often, try 9.
  activation-dist-mod = 8
  # This value determines how far away an entity has to be
  # from the player to start being effected by DEAR.
  start-distance = 12

# A list of entities to use the dynamic activation range
# to modify how often their behaviors are ticked
[behavior-activation]
  villager = true
  piglin = true
  hoglin = true

# Configures Flare, the built-in profiler
[flare]
  # Sets the server to use for profiles.
  url = "https://flare.airplane.gg"

# Options for connecting to Airplane's online utilities
[web-services]
  token = ""

# Configures settings for generic entities
[entities]
  despawn-check-freq = 8

# Settings for things that don't belong elsewhere
[misc]
  disable-method-profiler = true

activation-range / behavior-activation

For DEAR, we have a full configuration guide here: https://blog.airplane.gg/dear-configuration/

flare / web-services

To get started with Flare, we have a guide here: https://blog.airplane.gg/flare-tutorial/

entities

  • despawn-check-freq: an integer in ticks of how frequently to check an entity for despawn. This does not make entities despawn any faster or slower, it just reduces how often the server has to check if an entity is ready to despawn. No tweaking of this value is normally needed.

misc

  • disable-method-profiler: the method profiler is used internally by the Minecraft Server to find performance information, but is not very useful to Bukkit. Disabling the method profiler will have no impact on how the server operates.
Clone this wiki locally