Logo
MINECRAFTBIBLE
Items
Items

All game items

Blocks
Blocks

Building blocks

Mobs
Mobs

Creatures & monsters

Biomes
Biomes

World biomes

Structures
Structures

Generated structures

Recipes
Recipes

Crafting guides

Advancements
Advancements

Achievements

Loot Tables
Loot Tables

Drop rates

Tags
Tags

Item groupings

All Versions
View all data →
Capes
Cape ArchiveNEW

Browse rare Minecon capes, OptiFine capes, and custom capes from players worldwide

Browse

Player Database
Player DatabasePopular

Search any player

Skin Browser
Skin Browser

Browse & download skins

Cape Gallery
Cape GalleryNEW

Minecon & OptiFine capes

Seed Vault
Seed Vault

Curated seeds

Learn

Guides
GuidesNew

Tutorials & tips

Blog
Blog

News & updates

Community

Community Hub
Community HubHub

Posts, discussions & more

All Versions
View community →
Seed Analyzer
Seed Analyzer

World seed analysis

Loot Explorer
Loot Explorer

Drop rates

Crafting Calculator
Crafting Calculator

Material planning

Enchant Calculator
Enchant Calculator

Probability math

Redstone Lab
Redstone Lab

Signal timing

Trading Profit
Trading Profit

Villager ROI

All Versions
View all tools →
Mods
Mods

Browse all mods

Plugins
Plugins

Server plugins

Resource Packs
Resource Packs

Textures & sounds

Shaders
Shaders

Visual enhancements

Datapacks
Datapacks

World logic

Scanner
Mod Intelligence

Scan & analyze any mod

All Versions
View all mods →
Loading...
IntroductionIntroductionVersion HistoryVersion HistoryGuidesGuidesBlog & NewsBlog & News
ItemsItemsBlocksBlocksMobsMobsRecipesRecipesBiomesBiomesStructuresStructuresAdvancementsAdvancementsLoot TablesLoot TablesTagsTags
ModsModsPluginsPluginsResource PacksResource PacksShadersShadersDatapacksDatapacks

MinecraftBible

The Ultimate Wiki

Logo
MINECRAFTBIBLE

The ultimate Minecraft reference. Every item, block, mob, and recipe documented with precision.

Community

  • Player Database
  • Skin Browser
  • Cape Gallery
  • Community Hub
  • Seed Vault

Database

  • Items
  • Blocks
  • Mobs
  • Recipes
  • Biomes
  • Structures

Tools

  • Seed Analyzer
  • Mod Intelligence
  • Crafting Calculator
  • Enchant Calculator

Mods & Packs

  • Mods
  • Plugins
  • Resource Packs
  • Shaders
  • Datapacks

© 2026 MinecraftBible. Not affiliated with Mojang or Microsoft.

PrivacyTermsContact
FancySetSpawn
PluginGPL-3.0-or-later

FancySetSpawn

FancySetSpawn is a simple plugin for managing spawn points, with customizable messages and sound effects for teleportation and player joining. /setspawn, /spawn [Supports 1.21.x]

555
Downloads
1
Followers
1 years ago
Updated
📦
3
Versions
game-mechanicstechnologyutilitybukkitpaperpurpurspigot
Download Latestv1.2View on Modrinth

📖About FancySetSpawn

baner

This plugin allows players to set a spawn point and teleport to it.

Features

  • Set spawn: Players can set the spawn to their current position using the /setspawn command.
  • Teleport to spawn: Players can teleport to the spawn using the /spawn command.
  • Sound effects: The plugin plays sound effects during teleportation and spawn setting.
  • Configuration management: The plugin uses configuration files to manage messages and sounds.

Installation

  1. Download the plugin from GitHub.
  2. Place the plugin files into the plugins folder of your Minecraft server.
  3. Restart the server.

Usage

  • Set spawn: Use the /setspawn command.
  • Teleport to spawn: Use the /spawn command.

Configuration

The plugin configuration can be found in the config.yml file. Here you can modify messages and sound effects.

Configuration Examples

messages:
  messageLocation: actionbar # Possible values: chat or actionbar
  spawnSet: "&aSpawn has been set to your current location!"
  teleportToSpawn: "&aYou have been teleported to spawn!"
  spawnNotSet: "&cSpawn position is not set."
  commandOnlyPlayer: "&cThis command can only be used by a player."
sounds:
  teleport: "minecraft:entity.experience_orb.pickup"
  setSpawn: "minecraft:entity.experience_orb.pickup"
  playerJoin: "minecraft:entity.player.levelup"  # Sound when a player joins
soundSettings:
  volume: 1.0
  pitch: 1.0

API Usage (Requires version 1.2 or higher)

The plugin provides a simple API for other plugins:

// Example usage of the API in another plugin
public void teleportToSpawn(Player player) {
    // Get the instance of the FancySpawn plugin
    SetSpawn plugin = (SetSpawn) getServer().getPluginManager().getPlugin("FancySetSpawn");
    
    if (plugin != null && plugin.isEnabled()) {
        // Get the API
        FancySpawnAPI api = plugin.getAPI();
        
        // Teleport the player to the spawn location
        api.teleportPlayerToSpawn(player);
    }
}

Available API Methods

  • getSpawnLocation() – Returns the spawn location
  • teleportPlayerToSpawn(Player) – Teleports the player to the spawn location
  • isSpawnSet() – Checks whether the spawn location is set

👥 Team & Contributors

patekcz
patekczOwner

⚙️ Compatibility

Environment
🖥️ Server-side
Loaders
bukkitpaperpurpurspigot
Minecraft Versions
1.211.21.11.21.21.21.31.21.41.21.5

🔗 Links

Modrinth Page