BedwarsRel/BedwarsRel


Bedwars Reloaded - The Minecraft Bedwars Plugin! https://bedwarsrel.github.io

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

                            
    libraryDependencies += "com.github.BedwarsRel" % "BedwarsRel" % ""
        
        

                            
    :dependencies [[com.github.BedwarsRel/BedwarsRel ""]]
        
        

Readme


CircleCI Codacy Badge Gitter

BedwarsRel - Minecraft Bedwars Plugin

Bedwars is a Minecraft minigame where teams (max. 15) try to destroy the other teams' beds. But there is more: On the whole map there are ressource spawners spawning items. Some items are more worth than others and with these you can buy different things in the so called "Villager Shop". You will find powerful weapons or potions or simple blocks to get to the other bases. Get to the others bases? Yes, every team starts on an island and you have to get to the others with blocks which you can buy in the "Villager Shop". When you meet a enemy you have to try to kill him so he'll lose all the equipment which he had in his inventory. As soon as a team's bed is destroyed they cannot respawn again and last team standing wins.

Server Owners

For general information about BedwarsRel go to www.spigotmc.org. For more information about configuring and running the plugin on your server, please have a look on the wiki.

If you are experiencing any problems with BedwarsRel, please open a new issue. Remember the content of the wiki-page "HowTo: Write an issue" you already read before.

BedwarsRel is compatible with CraftBukkit/Spigot 1.8 - 1.8.8, CraftBukkit/Spigot 1.9 - 1.9.4, CraftBukkit/Spigot 1.10 - 1.10.2, CraftBukkit/Spigot 1.11 - 1.11.2 and CraftBukkit/Spigot 1.12.

Developers

Contributing to BedwarsRel

If you would like to contribute to this repository, feel free to fork the repo and then create a pull request to our current dev branch. This project uses Project Lombok, so you will need to have this installed in your IDE. For code formatting, we recommand using the Google Java Style (Eclipse Profile).

Implementing BedwarsRel

<dependency>
  <groupId>io.github.bedwarsrel</groupId>
  <artifactId>BedwarsRel</artifactId>
  <version>1.3.6</version>
</dependency>