Skip to content

Notes for every server

Every Rust admin ends up with the same scattered mess: a wipe checklist in a text file, a plugin bug in a chat message, the one seed that made a good map lost in scrollback. The Notes tab gives each server its own notebook, right next to the server it belongs to.

Pages are written in markdown as you type it, saved as plain .md files on your PC, and kept even if you uninstall the app.

The Notes tab in Crucible Local Server, showing a wipe-day checklist page with ticked checkboxes, a quote and a JSON code block, next to the page list

Notes is one of the Advanced tabs. From a server’s Quick view, click Notes in the shortcut row at the bottom, or switch to Advanced and pick the Notes tab.

Each server has its own notebook. Nothing you write on one server shows up on another, except in search, which deliberately looks everywhere.

Click + in the page list to start a page. Give it a title, and pick a starter:

TemplateWhat you get
BlankAn empty page
Wipe checklistBefore / wipe / after steps, ready to tick
Map testWhat to check on a new map, plus a findings section
Plugin testPlugin, version, stack, config block, behaviour checks
Bug listA running list of what is broken
Server logThe page the app appends wipes and backups to

Every template is just markdown, so edit it however you like once it lands.

The new-page dialog in Crucible Local Server, showing the six page templates: Blank, Wipe checklist, Map test, Plugin test, Bug list and Server log

Type markdown and it formats as you go. The dialect is the one you already use in chat, so there is nothing new to learn:

Type thisYou get
**bold**bold
*italic*italic
__underline__underlined text
~~strike~~strike
`code`code
||spoiler||hidden until you click it
# Headinga heading (## and ### too)
- itema bullet list
1. itema numbered list
- [ ] taska checkbox you can tick
> quotea quote
```jsona code block, colour-coded
[[Page name]]a link to another page of this server

The toolbar above the page does the same thing if you would rather click, and it also carries three shortcuts of its own: insert a server snapshot, insert a timestamp, and copy the page as markdown.

- [ ] becomes a real checkbox. Ticking it writes the tick back to the file, so a wipe checklist keeps its state between sessions, and between wipes.

Type / at the start of an empty line to insert a block without leaving the keyboard: a checklist, a code block, a quote, a divider, a timestamp, or a server snapshot.

The slash menu open in a Crucible Local Server note, listing block options including checklist, code block, quote, divider, timestamp and server snapshot

Paste an image straight into a page with Ctrl+V and it is stored beside your notes, in an assets folder, and shown inline. The page keeps a normal markdown image link, so the file still opens correctly in any other markdown editor.

The snapshot button drops in a block recording the server exactly as it is right now: its map, seed, world size, branch, mod stack and max players.

This is the detail nobody writes down and everybody wants later. Weeks after a test, a note that says “the terrain broke here” is useless on its own; the same note with the map and seed beside it tells you which map broke.

In the Console tab, Copy to note appends the last 50 console lines to a “Console notes” page as a timestamped code block. The lines that explain a crash are gone the moment you restart, so capture them while they are on screen.

Crucible Local Server keeps a Server log page for each server by itself. It adds a dated line whenever you:

  • wipe the map, blueprints, or everything
  • restore a backup
  • change the assigned map
  • change the branch or the mod stack

It only ever appends, so nothing you write there is overwritten. Turn it off in Settings if you would rather keep the log yourself.

The search box above the page list searches every page of every server, not just the one you are looking at. Results show the page, the line, and which server it came from, and clicking one jumps straight there, switching servers if it has to.

Search results in Crucible Local Server notes, showing matches for a search term across pages, with the page name and line number for each hit

Copy as markdown copies the page ready to paste into a chat client. It also fixes up the parts that would otherwise paste as nonsense: tables become code blocks, checkboxes become and glyphs, and local images become a [image: name] line, since a file on your PC cannot render on someone else’s screen.

Chat clients cap a message at 2000 characters, so a long page is split into numbered parts.

Notes are plain .md files, one folder per server, stored outside the app’s own folder:

<Crucible install>\notes\<server name>\
wipe-day.md
plugin-bugs.md
server-log.md
assets\

That location is deliberate. It means your notes:

  • survive an uninstall. Removing Crucible Local Server, or the whole Crucible launcher, leaves your notes where they are. If you want them gone as well, there is a separate tick for that when you uninstall, and it is off by default.
  • survive an update. Updates replace the app, never your pages.
  • open anywhere. They are ordinary markdown. Any editor can read them, and any backup tool can copy them.

Use Open folder at the bottom of the page list to jump straight there.

Deleting a page asks first, and then really deletes it, so read the confirmation. Deleting a server never deletes its notes: they are kept, and if you recreate a server with the same name they come back with it.