Step 1. Add the JitPack repository to your build file
Add it in your root settings.gradle at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
Add it in your settings.gradle.kts at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url = uri("https://jitpack.io") }
}
}
Add to pom.xml
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
Add it in your build.sbt at the end of resolvers:
resolvers += "jitpack" at "https://jitpack.io"
Add it in your project.clj at the end of repositories:
:repositories [["jitpack" "https://jitpack.io"]]
Step 2. Add the dependency
dependencies {
implementation 'com.github.sgtcaze:Nametagedit:'
}
dependencies {
implementation("com.github.sgtcaze:Nametagedit:")
}
<dependency>
<groupId>com.github.sgtcaze</groupId>
<artifactId>Nametagedit</artifactId>
<version></version>
</dependency>
libraryDependencies += "com.github.sgtcaze" % "Nametagedit" % ""
:dependencies [[com.github.sgtcaze/Nametagedit ""]]
This plugin allows users to add up to 16 characters before and after their name. Individual tags can be created for players, or a group can be created that can be joined via permissions.
1.7.x to 1.12.x
has a max 16-character limit.1.13.x to 1.20.x
has a max 256-character limit.1.16.x to 1.20.x
has hex color
support.NametagEdit has support for EssentialsGroupManager, PermissionsEx, zPermissions, LuckPerms and LibsDisguises. If a user changes groups or permissions, their tag is automatically updated.
✔ Converters to and from MySQL and FlatFile
✔ Efficient Flatfile support and MySQL connection pooling
✔ PermissionsEX, zPermissions, GroupManager, LuckPerms (https://www.spigotmc.org/resources/luckperms-an-advanced-permissions-plugin.28140/) support
✔ Sortable Group/Player Tags in tab
✔ MVdW Placeholder API Support
✔ Clip Placeholder API Support
✔ Guilds Support
A: No. This plugin creates fake scoreboard teams with packets.
A: Due to how scoreboards were implemented in Minecraft, a player cannot belong to two teams. Any two plugins that use packets or the Bukkit API which alter team prefixes/suffixes will have conflicts. There is currently no way around this.
A: LongTags is only able to disable a longer nametag in the tablist. The name above your head has a different limit (16 characters for prefix and suffix.) We are unable to change this, as this limit is imposed by Mojang.
A: Yes. Read up on how to use it here
✖ Any plugin that creates NPCs that share the same username as players who have 'NametagEdit' nametags
✖ Any plugin that uses Team color sidebars without specifically supporting NametagEdit