Science and technology

5 methods to make use of Emacs as your RPG dashboard

There are two methods to play a tabletop role-playing sport (RPG): You can play an journey written by the sport’s writer or an unbiased writer, or you possibly can play an journey that’s made up as you go. Regardless of which you select, there’s in all probability prep work to do. One participant (generically referred to as the sport grasp) should collect monster or enemy stats, loot tables, and references for guidelines, and the opposite gamers should construct characters and apportion (fake) tools. Nothing’s going to eradicate prep work from a posh RPG, however when you’re an Emacs consumer, you may discover that Emacs makes an excellent dashboard to maintain every little thing all straight.

Organize the principles

Unfortunately, the digital editions of many RPGs are distributed as PDFs as a result of that is what the RPG writer despatched to the printer for the bodily version. PDFs are good at preserving structure, however they’re removed from a super eBook format. If you play RPGs revealed underneath an open license, you possibly can typically get hold of the principles in alternate codecs (similar to HTML), which supplies you extra management and adaptability. Even the world’s first and most well-known RPG, Dungeons & Dragons, offers its guidelines as a free obtain in digital format (which has been translated into HTML and Markdown by many a web site).

I open the principles as Markdown in Emacs in order that I’ve a searchable reference on the prepared. While opening the principles as a PDF in a PDF reader enables you to seek for embedded textual content, utilizing a textual content file as a substitute offers a number of advantages. First of all, a textual content file is far smaller than a PDF, so it is sooner to load and to look. Second, textual content information are simply editable, so when you discover a rule that sends you searching for clarification, you possibly can add what you study (or no matter you make up) immediately into your grasp doc. You can even add home guidelines and extra sources. My goal is to have a single file that accommodates all the guidelines and sources I exploit in video games I run, with every little thing a fast Ctrl+s (C-s in Emacs notation) away.

Manage initiatives

Most RPG methods function a technique to find out the order of play throughout fight. This is often referred to as initiative, and it comes up loads because the supply of battle in video games typically includes fight or some type of opposed aggressive motion. It’s not that tough to maintain observe of fight with pencil and paper, however in video games the place I am utilizing digital property anyway, I discover it simpler to remain digital for every little thing. Luckily, the venerable Org mode offers a superb answer.

When gamers roll for initiative, I sort their names into Emacs’ scratch buffer. Then I sort every monster or enemy, together with the hit or well being factors (HP) of every, adopted by two columns of zero:

brad
emily
zombie 22 zero zero
zombie 22 zero zero
flesh-golem 93 zero zero

Then I choose the block of participant characters (PCs) and monsters and use the org-table-create-or-convert-from-region operate to create an Org mode desk round it. Using Alt+Down arrow (M-down in Emacs notation), I transfer every PC or monster into the proper initiative order.

| emily       |    |   |   |
| flesh-golem | 93 | zero | zero |
| zombie      | 22 | zero | zero |
| brad        |    |   |   |
| zombie      | 22 | zero | zero |

During fight, I solely have to report injury for monsters, as a result of the gamers handle their very own HP. For the enemies I management in fight, the second column is its HP (its beginning quantity is taken from the RPG system’s guidelines), and the third is the injury dealt through the present spherical.

Table formulation in Org mode are outlined on a particular TBLFM line on the finish of the desk. If you have used any computerized spreadsheet for something, Org table shall be pretty intuitive. For fight monitoring, I need the third column to be subtracted from the second. Columns are listed from left to proper ($1 for the primary, $2 for the second, and $three for the third), so to interchange the contents of column $2 with the sum of columns $2 and $three, I add this line to the underside of the desk:

#+TBLFM: $2=vsum($2 - $three)

I do not truly sort that into Emacs each time the sport enters fight mode. Instead, I’ve outlined an auto-completion set off with Emacs’ abbrev mode, a system that permits you to sort in a particular string of your selecting, which Emacs expands into one thing extra advanced. I outline my abbreviations in a file referred to as ~/.emacs.d/abbrev_defs, utilizing rpgi adopted by a Space because the set off for Emacs to alter the road to my initiative desk components:

(define-abbrev-table 'global-abbrev-table
  '(
    ("rpgi" "#+TBLFM: $2=vsum($2 - $3)" nil zero)
   ))

Each time a participant offers injury to a monster, I enter the quantity of harm within the injury column. To set off a desk recalculation, I press Ctrl+u Ctrl+c (i.e., C-u C-c in Emacs) or Ctrl+c Ctrl+c (i.e., C-c C-c) if I occur to be on the components line: 

| brad        |    |    |
| emily       |    |    |
| zombie      | 12 | 10 |
| zombie      | 15 |  7 |
| flesh-golem | 91 |  2 |
#+TBLFM: $2=vsum($2 - $three)

This system is not good. Character names cannot comprise any areas as a result of Org desk splits cells by white house. It’s comparatively simple to overlook that you simply processed one line and by accident reprocess it on the finish of a spherical. To add HP again to a creature’s complete, it’s a must to use a unfavorable quantity. (I consider it as unfavorable injury, which suggests well being.) Then once more, many computerized initiative trackers undergo the identical issues, so it isn’t a very dangerous answer. For me, it is one of many sooner strategies I’ve discovered (I am completely satisfied to confess that MapTool is one of the best, however I exploit my Emacs workflow once I’m not utilizing a digital shared map).

View PDFs in DocView

