AlternaCraft/PvpTitles


Get epic titles in battle!

Download


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.AlternaCraft:PvpTitles:'
	}
	dependencies {
		implementation("com.github.AlternaCraft:PvpTitles:")
	}
	<dependency>
	    <groupId>com.github.AlternaCraft</groupId>
	    <artifactId>PvpTitles</artifactId>
	    <version></version>
	</dependency>

                            
    libraryDependencies += "com.github.AlternaCraft" % "PvpTitles" % ""
        
        

                            
    :dependencies [[com.github.AlternaCraft/PvpTitles ""]]
        
        

Readme


PvpTitles 2015 Edition

Build Status codecov Download Web IRC

PvpTitles is a Bukkit / Spigot plugin which is based on the PvP titles plugin by asc_dreanor. These titles reflect a player's success in defeating other players by earning titles after a specific amount of Kills.

Developed from version 1.7.10 of Minecraft using Java 8.

Downloads

Official builds:

You can find the official builds at bukkit and spigot:

  • http://dev.bukkit.org/bukkit-plugins/pvptitles/
  • https://www.spigotmc.org/resources/pvptitles.20927/

Development builds:

"Development builds of this project can be acquired at the provided continuous integration server."
"These builds have not been approved by the BukkitDev staff. Use them at your own risk."

http://oss.jfrog.org/oss-snapshot-local/com/alternacraft/PvpTitles/

The dev builds are primarily for testing purposes.

Getting Started & Documentation

All documentation is available on the Wiki page.

Feel free to contribute there too. Just click the edit button after you login into your Github account.

Compatibility

This plugin is compatible with all Minecraft versions above 1.7.10

Also, there are some optional dependencies for having a better experience with the plugin:

  • ScoreboardStats (http://dev.bukkit.org/bukkit-plugins/scoreboardstats)
  • Vault (http://dev.bukkit.org/bukkit-plugins/vault)
  • HolographicDisplays & ProtocolLib (http://dev.bukkit.org/bukkit-plugins/holographic-displays/)
  • Placeholder API (https://www.spigotmc.org/resources/placeholderapi.6245/)
  • MVdWPlaceholderAPI (https://www.spigotmc.org/resources/mvdwplaceholderapi.11182/)
  • VanishNoPacket (https://dev.bukkit.org/projects/vanish/)

You don't need to do anything for getting it works together. It is automatically hooked.

Building

PvpTitles uses Maven 3 to manage building configurations, general project informations and dependencies. You can compile this project yourself by using Maven.

  • Just import the project from Github. Your IDE would detect the Maven project.
  • If not: You can download it from here You will find executable in the bin folder.
  • Run (using IDE, console or something else)