HSkyWars | Solo/Team, Balloons, Cages, Click Holograms, 1.8.8, etc.

SpigotVIP HSkyWars | Solo/Team, Balloons, Cages, Click Holograms, 1.8.8, etc. 1.8.0 - CRACKED

HSkyWars | Solo/Team, Balloons, Cages, Click Holograms, 1.8.8, etc.
Tested Minecraft Versions:
  • 1.8
Donation Link:
https://www.paypal.me/AxeelHeaven
6114daf2a5bd652c601fcda7bc09bcb016c19ef6


b91db81ebb573a9c0397c09bd6d398819f2ff3a3


Games:
  • Solo: You can make maps with the players you want.
  • Team: You can make maps with teams you want.
  • Ranked: Coming soon.
Chest | You can create different types of chests and edit the items they already have
Cages | You can create your own boxes without the need to use external plugins.
Win Effects | 14 types of effects when winning that players can buy.
Balloons | You can create unlimited balloons and players can be purchased.
Kits | You can create custom kits, players can be purchased with or witout permission.
Levels | A level system and a ranked mode will be added soon.
MySQL/SQLite | You can use two types of database according to your preference.
Menus | You can edit and create menus according to your preference.
Game Votes:
  • Chests: You can vote for the types of items in the chests.
  • Time: You can vote by day, sunset or night
  • Projectiles: You can vote for explosive, destroyers, no projectiles.
  • Events: You can vote for the event of filling chests, dragon, wither, rain of arrows, rain of anvils, ghast, border.
Signs | Rotating signs system for solo / team game mode.
Challenges | You can choose the challenges within a game.
Parties | You can create your custom parties to play with your friends.
Holograms (Does not need any dependency):
  • Stats: You can create and modify your statistics holograms.
  • Tops: You can create holograms of tops and when you click they will be exchanged for kills, wins, deaths.
  • Chest: When you open a chest in game, the items it contains are placed and if the filling event is there, the time in which it will be filled will appear.
Leaderboard | Top system to see the best players.

39546e7a2484e0d29364a869f73bd72dc30fd5ef


c9c1383a4e92daf337ae583c823a8cb9a0c260c2
27f4c44c9b02032bdd414f300d22a2faafd3211e
aa5572d1b818e1c23838b195b0ff9d9582c73535
cfcbae67830a239673e5a0dd34a23a721e59097e
2a8b1fdfcf16766cff5b03b55d8f4bd571adc23b
eb1273d4c0eeff1b1ead91e11fd388ed53e886e3

d0787b0ac9f24bbef11b632c1be1135d5a8cb1dd

  • HSkyWars:
    1. After buying the plugin download.
    2. Copy the plugin to your /plugins folder.
  • Dependencies:
    1. Download the latest version of PlaceholderAPI.
    2. Download the correct version of WorldEdit for your version of spigot.jar
  • After you have installed everything correctly, start the server.
32bf8ec49460b2d8d13d688478d57a3bbaa4f1c1

/setup:
  1. /setup spawnpoint: Set a spawnpoint.
  2. /setup hologram <top_kills/top_wins/default>: Add holograms.
  3. /setup create: Create an arena, when the map has been created, return the /setup command to give you a configuration guide.
/join: To enter an arena.
  1. /join random: Enter a random arena either solo or team.
  2. /join menu <solo/team>: Enter the arenas menú.
/leave: To get out of an arena.
/points: See player points.
  1. /points <add/remove>: To add or remove points from a player.
/hsw: Help command.
/start: Start an arena with more than two players in it.
/party: You can invite your friends to a party and be able to all enter the same game.
aa9743e1d1283de91ad0441c8c4ad0a6b32438fe


RECODING...

d48f2587b4ff9dc9ea9fed40e6bf338304ebb393

Code (Java):
PLUGIN VARIABLES | PLACEHOLDERAPI:
<hsw-game_kills> | %hsw_game_kills%
<hsw-solo_kills> | %hsw_solo_kills%
<hsw-solo_deaths> | %hsw_solo_deaths%
<hsw-solo_wins> | %hsw_solo_wins%
<hsw-solo_shots> | %hsw_solo_shots%
<hsw-solo_hits> | %hsw_solo_hits%
<hsw-solo_played> | %hsw_solo_played%
<hsw-solo_blocks_broken> | %hsw_solo_blocks_broken%
<hsw-solo_blocks_placed> | %hsw_solo_blocks_placed%
<hsw-solo_walked> | %hsw_solo_walked%
<hsw-solo_time_played> | %hsw_solo_time_played%

