Перейти к содержимому
Mineforgian

Magical Campfires

Heals you when near campfires! Fully customizable with support for both normal and soul campfires.

Загрузки
2K
Подписчики
11
Обновлён
6 апреля 2026 г.
Лицензия
MIT

Опубликован 1 августа 2024 г.

❗[Notice] Google will lock-down Android and your ability to install applications❗

Starting in September 2026, Android will require all apps to be registered by verified developers in order to be installed on certified Android devices, and Google gets to decide who 'verified developers' are.

  • Your right to freely develop and install whatever apps (.apk files) you want may cease.
  • App developers will be forced to hand over govt. ids to Google and tie their apps to their real life identities.
  • Google gets to decide who gets approved. Being rejected means nobody can install your apps.
  • Developers Google arbirarily chooses it doesn't like, as well as users who reside in sanctioned regions like Russia, may face difficulties or be cut-off entirely from having their apps installable.

Please visit the following resources for more infromation:

Magical Campfires

A Minecraft plugin and mod that adds healing effects when players are near campfires or soul campfires.

✨ Features

  • Healing Mechanics: Players standing near campfires/soul campfires receive gradual health regeneration
  • Configurable Settings: Adjust healing amount, range, interval, and more
  • Visual Feedback: Optional actionbar messages to notify players when healing
  • Campfire Types: Separate configurations for normal campfires and soul campfires
  • Burning Requirement: Option to require campfires to be lit for healing effects

⚙️ Configuration

Paper/Folia
settings:
  enabled: true # Master toggle
  campfire:
    enabled: true # Normal campfire healing
    interval: 40 # Ticks between heals (20 ticks = 1 second)
    is_lit: true # Must be lit to heal
    amount: 1 # Health per heal (1 = ½ heart)
    range: 3 # Block radius for effect
    actionbar:
      enabled: true # Show actionbar message
      message: "<gold>You're getting healed by a campfire"
  soul_campfire:
    enabled: false # Soul campfire healing
    interval: 60
    is_lit: true
    amount: 1
    range: 4
    actionbar:
      enabled: false
      message: "<blue>You're getting healed by a soul campfire"
Fabric
{
  "enabled": true,
  "campfire": {
    "enabled": true,
    "interval": 2000, // ms, not ticks
    "amount": 1.0,
    "range": 3,
    "actionbar": {
      "enabled": true,
      "message": "§2You\u0027re getting healed."
    }
  },
  "soul_campfire": {
    "enabled": true,
    "interval": 2000, // 1 second = 1000ms
    "amount": 1.0,
    "range": 3,
    "actionbar": {
      "enabled": true,
      "message": "§2You\u0027re getting healed."
    }
  }
}

📋 Commands

  • /campfire reload - Reloads the plugin configuration - only Plugin
    Permission: magicalcampfire.reload

🔒 Permissions

  • magicalcampfire.reload - Allows reloading the plugin configuration

🔄 How It Works

  1. The plugin checks around players for campfires at configured intervals
  2. If a campfire is found within range (and lit if configured):
    • Player receives health regeneration
    • Optional actionbar message is displayed
  3. Different settings can be configured for normal and soul campfires

Perfect for survival or rpg servers looking to add immersive healing mechanics around campfires! 🔥

Need a reliable server? Check out NeyHost!

NeyHost offers affordable, high-performance servers for Minecraft (Java & Bedrock), 7DTD, Hytale, and more! NeyHost

Ченджлог

2.2Релиз26.1, 26.1.1 · 6 апреля 2026 г.

Update to 26.1

2.1-BUGFIXРелиз1.21.8, 1.21.9, 1.21.10 · 2 августа 2025 г.

Fixed a bug with mixins

2.1Релиз1.21.11, 26.1, 26.1.1 · 27 июня 2025 г.

🚀 New Features

  • Added support for Spigot (1.18+)
2.1Релиз1.21.9, 1.21.10, 1.21.11 · 27 июня 2025 г.

Full 2.1 release for fabric

2.1Релиз1.21.11, 26.1, 26.1.1 · 27 июня 2025 г.

Full 2.1 release for paper

2.1-BETAБета1.21.4, 1.21.5, 1.21.6 · 26 июня 2025 г.

2.1 Beta - Fabric

🚀 New Features

  • Added support for Fabric (1.19+)

🔧 Configuration Changes

  • Config is different from the paper version, it's a json config and it looks like this:
    {
      "enabled": true,
      "campfire": {
        "enabled": true,
        "interval": 2000, // ms, not ticks
        "amount": 1.0,
        "range": 3,
        "actionbar": {
          "enabled": true,
          "message": "§2You\u0027re getting healed."
        }
      },
      "soul_campfire": {
        "enabled": true,
        "interval": 2000, // 1 second = 1000ms
        "amount": 1.0,
        "range": 3,
        "actionbar": {
          "enabled": true,
          "message": "§2You\u0027re getting healed."
        }
      }
    }
    
2.1-BETAБета1.21.4, 1.21.5, 1.21.6 · 25 июня 2025 г.

2.1 Beta

🚀 New Features

  • Added support for Folia (Untested, that's why beta)
2.0Релиз1.21.4, 1.21.5, 1.21.6 · 25 июня 2025 г.

2.0 Rewrite

🚀 New Features

  • Added support for lower versions (1.19+)
  • Added /campfire reload command
  • Complete configuration overhaul with nested settings
  • Separate configuration for normal campfires and soul campfires
  • Added actionbar messages when being healed
  • Added global enable/disable toggle
  • Added range configuration for campfire effects
  • Added healing amount configuration
  • Added lit/unlit configuration option
  • Added separate intervals for each campfire type

🔧 Configuration Changes

  • New YAML structure with settings section
  • Moved all settings under nested configuration:
    settings:
      enabled: true
      campfire:
        enabled: true
        interval: 40
        is_lit: true
        amount: 1
        range: 3
        actionbar:
          enabled: true
          message: "<gold>You're getting healed by a campfire"
      soul_campfire:
        enabled: false
        interval: 60
        is_lit: true
        amount: 1
        range: 4
        actionbar:
          enabled: false
          message: "<blue>You're getting healed by a soul campfire"
    

⚙️ Technical Changes (the nerd stuff)

  • Rewrote plugin with better OOP structure
  • Improved performance with separate tasks for each campfire type
  • Changed package name from org.twipnetwork to org.notionsmp

🐛 Bug Fixes

  • Fixed potential memory leaks in task scheduling
  • Improved campfire detection logic
  • More robust configuration handling
  • Players don't get healed while dead anymore which caused reviving when relogging

Комментарии

Загружаем…