HyskExpFly

Quick rating

HyskExpFly

No reviews yet

A Minecraft Fabric mod that allows players to fly using experience points in survival mode

Mod Loaders
NeoForge
Fabric
Minecraft

Community voices

Reviews

Versions
Loading versions…
Match includes

Click once to include, again to exclude, again to clear

Rating Any
Any 0.5 1.0 1.5 2.0 2.5 3.0 3.5 4.0 4.5 5.0
Min
Max
Play Status
Reviews
Time Played
hrs+
Verified developers only
Has developer response
List view
Grid view
Compact view
Sort by
Date
Rating
Helpful
Unhelpful
Edited
Sort ascending
Delete this review?

This removes your review from the project. You can write a new review after.

Review submitted for moderation

Your review has been sent to moderators, who will check that it meets our guidelines before it appears publicly.

No reviews yet. Be the first to review this project!

Get it on

Available Platforms

Compatibility

Supported Environments

Dev Environment
Client Unsupported
Server Required

About

Project Details

Type
Mod
License
BSD 2-Clause "Simplified" License
Latest Version
2.1.0-26.1.2
Authors

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.

Custom banner text
ModDex rating badge preview

Use HTML for any page that supports it, or Markdown for README files and Markdown-based descriptions.

Identifiers

Platform IDs

Modrinth ID

Resources

External Links

Source Issues Wiki Discord

About

Description

HyskExpFly Mod

A Minecraft Fabric mod that allows players to fly in survival mode using experience points

Mod Introduction

HyskExpFly Mod is an innovative Minecraft Fabric mod that allows players to consume experience points to gain flight ability in survival mode. Through simple commands and an intuitive interface, players can easily manage their flight status and enjoy the freedom of aerial exploration.

  • All code features are assisted by Deepseek AI
  • Qingxin Hengyue Shikong Server free public flight mod

Creator: YkinLing
AI Assistant: Deepseek
QQ Group: 783492881 (Get open source code)

Core Features

Basic Flight Features

  • Experience-based Flight: Fly in survival mode using experience points
  • Smart Consumption: Automatically deduct configured experience points per second
  • State Recovery: Automatically restore flight status when reconnecting
  • Mode Support: Supports survival mode, automatically handles other modes

Management Features

  • Permission Management: Complete ban system supporting name and UUID bans
  • Configuration System: Real-time adjustable experience consumption rate
  • Status Query: Administrators can query all flying player status
  • Safety Detection: Multiple safety checks to prevent state abnormalities

Multi-language Support

  • Bilingual Interface: Full support for Chinese and English
  • Real-time Switching: Supports in-game language switching commands
  • Complete Translation: All prompt messages have bilingual versions
  • Custom Extension: Supports adding new language configurations

User Experience

  • Real-time Display: Continuously shows remaining time and experience information during flight
  • Smart Tips: Rich status prompts and operation guidance
  • Auto Protection: Automatically handles flight status during death, mode switching, and riding
  • Easy Operation: Supports double-tap spacebar for quick takeoff/landing

Safety & Stability

  • State Repair: Automatically detects and fixes flight state abnormalities
  • Riding Protection: Automatically pauses flight when riding vehicles, resumes after dismounting
  • Experience Monitoring: Monitors experience deduction intervals to prevent abnormal deductions
  • Config Check: Automatically checks configuration integrity and fixes missing items

Installation Requirements

Required Dependencies

  • Minecraft: 1.21.8
  • Fabric Loader: ≥ 0.16.9
  • Fabric API: Latest version
  • Java: ≥ 21

Recommended Environment

  • Server Environment: Fabric Server
  • Client: Fabric Client
  • Memory: ≥ 2GB RAM

Command List

Player Commands

Command Permission Description
/fly All players Enable/disable experience flight mode
/flystatus All players View own flight status information

Administrator Commands

Command Permission Description
/fly reload OP Level 4 Reload configuration files
/fly cost <points> OP Level 4 Set experience consumption rate
/fly enable OP Level 4 Enable survival mode flight
/fly disable OP Level 4 Disable survival mode flight
/fly ban <player> OP Level 4 Ban player from using flight
/fly deban <player> OP Level 4 Unban player
/fly banlist OP Level 4 View ban list
/fly query OP Level 4 Query flying players list
/fly debug [player] OP Level 4 View debug information
/flystatus <player> OP Level 4 View other player's flight status
/fly lang [language] OP Level 4 View or switch language
/fly checkconfig OP Level 4 Check configuration integrity
/fly updateconfig OP Level 4 Update missing configuration items

Operation Methods

Basic Operation Flow

  1. Enable Flight: Use /fly command to enable flight mode
  2. Takeoff: Double-tap spacebar to start flying
  3. Flight Control:
    • Spacebar: Ascend
    • Shift: Descend
    • WASD: Move forward/backward/left/right
  • Landing: Double-tap spacebar again to land
  • Disable Flight: Use /fly command to disable flight mode

Flight Status Description

  • Flying: Continuously consumes experience points, shows remaining time
  • Landed: Pauses experience consumption, shows remaining experience
  • Riding Paused: Automatically pauses when riding vehicles, resumes after dismounting
  • Auto Protection: Automatically disables when dying or switching to adventure mode

Configuration System

Configuration File Location

Configuration files are located in the server's config/hyskexpfly/ directory:

config/
└── hyskexpfly/
    ├── hyskexpfly.json    # Main configuration file
    └── lang.json          # Language configuration file

Main Configuration (hyskexpfly.json)

{
  "costPerSecond": 1,
  "enableSurvivalFlight": true,
  "bannedPlayers": []
}

Configuration Options Description

Option Type Default Description
costPerSecond Integer 1 Experience points consumed per second
enableSurvivalFlight Boolean true Whether to allow survival mode flight
bannedPlayers Array [] List of banned players

Banned Player Data Structure

{
  "name": "PlayerName",
  "uuid": "PlayerUUID",
  "banTime": "BanTimestamp"
}

Language Configuration (lang.json)

{
  "currentLanguage": "zh_cn",
  "languages": {
    "zh_cn": {
      "flyEnabled": "§a飞行模式已开启!",
      "flyDisabled": "§c飞行模式已关闭",
      "notEnoughExp": "§c你没有足够的经验点来开启飞行!",
      "...": "More translation items..."
    },
    "en_us": {
      "flyEnabled": "§aFlight mode enabled!",
      "flyDisabled": "§cFlight mode disabled",
      "notEnoughExp": "§cYou don't have enough experience points to fly!",
      "...": "More translations..."
    }
  }
}

Supported Languages

  • zh_cn: Simplified Chinese
  • en_us: English (US)

Configuration Modification Methods

Method 1: In-game Commands (Recommended)

# Modify experience consumption rate
/fly cost 5

# Enable/disable survival flight
/fly enable
/fly disable

# Switch language
/fly lang en_us

# Reload configuration
/fly reload

Method 2: Direct File Editing

  1. Stop the server
  2. Edit config/hyskexpfly/hyskexpfly.json or config/hyskexpfly/lang.json
  3. Restart the server

Method 3: Hot Reload Configuration

# Execute in-game
/fly reload

Configuration Integrity Check

The mod provides automatic configuration checking and repair functions:

# Check configuration integrity
/fly checkconfig

# Automatically update missing configurations
/fly updateconfig

Auto-repair Features

  • ✅ Automatically detects missing configuration items
  • ✅ Fills in default values
  • ✅ Validates configuration format
  • ✅ Repairs corrupted configuration files

Configuration Best Practices

Balanced Server Settings

{
  "costPerSecond": 2,
  "enableSurvivalFlight": true,
  "bannedPlayers": []
}

Hardcore Server Settings

{
  "costPerSecond": 5,
  "enableSurvivalFlight": true,
  "bannedPlayers": ["Violator1", "Violator2"]
}

Creative Server Settings

{
  "costPerSecond": 1,
  "enableSurvivalFlight": false,
  "bannedPlayers": []
}

Troubleshooting

Common Configuration Issues

  1. Configuration Files Missing

    • Solution: Use /fly updateconfig to regenerate
  • Configuration Format Error

    • Solution: Delete configuration files and use /fly reload to regenerate
  • Language Display Abnormal

    • Solution: Use /fly lang zh_cn to reset language
  • Permissions Not Working

    • Solution: Check OP permission level, requires OP Level 4

Custom Language

To add new language support:

  1. Add new language code in lang.json's languages object
  2. Copy key-value pairs from existing languages and translate content
  3. Use /fly lang <new-language-code> to switch

Example:

{
  "currentLanguage": "zh_cn",
  "languages": {
    "zh_cn": { ... },
    "en_us": { ... },
    "ja_jp": {
      "flyEnabled": "§a飛行モードが有効になりました!",
      "flyDisabled": "§c飛行モードが無効になりました",
      "...": "More Japanese translations..."
    }
  }
}

Technical Features

Mixin Injection System

  • PlayerInputMixin: Detects player input, implements double-tap spacebar takeoff/landing
  • PlayerRidingMixin: Handles riding state, automatically pauses and resumes flight
  • Safe Injection: Uses Mixin framework to ensure compatibility with other mods

Experience Calculation System

  • Precise Calculation: Uses Minecraft standard experience calculation formulas
  • Real-time Updates: Automatically detects experience changes and updates display
  • Safe Deduction: Monitors deduction intervals to prevent abnormal situations

State Management System

  • Persistent Storage: Automatically restores flight status when players reconnect
  • Safety Checks: Multiple safety checks to ensure state consistency
  • Auto Repair: Automatically repairs state abnormalities when detected

This configuration system is designed to provide maximum flexibility and ease of use, allowing server administrators to easily adjust mod behavior to suit different gaming environments.~~~~

Screenshots

Gallery

  • Consuming experience to enable flight in survival mode
    Consuming experience to enable flight in survival mode /fly all players enable/disable experience flight mode
  • Query all status or ban settings
    Query all status or ban settings Administrators can query the status or ban settings of all flying players
  • The language can be changed by setting it yourself
    The language can be changed by setting it yourself /fly lang en_us setting English The default is zh_cn, which needs to be changed by oneself More languages may be added in the future Sorry for the inaccurate AI translation
  • Flight status information is available for inquiry
    Flight status information is available for inquiry /flystatus all players Check your flight status information

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

0
Ratings
0
Followers
0
In stacks

By the numbers

Statistics

<1,000
Downloads
Last Updated
CurseForge
Created
Last synced
When ModDex last fetched this project from CurseForge or Modrinth. Every project is re-checked on a schedule, and any project that ships a new file is synced automatically within hours of the release.
New file updates sync automatically
How syncing works