<hsw-team_kills> | %hsw_team_kills%
<hsw-team_deaths> | %hsw_team_deaths%
<hsw-team_wins> | %hsw_team_wins%
<hsw-team_shots> | %hsw_team_shots%
<hsw-team_hits> | %hsw_team_hits%
<hsw-team_played> | %hsw_team_played%
<hsw-team_blocks_broken> | %hsw_team_blocks_broken%
<hsw-team_blocks_placed> | %hsw_team_blocks_placed%
<hsw-team_walked> | %hsw_team_walked%
<hsw-team_time_played> | %hsw_team_time_played%

<hsw-points> | %hsw_points%
<hsw-level> | %hsw_level%
<hsw-experience> | %hsw_experience%
<hsw-max_experience> | %hsw_max_experience%
<hsw-experience_percent> | %hsw_experience_percent%
<hsw-experience_bar> | %hsw_experience_bar%
<hsw-name> | playername
<hsw-cage> | %hsw_cage%
<hsw-balloon> | %hsw_balloon%
<hsw-wineffect> | %hsw_wineffect%
<hsw-kit> | %hsw_kit%
<hsw-trail> | %hsw_trail%
0fd4279115810f58a33e5449a77445783748566e



c803a7c19381b7925db410538b88023c5de739f2

Code (Text):
public class SkyWarsAPI_Example implements Listener {

private Main plugin;
private SkyWarsAPI hsw;

public SkyWarsAPI_Example(final Main plugin){
this.plugin = plugin;
this.hsw = SkyWarsAPI.getInstance();
}

@EventHandler
public void GameFinishSolo(final GameFinishSoloEvent event){
final Arena arena = event.getArena();
final Player player = event.getPlayer();
}

@EventHandler
public void GameFinishTeam(final GameFinishTeamEvent event){
final Arena arena = event.getArena();
final ArenaTeam arenaTeam = event.getTeam();
}

@EventHandler
public void GameLevelUp(final GameLevelUpEvent event){
final Player player = event.getPlayer();
}

@EventHandler
public void GamePlayerDeath(final GamePlayerDeathEvent event){
final Arena arena = event.getArena();
final Player player = event.getPlayer();
}

@EventHandler
public void GamePlayerJoinArena(final GamePlayerJoinArenaEvent event){
final Player player = event.getPlayer();
}

@EventHandler
public void GamePlayerKill(final GamePlayerKillEvent event){
final Arena arena = event.getArena();
final Player player = event.getPlayer();
}

@EventHandler
public void GamePlayerOpenGui(final GamePlayerOpenGuiEvent event){
final Player player = event.getPlayer();
final GuiType guiType = event.getGuiType();
}

@EventHandler
public void GameReload(final GameReloadEvent event){
final Arena arena = event.getArena();
}

@EventHandler
public void GameStartEvent(final GameStartEvent event){
final Arena arena = event.getArena();
}


}

6c20c2671a64121df6a080fbd4dcd6dede2dd4c9

172.93.101.28:25596
d39ef046fffec5b074611b29d65547026ff45272

Obsly.net
134b472ff0fd04dda8676fc3694625c54032114a



20c9c3eb653032913e9c51ffba67627b66b465fa
Code (YAML):
menus:
# To create a custom inventory
menu_section
:
# It will be the title of the inventory
inventory_title
: "&aThis is the &ctitle"
# The rows that the menu will have
inventory_rows
: 3
items
:
# How to create a custom item?
custom
:
# The item can be named or with the id, if it does not have data set it to 0 and the number of items that will appear
item
: ITEM;DATA;AMOUNT
# If the item is SKULL_ITEM you can place some texture on the head:
# On this page https://minecraft-heads.com/ you will find textures, when you have selected a texture
# almost at the end of the page you will find a link and you will copy it and paste it here
skull
: LINK;http://textures.minecraft.net/textu...f939dd83f00bce70b3d9130d419d226edca3300015d95
# If you want the texture to belong

Latest updates

  1. 1.8.0 - CRACKED

    1.8.0 - CRACKED
  2. 1.8.0

    1.8.0
  3. 1.8.0

    1.8.0

Similar resources

HSKYWARS | COSMETICS, SOLO, TEAM, RANKED | ENGLISH SPANISH 2.0.5 Eternityplay_JissFx
The best skywars plugin with two language systems, taunts, balloons, animated cages and much more.
1.00 star(s) 1 ratings
Downloads
333
Updated
[RE-CODING 20% OFF] HSKYWARS | COSMETICS, SOLO, TEAM, RANKED | ENGLISH SPANISH | CRACKED BY ZIUE devuxious
[RE-CODING 20% OFF] HSKYWARS | COSMETICS, SOLO, TEAM, RANKED | ENGLISH SPANISH | CRACKED BY ZIUE
4.50 star(s) 4 ratings
Downloads
309
Updated
BlackSpigot General Chat
Rules Help Users
    H @ HydrXyne123: Hey
    Top