SweetFlight

⭐ — (0 endorsements) 📥 181 downloads 📌 v1.1.5 📅 3/16/2026
🟡 Updated this year

By MrXiaoM · bukkit

⬇ Download Mod Source: Modrinth ↗ 📅 Updated: 8/10/2026 📅 Created: 3/16/2026

🔍 Analysis

  • 🏆 #1181 of 1317 bukkit mods in this game by downloads

📋 About This Mod

# SweetFlight A Minecraft plugin for timed flight. > Default configurations are in Chinese. Check (https://github.com/mcio-dev/localization) repository for English or other language. ## Introduction This plugin can properly limit players' daily flight time. - You can set a base daily flight time for players, which will be automatically reset at a specified time every day. - You can also give players extra flight time via commands, allowing them to redeem more flight time. Players in different flight groups (((https://github.com/MrXiaoM/SweetFlight/blob/main/src/main/resources/groups.yml)l)) have different base daily flight times. Stackable flight time is supported. Using the default configuration as an example: - The `default` flight group has `5m` flight time. - The `vip` flight group has `+1h` flight time. If a player has permissions for both `default` and `vip` groups, their base flight time will be `1 hour and 5 minutes`. When a player is flying, extra flight time will be consumed first. Only when extra flight time is exhausted will daily base flight time be consumed. This consumption mechanism prevents players from hoarding excessive extra flight time. Of course, you can modify the flight time consumption priority in the config if needed. ## Compatibility This plugin is currently compatible with: - (https://www.spigotmc.org/resources/11480/) -- Supports zone flags. Flight is disabled in zones with `nofly` flag and unlimited flight is enabled in zones with `fly` flag. - (https://www.minebbs.com/resources/7933/) -- Supports zone flags. Flight is disabled in zones without `fly` flag. Want to add more plugin compatibility? Refer to (https://github.com/MrXiaoM/SweetFlight/blob/main/src/main/java/top/mrxiaom/sweet/flight/depend/ResidenceSupport.java) and submit a Pull Request to this plugin! > ⚠️WARNING > > The **flight control behavior** in Dominion's default configuration **breaks** most flight management plugins, **even when the player is not inside a plugin zone**! Please make sure you have properly configured `fly-permission-nodes` in the Dominion config. > ## Commands Root command: `/sweetflight` Aliases: `/sweetfly`, `/sflight`, `/sfly`, `/sf` Parameters wrapped in `<>` are required; parameters wrapped in `` are optional. ### Player Commands | Command | Description | Permission | |---------|-------------|------------| | `/sf toggle` | Toggle flight mode | `sweet.flight.toggle` | | `/sf on` | Enable flight | `sweet.flight.toggle` | | `/sf off` | Disable flight | `sweet.flight.toggle` | | `/sf check` | View current flight group and available flight time | `sweet.flight.check` | ### Admin Commands | Command | Description | Permission | |---------|-------------|------------| | `/sf toggle ` | Toggle flight mode for yourself or another player | `sweet.flight.toggle.other` | | `/sf on ` | Enable flight for yourself or another player | `sweet.flight.toggle.other` | | `/sf off ` | Disable flight for yourself or another player | `sweet.flight.toggle.other` | | `/sf check ` | View flight group and available time for yourself or another player | `sweet.flight.check.other` | | `/sf reset <player>` | Reset the player's today base flight time | OP/Console | | `/sf set <player> <time>` | Set the player's extra flight time | OP/Console | | `/sf add <player> <time>` | Add extra flight time to the player | OP/Console | | `/sf reload database` | Reconnect to the database | OP/Console | | `/sf reload` | Reload plugin configuration | OP/Console | ### Time Format Explanation The time format used in commands is `value + unit`. Available units: `h` (hour), `m` (minute), `s` (second). Examples: - `1m` – one minute - `2h3m` – two hours and three minutes - `4h5m6s` – four hours, five minutes and six seconds ## Placeholders This plugin registers the following placeholders for PlaceholderAPI: ``` %sweetflight_standard_time% Player's daily base flight time (formatted) %sweetflight_standard_time_seconds% Player's daily base flight time (seconds) %sweetflight_status_time% Player's remaining base flight time (formatted) %sweetflight_status_time_seconds% Player's remaining base flight time (seconds) %sweetflight_extra_time% Player's remaining extra flight time (formatted) %sweetflight_extra_time_seconds% Player's remaining extra flight time (seconds) %sweetflight_time% Player's total remaining flight time (formatted) %sweetflight_time_seconds% Player's total remaining flight time (seconds) ``` ## Developer (https://jitpack.io/v/MrXiaoM/SweetFlight.svg)](https://jitpack.io/#MrXiaoM/SweetFlight) ```kotlin repositories { maven("https://jitpack.io/") } dependencies { compileOnly("com.github.MrXiaoM:SweetFlight:$VERSION") } ```

# SweetFlight

A Minecraft plugin for timed flight.