Sometimes a PDF is unavoidable. Whether it is a d100 checklist of tavern names or a dungeon map, some sources exist solely as a PDF with no extractable textual content information. In these instances, Emacs’ DocView bundle can assist. DocView is a mode that masses PDF information and generates a PNG file so that you can view (Emacs can even view JPEG information). I’ve discovered that enormous PDFs are problematic and gradual, but when it is a low-resolution PDF with only one or two pages, DocView is a simple solution to reference a doc with out leaving Emacs.

I exploit this mode completely for maps, tables, and lists. It’s not helpful for something that may contain looking out, as a result of textual content information is not accessible, nevertheless it’s an amazingly helpful function for paperwork you solely have to look at.

The Ghostscript suite that ships with most Linux distributions (or actually is obtainable in your repository) permits you to course of PDFs, drastically simplifying them by decreasing the decision of photos from print high quality to display high quality. The command accommodates principally PostScript instructions and attributes, however you needn’t develop into a PostScript skilled to carry out a fast down-res:

$ gs -sDEVICE=pdfwrite -dCompatibilityLevel=1.four
-dPDFSETTINGS=/e book -dNOPAUSE -dBATCH
-sOutputFile=journey.pdf
-dDownsampleColorImages=true
-dColorImageResolution=72 big-adventure-module.pdf

Opening PDFs in Emacs is not as thrilling as it could sound. It’s not by any means a first-class PDF viewer, however for choose sources, it may be a handy solution to maintain all of your info on one display.

Create journey rap sheets

Published adventures are sometimes heavy on prose. The concept is that you have paid some huge cash for a ready journey, so that you clearly need worth in your buy. I do worth the lore and world-building that authors put into their adventures, however throughout a sport, I prefer to have a fast reference to the data I want for the sport mechanics to work as supposed. In different phrases, I needn’t have the story of why a entice was positioned in a dungeon when a rogue triggers it; I solely have to know that the entice exists and what the rogue must roll in an effort to survive.

I have not discovered any fashionable journey format that gives me with simply that info, so I find yourself creating my very own “rap sheets”: a minimal define for the journey, with simply the sport mechanics info I want for every location. Once once more, Org mode is the easiest way for me to maintain this info helpful.

In Org mode, you create lists utilizing asterisks for bullet factors. For a sub-item, add an asterisk. Even higher, press C-c t (that is Ctrl+c after which the t key) to mark the merchandise as a TODO merchandise. When your gamers clear an space within the sport, press C-c t once more to mark the placement DONE.

* DONE 1 Entrance
** Zombie
AC 9 | HP 22
* TODO 2 Necromancer's chambers
** Flesh golem
AC 16 | HP 93
** Treasure
- Gold ring (200 gp)
- Rusty nail (1 cp)
  Cursed (roll on curse desk)
** Secret door (DC 20)
- to space 11

Each asterisk is collapsible, so you may get a abstract of a worldwide space by collapsing your checklist down to simply the top-level:

* DONE 1 Entrance
* TODO 2 Necromancer's chambers
* TODO three Wyrmling nursery
* TODO four Caretaker's chambers
* TODO 5 Caretaker's laboratory

An added bonus: I discover that making my very own rap sheets helps me internalize each the mechanics and the lore of the journey I am getting ready, so the advantages to this technique are quite a few. Since I handle any journey I run in Emacs with Git, as soon as I do the prep work for an journey, I’ve recent copies of all my property in case I run the journey with one other group or with a set of recent characters.

Make your individual journey journal

Generally, I let my gamers maintain their very own notes in regards to the journey as a result of I wish to encourage gamers to interpret the occasions occurring within the journey for themselves. However, a sport grasp wants non-public notes to maintain all the improvised information so as. For instance, if a printed journey does not function a blacksmith store, however gamers resolve to go to a blacksmith, then a blacksmith must be invented within the second. If the gamers revisit the blacksmith six weeks later, then they anticipate it to be the identical blacksmith, and it is as much as the sport grasp to maintain observe of such additions to the revealed setting. I handle my private notes about adventures in two other ways, relying on what’s accessible to me.

If I’ve the textual content of the journey in an editable format (similar to HTML or Markdown), I enter my additions into the journey as if the writer had included them from the beginning. This means there’s all the time one supply of reality for the setting and for important occasions.

If I have not been capable of get an editable copy of the journey as a result of it is a exhausting copy or a PDF that is not simply modified, then I write my additions into my rap sheets in Org mode. This functionally implies that there’s nonetheless one supply of reality as a result of my rap sheets are the primary place I search for info, falling again on the revealed textual content just for particulars I’ve forgotten. Sometimes I like my additions sufficient to merge them again into my Git grasp for the journey, however normally, I belief in improvisation and let additions occur dynamically for every group that performs the journey.

Why Emacs is my favourite RPG dashboard

I’ve fallen into utilizing Emacs for RPGs as a result of it serves because the heads-up show of my goals. The “right” reply might be tiling window manager, however till I implement that, I am pleased with Emacs. Everything’s certain to keyboard shortcuts designed for specificity and pace, and there is simply sufficient simple customization that I can hack collectively good-enough options—typically even whereas gamers are arguing with each other about what to do subsequent.

I’ve tried juggling a number of desktops, a number of PDF reader home windows, and a spreadsheet for initiatives; whereas it is a nice expertise, nothing has equaled the fluidity of Emacs as my RPG dashboard.


Hey! do you like Emacs? Write an article about how you employ an Emacs (GNU or in any other case) for inclusion in our forthcoming Emacs collection!

Most Popular

To Top