Community listing page, reviews here may not be monitored by the author.
Beacon Flight 2
No reviews yet
Beacons can now allow players to fly!
Fabric is a mod loader for versions 1.14+ of Minecraft, particularly popular for client side and optimization mods.
Community voices
Reviews
Filters
Click once to include, again to exclude, again to clear
No reviews yet. Be the first to review this project!
Get it on
Available Platforms
Compatibility
Supported Environments
Runs entirely on the server. Also works in singleplayer.
About
Project Details
For authors
Embed Badge
If you're the author of this project, you can embed a live badge anywhere that supports HTML or Markdown. It updates automatically whenever ratings change.
Use HTML for any page that supports it, or Markdown for README files and Markdown-based descriptions.
Identifiers
Platform IDs
Resources
External Links
About
Description
BeaconFlight
BeaconFlight lets active beacons grant creative-style flight when configurable conditions are met.
The gameplay logic is server-side, so it works on dedicated servers with unmodded clients. The same jar can also be used in singleplayer. If you install Mod Menu and Cloth Config on the client, the mod exposes an in-game config screen as well.
Compatibility
- Minecraft
1.21through1.21.11 - Fabric Loader
0.15.11+ - Java
21+ - Fabric API required
- Mod Menu optional
- Cloth Config optional
How It Works
- The beacon must be active and have a primary effect selected.
- By default, BeaconFlight requires a level 4 beacon and the
minecraft:end/elytraadvancement. - While the player stays in range and meets all configured requirements, flight is allowed.
- When the player leaves range, flight can linger for a configurable amount of time.
- When flight is removed while the player is airborne, Slow Falling can be applied automatically.
Installation
- Install Fabric Loader and Fabric API for your target Minecraft version.
- Place the BeaconFlight jar in the
modsfolder. - On a dedicated server, only the server needs the mod for flight to work.
- In singleplayer, install the jar normally on the client.
- Start the game or server once to generate the config file.
The config file is created at:
config/beaconflight_config.json
Configuration
You can edit the JSON file directly, or use the Mod Menu config screen if Mod Menu and Cloth Config are installed.
Available options:
minBeaconLevel: minimum beacon pyramid level required. Valid values are1to4.mainHandItem: required item in the player's main hand, ornull.offHandItem: required item in the player's off hand, ornull.anyHandItem: required item in either hand, ornull.headItem: required helmet item, ornull.chestItem: required chest item, ornull.legsItem: required leggings item, ornull.feetItem: required boots item, ornull.advancementsRequired: list of advancement ids the player must have completed.xpDrainRate: XP drained per second of active flight. Use0.0to disable XP drain.flightLingerTime: custom linger duration in ticks after the player leaves beacon range. Use0to reuse the normal beacon effect duration.slowFallingTime: Slow Falling duration in seconds after flight is lost.logLevel: BeaconFlight log level. Useful values areINFO,DEBUG,TRACE,ALL, andOFF.
Notes:
- Item fields must use item ids such as
minecraft:diamond_chestplate. - Advancement fields must use advancement ids such as
minecraft:end/elytra. - Resetting the config returns the default requirements, which are not a minimal test setup.
Default config:
{
"minBeaconLevel": 4,
"mainHandItem": null,
"offHandItem": null,
"anyHandItem": null,
"headItem": null,
"chestItem": null,
"legsItem": null,
"feetItem": null,
"advancementsRequired": [
"minecraft:end/elytra"
],
"xpDrainRate": 0.0,
"flightLingerTime": 0,
"slowFallingTime": 10,
"logLevel": "INFO"
}
Minimal config for testing:
{
"minBeaconLevel": 1,
"mainHandItem": null,
"offHandItem": null,
"anyHandItem": null,
"headItem": null,
"chestItem": null,
"legsItem": null,
"feetItem": null,
"advancementsRequired": [],
"xpDrainRate": 0.0,
"flightLingerTime": 0,
"slowFallingTime": 10,
"logLevel": "ALL"
}
Troubleshooting
- If flight does not activate, make sure the beacon is actually active and has a primary effect selected.
- If you used "reset" in the config UI, remember that the defaults still require a level 4 beacon and the Elytra advancement.
- Set
logLeveltoALLto get grant and deny messages in the game log. - If you want a clean test, remove all item requirements, clear
advancementsRequired, and setminBeaconLevelto match your beacon.
Building From Source
Use the Gradle wrapper:
.\gradlew.bat build
The built jar is written to:
build/libs/
Credits
- Original mod: ExtraCrafTX/BeaconFlight
- Original author: ExtraCrafTX
- Thanks to @xAlicatt for the original idea, commissioning the mod, and testing.
BeaconFlight
BeaconFlight lets active beacons grant creative-style flight when configurable conditions are met.
The gameplay logic is server-side, so it works on dedicated servers with unmodded clients. The same jar can also be used in singleplayer. If you install Mod Menu and Cloth Config on the client, the mod exposes an in-game config screen as well.
Compatibility
- Minecraft
1.21through1.21.11 - Fabric Loader
0.15.11+ - Java
21+ - Fabric API required
- Mod Menu optional
- Cloth Config optional
How It Works
- The beacon must be active and have a primary effect selected.
- By default, BeaconFlight requires a level 4 beacon and the
minecraft:end/elytraadvancement. - While the player stays in range and meets all configured requirements, flight is allowed.
- When the player leaves range, flight can linger for a configurable amount of time.
- When flight is removed while the player is airborne, Slow Falling can be applied automatically.
Installation
- Install Fabric Loader and Fabric API for your target Minecraft version.
- Place the BeaconFlight jar in the
modsfolder. - On a dedicated server, only the server needs the mod for flight to work.
- In singleplayer, install the jar normally on the client.
- Start the game or server once to generate the config file.
The config file is created at:
config/beaconflight_config.json
Configuration
You can edit the JSON file directly, or use the Mod Menu config screen if Mod Menu and Cloth Config are installed.
Available options:
minBeaconLevel: minimum beacon pyramid level required. Valid values are1to4.mainHandItem: required item in the player's main hand, ornull.offHandItem: required item in the player's off hand, ornull.anyHandItem: required item in either hand, ornull.headItem: required helmet item, ornull.chestItem: required chest item, ornull.legsItem: required leggings item, ornull.feetItem: required boots item, ornull.advancementsRequired: list of advancement ids the player must have completed.xpDrainRate: XP drained per second of active flight. Use0.0to disable XP drain.flightLingerTime: custom linger duration in ticks after the player leaves beacon range. Use0to reuse the normal beacon effect duration.slowFallingTime: Slow Falling duration in seconds after flight is lost.logLevel: BeaconFlight log level. Useful values areINFO,DEBUG,TRACE,ALL, andOFF.
Notes:
- Item fields must use item ids such as
minecraft:diamond_chestplate. - Advancement fields must use advancement ids such as
minecraft:end/elytra. - Resetting the config returns the default requirements, which are not a minimal test setup.
Default config:
{
"minBeaconLevel": 4,
"mainHandItem": null,
"offHandItem": null,
"anyHandItem": null,
"headItem": null,
"chestItem": null,
"legsItem": null,
"feetItem": null,
"advancementsRequired": [
"minecraft:end/elytra"
],
"xpDrainRate": 0.0,
"flightLingerTime": 0,
"slowFallingTime": 10,
"logLevel": "INFO"
}
Minimal config for testing:
{
"minBeaconLevel": 1,
"mainHandItem": null,
"offHandItem": null,
"anyHandItem": null,
"headItem": null,
"chestItem": null,
"legsItem": null,
"feetItem": null,
"advancementsRequired": [],
"xpDrainRate": 0.0,
"flightLingerTime": 0,
"slowFallingTime": 10,
"logLevel": "ALL"
}
Troubleshooting
- If flight does not activate, make sure the beacon is actually active and has a primary effect selected.
- If you used "reset" in the config UI, remember that the defaults still require a level 4 beacon and the Elytra advancement.
- Set
logLeveltoALLto get grant and deny messages in the game log. - If you want a clean test, remove all item requirements, clear
advancementsRequired, and setminBeaconLevelto match your beacon.
Building From Source
Use the Gradle wrapper:
.\gradlew.bat build
The built jar is written to:
build/libs/
Credits
- Original mod: ExtraCrafTX/BeaconFlight
- Original author: ExtraCrafTX
- Thanks to @xAlicatt for the original idea, commissioning the mod, and testing.
Screenshots
Gallery
Versions
Files
Relations
Project Relations
More like this
Similar Mods
Suggestions use data such as tags, dependencies, dependents, descriptions, titles, and more to rank how much they overlap with this mod.
On ModDex
Community snapshot
By the numbers
Statistics
Want to reach Minecraft players?
We're looking for a server hosting partner to feature here and other parts of the site. Interested? Send us a message!
Get in touchGet it on
Available Platforms
On ModDex
Community snapshot
By the numbers
Statistics
Resources