Commands Reference

Every in-game /command and Discord !command that works on this server.

In-game commands

SimpleEssentials - general utilities

CommandWhat it does
/homeTeleport to your set home. /sethome to set it.
/spawnReturn to the world spawn point.
/tpa <player>Request teleport to another player. They must accept.
/tpaccept / /tpdenyRespond to the most recent teleport request.
/msg <player> <text>Private whisper.
/backReturn to your last position (typically after death).

SimpleClaims - chunk protection

CommandWhat it does
/sc claimClaim the chunk you're standing on for yourself or your party.
/sc unclaimRelease the current chunk.
/sc party create <name>Make a party. Anyone added can build in your claims.
/sc party invite <player>Invite a player into your party.
/sc infoShow who owns the current chunk.

VeinMining

CommandWhat it does
Hold Left Alt while miningVein-mine all connected blocks of the same type.
/veinminingOpen your per-player config (toggle, max blocks, etc.).

AutoQuickStack (SuperFriends original)

CommandWhat it does
/astackPush matching items from your inventory out to nearby chests that already hold that type. Run with your inventory open. Respects SimpleClaims.

WaybackCharm

ActionWhat it does
Right-click the Wayback CharmTeleports you to your set return point. Craft via the recipe shown in the in-game codex.

Discord bot commands

Post in #hytail-llm. Prefix with ! to ask Hytail LLM a question, or use one of the commands below.

Everyone

CommandWhat it does
!<anything>Ask the AI game-guide. Searches the RAG corpus, installed mod files, and (if the local model can't answer) the web or Gemini Flash.
!brokenReport a broken mod feature during the recovery window after an incident.
!correct <text>Correct the bot's last answer. Goes into a review queue for admins.
!forgetTell the bot to forget your conversation history for this session.

Teach the bot (community RAG learning)

When the local model falls back to Gemini Flash for an answer, the bot will ask "Did that help?". If you reply with one of these within 5 minutes, the Q&A gets saved into the local RAG corpus so the next person who asks the same thing gets an instant answer without hitting the cloud.

CommandWhat it does
!yConfirm the last Gemini answer was correct. Saves the Q&A into the community RAG file and triggers re-ingest. If more than one Gemini answer is pending, the bot will list them and ask you to pick.
!nThe answer didn't help - discard all pending answers for you.
!1, !2, ... !NWhen multiple answers are pending (more than one !-question in the last 5 minutes), pick a specific one to save.
!allSave every pending Gemini answer in the last 5 minutes.

Admin only - quick fixes

CommandWhat it does
!fix <key> <value>Inject a pinned fact into the RAG corpus.
!reloadragReload the RAG corpus from disk.
!quietSilence the bot for 10 minutes.
!lastqShow the last few user questions.

Admin only - direct file editing

Mechanical file ops against the bot and website trees (/opt/hytale-server/bot/, /opt/hytale-server/web/, /opt/hytale-server/backups/). Every edit creates a timestamped .bak-* next to the file. LanceDB, .git, and __pycache__ paths are blocked.

CommandWhat it does
!view <path> [start-end]Show a file (or a line range). Example: !view /opt/hytale-server/web/rules.html 20-40
!list <dir>List a directory inside the allowed roots.
!edit <path> <old> ==> <new>Replace the first occurrence of old with new in the file. Creates a backup.
!edit-all <path> <old> ==> <new>Replace every occurrence of old with new. Creates a backup.
!append <path> <text>Append a single line of text to a file.
!linedel <path> <start-end>Delete a range of lines (inclusive). Creates a backup.
!reloadRestart the hytale-bot service (uses scoped sudo NOPASSWD).
!ragreingestRe-ingest the entire RAG corpus in the background.

Admin only - let the LLM plan the edit

For when you want to describe a fix in plain English and let Gemini Flash translate it into a concrete sequence of file ops. The plan is shown to you as a preview and not executed until you confirm.

CommandWhat it does
!aifix <request in plain English>Ask the bot to propose a list of file-op commands. Example: !aifix PvP is off by default - update the rules page to say so. The bot replies with a numbered plan and waits for !confirm.
!confirmExecute the most recent !aifix plan (valid for 10 minutes).
!abortDiscard the pending plan without running it.
Audit trail: every admin edit is logged to /opt/hytale-server/bot/admin_ops.log with the user, command, and timestamp. Every file change leaves a .bak-<name>.<nanosecond-ts> backup next to the original.
Missing a command? The bot itself is the best reference - ask !what commands does <mod> have and it will check the mod's manifest and sidecar docs in real time.