> Default configurations are in Chinese. Check (https://github.com/mcio-dev/localization) repository for English or other language.

## Introduction

This plugin can properly limit players' daily flight time.

  • You can set a base daily flight time for players, which will be automatically reset at a specified time every day.
  • You can also give players extra flight time via commands, allowing them to redeem more flight time.

Players in different flight groups (((https://github.com/MrXiaoM/SweetFlight/blob/main/src/main/resources/groups.yml)l)) have different base daily flight times. Stackable flight time is supported. Using the default configuration as an example:

  • The `default` flight group has `5m` flight time.
  • The `vip` flight group has `+1h` flight time.

If a player has permissions for both `default` and `vip` groups, their base flight time will be `1 hour and 5 minutes`.

When a player is flying, extra flight time will be consumed first. Only when extra flight time is exhausted will daily base flight time be consumed. This consumption mechanism prevents players from hoarding excessive extra flight time. Of course, you can modify the flight time consumption priority in the config if needed.

## Compatibility

This plugin is currently compatible with:

  • (https://www.spigotmc.org/resources/11480/) -- Supports zone flags. Flight is disabled in zones with `nofly` flag and unlimited flight is enabled in zones with `fly` flag.
  • (https://www.minebbs.com/resources/7933/) -- Supports zone flags. Flight is disabled in zones without `fly` flag.

Want to add more plugin compatibility? Refer to (https://github.com/MrXiaoM/SweetFlight/blob/main/src/main/java/top/mrxiaom/sweet/flight/depend/ResidenceSupport.java) and submit a Pull Request to this plugin!

> ⚠️WARNING > > The flight control behavior in Dominion's default configuration breaks most flight management plugins, even when the player is not inside a plugin zone! Please make sure you have properly configured `fly-permission-nodes` in the Dominion config. >

## Commands

Root command: `/sweetflight` Aliases: `/sweetfly`, `/sflight`, `/sfly`, `/sf` Parameters wrapped in `<>` are required; parameters wrapped in `[]` are optional.

### Player Commands

| Command | Description | Permission | |---------|-------------|------------| | `/sf toggle` | Toggle flight mode | `sweet.flight.toggle` | | `/sf on` | Enable flight | `sweet.flight.toggle` | | `/sf off` | Disable flight | `sweet.flight.toggle` | | `/sf check` | View current flight group and available flight time | `sweet.flight.check` |

### Admin Commands

| Command | Description | Permission | |---------|-------------|------------| | `/sf toggle ` | Toggle flight mode for yourself or another player | `sweet.flight.toggle.other` | | `/sf on ` | Enable flight for yourself or another player | `sweet.flight.toggle.other` | | `/sf off ` | Disable flight for yourself or another player | `sweet.flight.toggle.other` | | `/sf check ` | View flight group and available time for yourself or another player | `sweet.flight.check.other` | | `/sf reset ` | Reset the player's today base flight time | OP/Console | | `/sf set

### Time Format Explanation

The time format used in commands is `value + unit`. Available units: `h` (hour), `m` (minute), `s` (second). Examples:

  • `1m` – one minute
  • `2h3m` – two hours and three minutes
  • `4h5m6s` – four hours, five minutes and six seconds

## Placeholders

This plugin registers the following placeholders for PlaceholderAPI: ``` %sweetflight_standard_time% Player's daily base flight time (formatted) %sweetflight_standard_time_seconds% Player's daily base flight time (seconds) %sweetflight_status_time% Player's remaining base flight time (formatted) %sweetflight_status_time_seconds% Player's remaining base flight time (seconds) %sweetflight_extra_time% Player's remaining extra flight time (formatted) %sweetflight_extra_time_seconds% Player's remaining extra flight time (seconds) %sweetflight_time% Player's total remaining flight time (formatted) %sweetflight_time_seconds% Player's total remaining flight time (seconds) ```

## Developer

[!(https://jitpack.io/v/MrXiaoM/SweetFlight.svg)](https://jitpack.io/#MrXiaoM/SweetFlight)

```kotlin repositories { maven("https://jitpack.io/") } dependencies { compileOnly("com.github. MrXiaoM:SweetFlight:$VERSION") } ```

🤖 AI-enhanced — based on mod data

📊 Mod Details

Game
Minecraft Plugins
Author
MrXiaoM
Version
1.1.5
Downloads
181
Endorsements
0
Category
bukkit
Created
3/16/2026
Updated
8/10/2026
Game Versions
1.8, 1.8.1, 1.8.2, 1.8.3, 1.8.4
Tags
game-mechanics, management, utility

🔧 How to Install Minecraft Plugins Mods

Download from Modrinth. Use Prism Launcher or drop into your mods folder.

📖 Full step-by-step install guide for Minecraft Plugins →

Visit the official mod page for specific installation instructions for this mod.

🎮 Need cheat codes or console commands? Check ur gaming wiki for Minecraft Plugins commands, item IDs, and more.

❓ Frequently Asked Questions

Which Minecraft Plugins versions does SweetFlight support?

The author lists 1.8, 1.8.1, 1.8.2, 1.8.3, 1.8.4, 1.8.5. Other versions may work but are untested by the author.

What is the latest version of SweetFlight?

Version 1.1.5, published 2026-08-10 with 181 downloads recorded at the source.

Keep browsing — more Minecraft Plugins mods await

📋 All Minecraft Plugins Mods 🏆 Top 25 📂 More bukkit 👤 More by MrXiaoM 🔎 Similar Mods 🌐 Best bukkit (All Games) 🔀 Check Compatibility ⚖️ Compare Mods 🆕 New Mods