All Projects → Incendo → Hyperverse

Incendo / Hyperverse

Licence: GPL-3.0 License
A Minecraft world management plugin

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Hyperverse

SquidGame
Minecraft Minigame inspired by the famous and trending Netflix series "Squid Game"
Stars: ✭ 36 (-32.08%)
Mutual labels:  bukkit, spigot, spigot-plugin, bukkit-plugin
ExploitFixer
Bukkit plugin that aims on fixing Exploits in your Minecraft network. [Requires HamsterAPI to work]
Stars: ✭ 141 (+166.04%)
Mutual labels:  bukkit, spigot, spigot-plugin, bukkit-plugin
Parkour
The ultimate Parkour plugin.
Stars: ✭ 59 (+11.32%)
Mutual labels:  bukkit, spigot, spigot-plugin, bukkit-plugin
DragonTravel
A plugin for the Minecraft-servermods "Bukkit" and "Spigot".
Stars: ✭ 17 (-67.92%)
Mutual labels:  bukkit, spigot, spigot-plugin, bukkit-plugin
Boss
Premium custom monsters plugin with skill system, natural spawning and lots of sickest features!
Stars: ✭ 72 (+35.85%)
Mutual labels:  bukkit, spigot, spigot-plugin, bukkit-plugin
UltiTools
This is a sum of some basic plugins of a Bukkit server or Spigot server. Including a few useful and creative functions.
Stars: ✭ 17 (-67.92%)
Mutual labels:  bukkit, spigot, spigot-plugin, bukkit-plugin
MyPet
🐕 Extensive pet plugin for Bukkit/Spigot
Stars: ✭ 106 (+100%)
Mutual labels:  bukkit, spigot, spigot-plugin, bukkit-plugin
Chatty
Bukkit-compatible chat plugin with multiple chat-modes.
Stars: ✭ 30 (-43.4%)
Mutual labels:  bukkit, spigot, spigot-plugin, bukkit-plugin
ClayTech
An addon for slimefun.
Stars: ✭ 15 (-71.7%)
Mutual labels:  bukkit, spigot, spigot-plugin, bukkit-plugin
TotalFreedomMod
A server modification for the TotalFreedom server
Stars: ✭ 41 (-22.64%)
Mutual labels:  bukkit, spigot, spigot-plugin, bukkit-plugin
AntiCheatReloaded
The free anti-cheat since 2016
Stars: ✭ 94 (+77.36%)
Mutual labels:  bukkit, spigot, spigot-plugin, bukkit-plugin
EnchantmentsEnhance
✨ EE is a game progression mechanism plugin for spigot.
Stars: ✭ 31 (-41.51%)
Mutual labels:  bukkit, spigot, spigot-plugin, bukkit-plugin
MinecraftManhunt
Minecraft Bukkit plugin to run Manhunt minigames, with Discord music integration
Stars: ✭ 20 (-62.26%)
Mutual labels:  bukkit, spigot, spigot-plugin, bukkit-plugin
MythicDrops
Action RPG drops for Spigot.
Stars: ✭ 28 (-47.17%)
Mutual labels:  bukkit, spigot, spigot-plugin, bukkit-plugin
Osmium
Abstraction layer for Bukkit, Sponge and BungeeCord that allows for development on all platforms simultaneously.
Stars: ✭ 34 (-35.85%)
Mutual labels:  bukkit, spigot, spigot-plugin, bukkit-plugin
NBTEditor
An in-game NBT editor for Bukkit.
Stars: ✭ 41 (-22.64%)
Mutual labels:  bukkit, spigot, spigot-plugin, bukkit-plugin
BetterGUI
Another GUI Plugin
Stars: ✭ 66 (+24.53%)
Mutual labels:  bukkit, spigot, spigot-plugin, bukkit-plugin
MinecraftNetwork
Minecraft server network backend
Stars: ✭ 35 (-33.96%)
Mutual labels:  bukkit, spigot, spigot-plugin, bukkit-plugin
Islands
A spigot plugin for creating customisable home islands with different biomes. https://www.spigotmc.org/resources/islands-home-islands-system.84303/
Stars: ✭ 18 (-66.04%)
Mutual labels:  bukkit, spigot, paper, spigot-plugin
advanced-region-market
A Bukkit/Spigot plugin for renting/selling WorldGuard regions
Stars: ✭ 40 (-24.53%)
Mutual labels:  bukkit, spigot, spigot-plugin

Hyperverse is W.I.P!

TeamCity CodeFactor Java CI with Maven

A Minecraft world management plugin for Bukkit 1.15 (backported to 1.14). More versions may come to be supported in the future.

Features

Current Features:

  • World creation
  • World importing (will automatically import worlds)
  • World loading/unloading
  • World teleportation
  • World flags (gamemode, local-spawn, force-spawn, pve, pvp, world-permission, nether, end, profile-group, difficulty, creature-spawn, mob-spawn, respawn-world, ignore-beds, alias, unload-spawn)
  • World game rules
  • Tab completed commands
  • Persistent world locations
  • Nether & end portal linking
  • Per world player data
  • Per world beds
  • World regeneration

Links

Downloads

Documentation

Contributing

Contributions are very welcome. Some general contribution guidelines can be found in CONTRIBUTING.md

Maven

<repositories>
    <repository>
        <id>intellectualsites-snapshots</id>
        <url>https://mvn.intellectualsites.com/content/repositories/snapshots</url>
    </repository>
</repositories>

<dependencies>
    <dependency>
      <groupId>se.hyperver.hyperverse</groupId>
      <artifactId>Core</artifactId>
      <version>0.9.0-SNAPSHOT</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>se.hyperver.hyperverse</groupId>
      <artifactId>Core</artifactId>
      <version>0.9.0-SNAPSHOT</version>
      <classifier>javadoc</classifier>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>se.hyperver.hyperverse</groupId>
      <artifactId>Core</artifactId>
      <version>0.9.0-SNAPSHOT</version>
      <classifier>sources</classifier>
      <scope>provided</scope>
    </dependency>
</dependencies>

API

A majority of the API is accessible using Hyperverse.getApi(). For example, creating a world is easy as:

WorldConfiguration worldConfiguration = WorldConfiguration.builder()
    .setName("your world").setType(WorldType.NETHER)
    .setWorldFeatures(WorldFeatures.FLATLAND).createWorldConfiguration();
try {
    HyperWorld world = Hyperverse.getApi().createWorld(worldConfiguration);
} catch (HyperWorldCreationException e) {
    e.printStackTrace();
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].