Skip to content
This repository has been archived by the owner on Dec 18, 2022. It is now read-only.

ewpratten/MinimapServer

Repository files navigation

MinimapServer

Documentation Build plugin

MinimapServer is an open-source re-implementation of xaero96's Minimap API for his popular Xaero's Minimap and Xaero's World Map Minecraft mods.

This library / plugin is not cross-compatible with the original Minimap API, but implements most of the same features, and a nearly-identical networking system.

Usage

The public-facing aspect of MinimapServer is contained in two core classes:

installation

Step 1. Add the RetryLife maven server to your build.gradle file:

repositories {
    maven { 
        name 'retrylife-release'
        url 'https://release.maven.retrylife.ca/' 
    }
}

Step 2. Add this library as a dependency:

dependencies {
    implementation 'ca.retrylife.mc.plugins:minimap-server:0.1.1-1.16.3'
    implementation 'ca.retrylife.mc.plugins:minimap-server:0.1.1-1.16.3:sources'
    implementation 'ca.retrylife.mc.plugins:minimap-server:0.1.1-1.16.3:javadoc'
}