Documentation โข GitHub โข Modrinth โข Discord
Skyllia is a modern, high-performance Skyblock plugin, designed from the ground up to fully leverage the multi-threaded architecture of Folia. The first of its kind to offer native Folia compatibility, Skyllia delivers exceptional performance even with hundreds of simultaneous players.
- First Folia-compatible Skyblock plugin โ Native multi-threaded architecture
- Asynchronous system โ No freezes, no lag (as long as your server configuration allows)
- Database support โ SQLite, MariaDB, PostgreSQL
- HikariCP connection pool โ Optimal performance
- Asynchronous saving โ Zero performance impact
- Instant creation โ Optimized queue system
- Customizable schematics โ WorldEdit/FAWE or built-in system
- Multi-world โ Overworld, Nether, End all configurable
- Automatic portals โ Smooth navigation between dimensions
- Configurable spacing โ Adjustable distance between islands
- 6 predefined roles โ Owner, Co-Owner, Moderator, Member, Visitor, Ban
- 50+ granular permissions โ Full control per role
- Temporary trust โ Configurable guest access
- Modular system โ Create your own roles
- Island warps โ Quick teleportation to your island
- Customizable biomes โ Change the atmosphere of your island
- Per-island game rules โ PvP, mobs, explosions, etc.
- Ban system โ Ban griefers from your island
- Invitations โ Invitation system with expiry
- PlaceholderAPI โ Variables for scoreboard, tab, etc.
- Vault โ Economy support (via SkylliaBank)
- WorldEdit/FAWE โ High-performance schematics
- Insights โ Block limits (via InsightsSkyllia)
Extend Skyllia with 5 free official addons:
| Addon | Description |
|---|---|
| SkylliaBank | Shared island bank system with transaction history |
| SkylliaOre | Configurable automatic ore generator |
| SkylliaChallenge | Daily/weekly challenges with rewards |
| SkylliaChat | Per-island chat with multiple channels |
| InsightsSkyllia | Block and entity limits per island |
- Server: Folia 1.20.6+ or Paper 1.20.6+
- Java: 21 or higher
- RAM: 4GB minimum, 8GB+ recommended
- Database (optional): MariaDB 10.5+ or PostgreSQL 12+ (prefer PostgreSQL for large servers)
- WorldEdit or FastAsyncWorldEdit (recommended)
- Vault (for SkylliaBank)
- PlaceholderAPI (for placeholders)
- LuckPerms (for server permissions)
- Download Skyllia from Modrinth or GitHub Releases
- Place the .jar in
plugins/ - Start the server (first initialization)
- Configure in
plugins/Skyllia/config/ - Restart and you're good to go!
# config.toml
[settings.island]
region-distance = 10 # 5120 blocks between islands, 1 region = 512x512
max-islands = 500_000
# database.toml - SQLite by default
[sqlite]
enabled = trueFor a full installation guide, check the documentation.
Full documentation is available on GitBook:
Skyllia provides a complete API to create your own addons:
<!-- Maven -->
<repository>
<id>euphyllia-repo</id>
<url>https://repo.euphyllia.moe/repository/maven-public/</url>
</repository>
<dependency>
<groupId>fr.euphyllia.skyllia</groupId>
<artifactId>api</artifactId>
<version>3.x</version>
<scope>provided</scope>
</dependency>import fr.euphyllia.skyllia.api.SkylliaAPI;
import fr.euphyllia.skyllia.api.island.Island;
import org.bukkit.entity.Player;
Island island = SkylliaAPI.getIslandByPlayerId(player.getUniqueId());
if(island != null){
player.sendMessage("Your island: "+ island.getId());
}See the API documentation for more information.
/island create <type> - Create an island
/island home - Teleport to your island
/island invite <player> - Invite a player
/island delete - Delete your island
/island biome <biome> - Change the biome
/island expel <player> - Expel a visitor
/isadmin reload - Reload configs
/isadmin setsize <player> <size> - Modify island size
/isadmin teleport <player> - TP to a player's island
Full list: Player commands โข Admin commands
Skyllia is open source, you can contribute via:
- Bug reports โ GitHub Issues
- Suggestions โ Discord or GitHub Discussions
- Community addons โ Share your creations!
- GitHub: Euphillya/Skyllia
- Issues: Report a bug
- Discord: Euphyllia Server
Skyllia is licensed under the MIT License. For more details, see the LICENSE file in the GitHub repository.