This page is for tools that I've built for gurps, role playing games in general, fiddling with GCS files and drawing maps.
This is a simple Scalable Vector Graphics (SVG) file that will assist you in building a dungeon map in Inkscape or any other SVG-compatible drawing program. The result will be a simple black and white file similar to maps in many RPG books. The only colored thing in the file is the array of grid lines in the Graph layer (see below). These are blue with a slight hint of purple and are transparently blended over the top of everything else.
Off to the left side of the drawing area, this file contains a collection of ready-made parts you can copy and paste into the map. There are three sections, Doors, Stairs and Objects. Everything in the tool box has some invisible white space around it, so the parts can be easily manipulated into the grid.
Doors contains various kinds of doors, ranging from regular doors to double doors to trap doors.
Stairs contains two sizes of stairs facing in all directions.
Objects contains an assortment of items you can drop on the map, like columns, pit traps and mine car rails.
These are very simple. You just draw white shapes with a 1 pixel-wide white stroke. If you want to keep things simple, just draw rectangles aligned to the grid.
You can draw these as 2 pixel wide black lines with square caps, not butt caps. Butt caps will be too short in most cases.
I've built a GCS export template to produce DokuWiki markup based on the syntax of the wrap and plaintext plugins, here. The customized version for Islands of War is here.
That is downloaded and processed on the command line with this bash script:
#!/bin/bash DOKU_BASE_URL='http://localhost/islandsofwar' wget -q -O - http://localhost/islandsofwar/wiki/tools/gcs/character_sheet_template?do=export_raw |sed 's/ / /g' |sed -e 's/</</g' -e 's/>/>/g' |sed 's/$/ <br>/'
The processed version is used to export a GCS character sheet as html and viewed in your browser. Finally, you can copy-and-paste what is displayed in the browser into DokuWiki as page source.
I wish there were an easier process for doing this, but GCS' export method leaves much to be desired in the way of configurability. It's designed to produce HTML only. It isn't easy to shoehorn it into doing something else.
For your convenience, here's the processed version of the template.
This is mostly a reminder note to myself, since no one other than myself can edit this wiki, but I suppose this might also be of use to those using the source dumps of the wiki.
There are a few easily added snippets for pages listed here. Anything linked from that page will show up in the list available through the snippets editor button.