Races (Paid Version) (Extremely Configurable) (API)

NULLED Races (Paid Version) (Extremely Configurable) (API) 2.6.7

No permission to download
ested Minecraft Versions:
  • 1.7
  • 1.8
  • 1.9
  • 1.10
  • 1.11
  • 1.12
Contributors:
HuliPvP, LegendDev
----------------------------------------------------------------------------------------------------------------------------------------------------------------------

NOTE:
Hello there, I want to explain to you guys why we made "Races" a premium plugin the reason for this was that we felt like Races was going somewhere and for this to motivate us more was to make it a premium plugin. There is a BIG difference between the free version and the premium version, the thing is for the free version we will most likely not post that many updates for it. The code is indeed optimized as well ;)


What is Races?

Do you want a racing plugin where you can choose a race upon when you join the first time? Then this is for you! Races allows players to chose their race to get different perks. For example the orc gets Resistance I forever. Now you might ask, how would a player chose their race? When a player first joins the server it automatically forces the player to open a menu from there they are required to select a race if they try to exit the menu it will reopen the menu for them. Create your own CUSTOM RACES, customize what you want the name to be!

Commands:

/Changerace - reopens the menu the racechange menu if you have enough race changes available (Bypass permission: races.changerace)
/addracechanges (player) (number) - ( Gives a player a race change token which allows them to change their race once per token they have )
/setracespawn (race) - ( sets a racespawn wherever you are standing )
/racespawn (race) (player) - ( teleports to a racespawn )
/channel - ( switches between channels if you have them enabled )
/race - ( brings up a help menu )
/race reload - Permission: races.admin (EXPERIMENTAL: I advise to restart your server instead of using this)
/setrace (player) (race) - Set a player's race (Permissions: races.setrace)
/whatrace (player) - See what Race a player is in (Permissions: races.whatrace)
/chooserace - Choose your race, only when you have Skip GUI enabled (Permission: races.chooserace)
/friendlyfire - enable or disable this in the config.YML
/racestats (race;player) - See stats for a player or a race to a player (Permission: races.racestats)
/racedeposit - Racedeposit takes money from your balance and puts it into your Races balance. (Permission: races.deposit)
/racegiveall (race|all) (money|command) (moneyAmount|command)
/racevault - All of the players in each Race have access to a Vault that is specific to that Race. Only that Race can access that Vault so that each Race can share and transfer items to help each other out. (Permission: races.vault)
/topraces - display the top races on your server. (their balance and kills) etc (Permission: races.topraces)
/raceterritor - claim territory for certain Races (Permission: races.raceterritory)


Features that is getting added to Races upon the next days/weeks!

  • Leaders - Be able to vote for a leader to lead that Race, example if you choose a leader for ORC and vote for a person to be the leader of that Race he will have the permissions to ( Turn friendly fire on/off, manage a race warp for that specific race, and more to come! You'll be able to manage this in a GUI ( the leader of the race )
  • Custom Abilities - Be able to make whatever you want the race to have, etc if you want them to have strength and speed and jump. You can manage this all in the config.yml whenever the next update comes!
More to come as we are thinking of new and cool features for the plugin!

What features does the plugin have?

Races - adds a whole new aspect to your Minecraft server by allowing your players to select and fight other races.

RaceEffects - customize-able effects in each race. Found in races.yml. You can find a list of effects here. (Under "Field and Description")

RaceChanges - Adds a new way for you to make money by giving a token to a player which allows them to change their race once for token they have

RaceSpawns - Adds a different spawning system which is done by multiple spawns which you can add to the commands you want to run when a player selects a race

Channels - Adds a very unique channel system which can be selected and configured accordingly in the config.yml. By using the static channel system it forces the player to select one channel and they can only read messages that are sent in that channel. By using the dynamic channel it allows the player to see 2 channels at once for example if a player is a Human they can see global chat and Human chat they can easily type in the human's chat by typing /channel (msg) or switch to the human's chat by just typing /channel

Race vaults - All of the players in each Race have access to a Vault that is specific to that Race. Only that Race can access that Vault so that each Race can share and transfer items to help each other out.

Race top - display the top races on your server. (their balance and kills)

(NOTE: Race vaults are experimental on 1.7 and may produce error when first executing /racevault. Please send in your errors if you are experiencing these errors on 1.7.)





Showcase of the GUI



Installation

  • Please use Java 8, every developer will thank you greatly.
  • Download Races.jar
  • Place Races.jar into your plugins folder.
  • Turn server on.
  • Enjoy!
Terms of service

  • Chargebacks are PROHIBITED. Please message me on Spigotmc.org if you have issues with the plugin, I will help you sort them.
  • 1 purchase of this plugin is valid for an entire Minecraft network*. Feel free to use it on as many servers as you want, granted they are within the same Minecraft network*. Please purchase 1 license for each Minecraft network* you plan to use it for(contact me regarding the purchase of additional licenses).
  • Distribution of the plugin or any modified version is prohibited.
  • You may not use the code from this plugin in any additional plugin.
  • You may not change the plugin to where it is unidentifiable within the game.
You agree to these terms upon purchase. Clicking the "Buy" button above states that you agree to these terms, and will abide by them.
*-
In this context, a "Minecraft network" is defined by a network of Minecraft servers connected by a Proxy-like system. You must be able to switch between any servers within the network without disconnecting.

PlaceholderAPI Placeholders

- Currently looking for suggestions on some more placeholders.
- %races_player_race% - Returns the name of the player's race
- %races_player_race_tag% - Returns the tag of the player's race
- %races_player_race_isEnabled% - Returns Yes if the Race is enabled, or No if disabled

API

Code (Text):

public class RaceAPI {

/**
* Get a List<Race> of Races loaded on the server
* Recommended to check if the List is null
*/
public static List<Race> getRaces() {
return Main.getInstance().getManager().getRaces();
}

/**
* Get a Map<String, Race> of Races loaded on the server
* Recommended to check if the Map is empty
* String = Races name
* Race = The Race object
*/
public static Map<String, Race> getRacesMap() {
return Main.getInstance().getManager().getRacesMap();
}

/**
* Get a Race by their name
* race:
* name: raceName
*/
public static Race getRaceByString(String race) {
return Main.getInstance().getManager().getRaceByName(race);
}

/**
* Get a player's file
* Use this to get access to their information
*/
public static PlayerFile getPlayerFile(Player p) {
return GetPlayerFile.getPlayerFile(p);
}

/**
* Get an OfflinePlayer's file
* Used when a server is not in Online mode
*/
public static PlayerFile getPlayerFile(OfflinePlayer p) {
return GetPlayerFile.getPlayerFile(p);
}

/**
* Get a player's race
* Use this to see what race a player has
*/
public static Race getPlayerRace(Player p) {
PlayerFile file = getPlayerFile(p);
return getRaceByString(file.getString("race"));
}

/**
* Get an OfflinePlayer's race
* Used when a server is not in Online mode
*/
public static Race getPlayerRace(OfflinePlayer p) {
PlayerFile file = getPlayerFile(p);
return getRaceByString(file.getString("race"));
}
}

----------------------------------------------------------------------------------------------------------------------------------------------------------------------
Author
Direct-Leaks.com
Downloads
83
Views
215
First release
Last update
Rating
0.00 star(s) 0 ratings

More resources from Direct-Leaks.com

Top