Configuration
This page details all configuration options available in the Spawn Elytra plugin.
Configuration File
The main configuration file is located at plugins/CraftAttackSpawnElytra/config.yml
.
Basic Settings
Activation Mode
# double_jump: Player needs to double-press space
# auto: Automatically activates when conditions are met
activation_mode: double_jump
Spawn Area Mode
# auto: Uses the world spawn point
# advanced: Uses custom coordinates
mode: auto
World and Radius
# The world where the feature is enabled
world: world
# Radius around spawn (only used in auto mode)
radius: 100
Height Restriction
# Minimum Y-level for activation (-64 or below to disable)
min_activation_height: -64
Advanced Spawn Configuration
When using mode: advanced
, you can define a custom rectangular area:
spawn:
# First corner of the area
x: 0
y: 64
z: 0
# Second corner of the area
x2: 100
y2: 128
z2: 100
If all x2
, y2
, z2
are set to 0, the plugin uses radius-based area instead.
Boost Configuration
boost:
# Modes: forward, upward, combined
mode: forward
# Strength for forward movement
forward_strength: 2
# Strength for upward movement
upward_strength: 1.5
Boost Modes Explained
forward: Boosts in the direction player is looking
upward: Boosts straight up
combined: Combines forward and upward boost
Sound Effects
# Sound played when boosting
# See: https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/Sound.html
boost_sound: ENTITY_BAT_TAKEOFF
Popular alternatives:
ENTITY_FIREWORK_ROCKET_BLAST
ITEM_ELYTRA_FLYING
ENTITY_ENDER_DRAGON_FLAP
Particle Effects
particles:
# Enable/disable particles
enabled: false
# Particle when activating elytra
activation_particle: CLOUD
# Particle when boosting
boost_particle: FLAME
# Number of particles
count: 15
Available particles: Bukkit Particle Types
Language Settings
# Available: en, de, es, fr, hi, zh, ar
language: en
Creative Mode
# Automatically disable in creative mode
disable_in_creative: true
Messages Configuration
messages:
# Toggle specific messages
show_press_to_boost: true
show_boost_activated: true
# Use custom messages instead of language files
use_custom_messages: false
# Custom message content
press_to_boost: '&6Press &6&l{key} &6to boost yourself.'
boost_activated: '&a&lBoost activated!'
Complete Example Configuration
# Activation settings
activation_mode: double_jump
mode: advanced
# World settings
world: world
radius: 100
# Advanced spawn area
spawn:
x: -50
y: 60
z: -50
x2: 50
y2: 120
z2: 50
# Height restriction
min_activation_height: 60
# Boost settings
boost:
mode: combined
forward_strength: 2.5
upward_strength: 1.0
# Effects
boost_sound: ENTITY_FIREWORK_ROCKET_BLAST
particles:
enabled: true
activation_particle: CLOUD
boost_particle: FIREWORK_SPARK
count: 20
# Language and messages
language: en
disable_in_creative: true
messages:
show_press_to_boost: true
show_boost_activated: true
use_custom_messages: true
press_to_boost: '&b&lPress {key} for TURBO!'
boost_activated: '&a&lTURBO ACTIVATED!'
Configuration Tips
Performance: Larger areas and more particles can impact performance
Balancing: Adjust boost strength based on your server's needs
Testing: Use
/spawnelytra reload
to test changes without restartingBackups: The plugin automatically backs up config during updates
Color Codes
Messages support color codes:
(Image from
here
)
Troubleshooting Config Issues
Changes not applying: Use
/se reload
or restart the serverInvalid values: Check console for error messages
Missing options: Delete config.yml to regenerate with defaults
Syntax errors: Use a YAML validator online
See Also
Commands - Command reference
Permissions - Permission nodes
Language Support - Localization options
Last updated