promotional bannermobile promotional banner

Orbis & Dungeons (RPG class mod)

The Evolution Update introduces a modular Race and Class system, allowing players to combine unique biological traits and combat specializations for permanent stats, weapon bonuses, and elemental resistances.

File Details

Orbis_and_Dungeons-2026.2.11-57095.jar

  • R
  • Feb 11, 2026
  • 135.13 KB
  • 2.4K
  • Early Access

File Name

Orbis_and_Dungeons-2026.2.11-57095.jar

Supported Versions

  • Early Access

Version 2026.2.11 - Mod Compatibility & API Improvements

🔧 Mod Configuration System (NEW)

A new configuration system that allows disabling stat modifiers for compatibility with other mods that manage player stats.

Configuration Files

  • ModConfig.java - Configuration class with settings:

    • applyHealthModifiers - Enable/disable health stat modifications
    • applyStaminaModifiers - Enable/disable stamina stat modifications
    • applyOtherModifiers - Enable/disable other stat modifications
    • debugMode - Enable verbose logging for troubleshooting
  • ModConfigLoader.java - Loads configuration from config/orbis_dungeons.json:

    {
      "stats": {
        "applyHealthModifiers": true,
        "applyStaminaModifiers": true,
        "applyOtherModifiers": true
      },
      "debug": false
    }
    

Use Case

When running alongside other mods (like RPGLeveling), you can disable Orbis health/stamina modifiers to prevent conflicts and instant death issues.

🩹 Player Healing Improvements

  • healPlayerToFull() method now uses maximizeStatValue() for proper healing
  • Uses string-based stat lookup (stats.get("Health")) for SDK compatibility
  • Added flexible stat bonus application with applyBonus() method improvements

📚 Documentation

  • New COMMAND_GUIDE.md - Comprehensive command documentation
  • New docs/README.md - Documentation index linking all guides
  • Updated QUICK_REFERENCE.md - Added new race and class commands
  • Improved API_HYTALE_REFERENCIA.md - Streamlined Hytale API reference

🌐 Language Updates

Added new translation key across all languages:

  • config.reload.success - Configuration reload confirmation message

🐛 Bug Fixes

  • Fixed HP being overwritten/reduced when using with other stat mods
  • Fixed instant death on login caused by stat conflicts
  • Improved null checks and fallback mechanisms in translation manager
  • Enhanced race/class selection pages with dynamic translation support