New

We just launched the new Notification Generator

Check it out
EternalCode LogoEternalCode
  • Home
  • Team
  • Documentation
  • Contribute
  • RepositoryNew window
  • StatusNew window

Documentation

Browse all topics

Hosting & DeployPowered by Netlify↗
multification11
Introduction
Installation
Basic Usage
Configuration
Advanced Features
Format (For Users)
Platform Comparison
API Reference
FAQ & Troubleshooting
Examples
Migration Guide

© 2026 EternalCodeTeam

Documentation

Browse all topics

Hosting & DeployPowered by Netlify↗
multification11
Introduction
Installation
Basic Usage
Configuration
Advanced Features
Format (For Users)
Platform Comparison
API Reference
FAQ & Troubleshooting
Examples
Migration Guide

© 2026 EternalCodeTeam

multification
1 min read
GitHubEdit on GitHub

Installation

How to add Multification to your project


Previous
Introduction
Next
Basic Usage
EternalCode LogoEternalCode

Building high-quality, open-source Minecraft solutions. Empowering communities with reliable software since 2021.

GitHubDiscordYouTubeTikTok

Product

  • Build Explorer
  • Documentation
  • Repository
  • Status

Projects

  • EternalCore
  • EternalCombat

Community

  • Discord
  • GitHub
  • YouTube
  • TikTok

Resource

  • SpigotMC
  • Modrinth
  • bStats

Company

  • About
  • Team
  • Contribute
  • Privacy Policy

© 2026 EternalCodeTeam. All rights reserved.

Powered by NetlifyDesigned with ❤ by the EternalCodeTeam.

Platform Modules

Important

Requirements: Java 21, Paper 1.19.4+

repositories {
  maven("https://repo.eternalcode.pl/releases")
}

dependencies {
  implementation("com.eternalcode:multification-paper:1.2.3")
  // Latest version: https://github.com/EternalCodeTeam/multification/releases
}
Tip

Paper includes Adventure API out of the box — no extra dependencies required. CommandSender already implements Audience.

Config Serializers (Optional)

dependencies {
  implementation("com.eternalcode:multification-cdn:1.2.3")
  implementation("net.dzikoysk:cdn:1.14.9")
}

Shadow / Relocation

shadowJar {
  // Do NOT relocate Adventure on Paper
  relocate("com.eternalcode.multification", "your.plugin.libs.multification")
}