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

  • Skin Browser
  • Cape Gallery
  • Seed Vault
  • Blog
  • Guides

Database

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

Tools

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

Mods & Packs

  • Mods
  • Plugins
  • Resource Packs
  • Shaders
  • Datapacks

Site & Legal

  • About
  • Authors
  • Editorial Policy
  • Corrections
  • Contact
  • Privacy Policy
  • Terms of Service
  • DMCA
  • Sitemap

© 2026 MinecraftBible. Not affiliated with Mojang or Microsoft.

PrivacyTermsContact
VelocityWakeUp
PluginLicenseRef-All-Rights-Reserved

VelocityWakeUp

Automatically starts your backend servers when a player tries to connect

31
Downloads
1
Followers
1 months ago
Updated
📦
2
Versions
technologyutilityvelocity
Download Latestv1.1.1View on Modrinth

📖About VelocityWakeUp

VelocityWakeUp

EN:
Automatically starts your backend servers when a player tries to connect - no more manual startups.
Inspired by ServerAlarmClock by silvervoid. Since the original only supports Bungeecord, this plugin brings the same idea natively to Velocity.

Works great alongside ServerSleepingPill - let it put servers to sleep, and VelocityWakeUp will wake them back up on demand.

How it works:
When a player connects to an offline server, the plugin creates a flag file. Your startup script detects it and launches the server. Once it's online, the player is connected automatically.

RU:
Автоматически запускает ваши бэкенд-серверы, когда игрок пытается подключиться - больше не нужно запускать их вручную.
Создан по мотивам ServerAlarmClock от silvervoid. Поскольку оригинал поддерживает только Bungeecord, этот плагин реализует ту же идею непосредственно в Velocity.

Отлично работает в сочетании с ServerSleepingPill - пусть он переводит серверы в спящий режим, а VelocityWakeUp разбудит их по требованию.

Как это работает:
Когда игрок подключается к офлайн-серверу, плагин создает файл-флаг. Ваш скрипт запуска обнаруживает его и запускает сервер. Как только сервер становится онлайн, игрок подключается автоматически.

Made with claude.ai

Command to restart your config
/wakeup reload
config.yml
# VelocityWakeUp v1.1.1
# Automatically starts backend servers when a player tries to connect.
#
# The key under 'servers' must exactly match the server name in velocity.toml.
#
# flag-file: path to a file your startup script monitors.
#   The plugin CREATES this file when a player connects to an offline server.
#   Your script detects it, starts the server, then the plugin connects the player.

messages:
  starting: "&eThe server is waking up, please wait..."
  failed:   "&cCould not signal server start. Contact an admin."
  timeout:  "&cServer took too long to start. Try again later."
  # Message shown when player successfully cancels the wait
  cancelled: "&aYou have cancelled waiting for the server."
  # Text of the clickable [Cancel] button appended to the starting message
  # Supports & color codes
  cancel-button: "&c[Cancel]"
  # Hover tooltip shown on the cancel button
  cancel-button-hover: "&7Click to cancel waiting and return to the hub."

timing:
  startup-timeout-seconds: 60
  message-interval-seconds: 5

cancel:
  # Whether the cancel button is shown at all
  enabled: true
  # Command executed when the player clicks the cancel button.
  # Use {player} placeholder for the player's name.
  # Leave empty ("") to run no command.
  # Examples:
  #   "server hub"        — send player to hub (runs as player via /server)
  #   "kick {player} Cancelled waiting" — kick via console command
  #   "warp spawn"        — run any proxy/backend command as the player
  command: "server hub"
  # Who runs the command:
  # "player"  — Velocity proxy executes the command on behalf of the player.
  #             Use this for PROXY-level commands (e.g. "server hub").
  # "console" — Velocity proxy console executes the command.
  #             Use this for proxy console commands (e.g. "kick {player} ...").
  # "backend" — The command is sent to the backend server where the player
  #             currently is, as if the player typed it in chat.
  #             Use this for BACKEND (Paper/Spigot/etc.) commands (e.g. "restorepack", "spawn").
  executor: "player"

servers:
  # Example — replace with your actual server name from velocity.toml
  survival:
    flag-file: "D:/mc/survival/start.flag"
start command example
@echo off
chcp 65001 > nul
set FLAG_FILE=C:\YOUR DIRECTORY HERE\start.flag

cd /d C:\YOUR DIRECTORY HERE

:loop
if exist "%FLAG_FILE%" (
    del /f "%FLAG_FILE%"
    STARTUP COMMAND HERE
)
ping -n 3 127.0.0.1 > nul
goto loop

👥 Team & Contributors

yarchesun
yarchesunOwner

⚙️ Compatibility

Environment
🖥️ Server-side
Loaders
velocity
Minecraft Versions
26.1.2

🔗 Links

Modrinth Page