Difference between revisions of "Briefing Text"

From FreeSpace Wiki
Jump to: navigation, search
(They work in recommendations, too.)
(Adding Orange; belatedly mentioning that color tags can be customized now.)
 
Line 3: Line 3:
 
==Colors==
 
==Colors==
  
The hue of these colors can be changed with the [[Colors.tbl]] but the tags will remain the same.
+
The hue of these colors can be changed with the [[Colors.tbl]] but the tags will remain the same. As of r10926, the tags can also be customized.
  
 
A note about color tags: The color tag will work on all font until a space is encountered. There needs to be a space after the tag, before the text to be colorized (although it's not actually required after r5840, it is recommended due to the way FSO wordwrapping works). There is a method to color spans of text, which is discussed in the Misc section below.
 
A note about color tags: The color tag will work on all font until a space is encountered. There needs to be a space after the tag, before the text to be colorized (although it's not actually required after r5840, it is recommended due to the way FSO wordwrapping works). There is a method to color spans of text, which is discussed in the Misc section below.
Line 26: Line 26:
 
*'''<span style="color:#B99696">Pink</span>: $p'''
 
*'''<span style="color:#B99696">Pink</span>: $p'''
 
*'''<span style="color:#E6BEBE">Bright Pink</span>: $P'''
 
*'''<span style="color:#E6BEBE">Bright Pink</span>: $P'''
 +
*'''<span style="color:#FF7F00">Orange</span>: $o'''
  
 
==Misc==
 
==Misc==

Latest revision as of 15:12, 23 June 2016

These tags can be used to manipulate text messages in command and mission briefings, and the fiction viewer. As of r10846, they work in debriefings, too.

Colors

The hue of these colors can be changed with the Colors.tbl but the tags will remain the same. As of r10926, the tags can also be customized.

A note about color tags: The color tag will work on all font until a space is encountered. There needs to be a space after the tag, before the text to be colorized (although it's not actually required after r5840, it is recommended due to the way FSO wordwrapping works). There is a method to color spans of text, which is discussed in the Misc section below.

Example: '$b This is $b blue $b text' will show as 'This is blue text'

  • Bright White: $W
  • Standard (default) White: $w
  • Black: $k (Black)
  • Standard Blue: $b
  • Bright Blue: $B
  • Standard Green: $g
  • Bright Green: $G
  • Standard Yellow: $y
  • Bright Yellow: $Y
  • Gray: $e
  • Silver: $E
  • Violet Gray: $v
  • Violet: $V
  • Standard Red: $r
  • Bright Red: $R
  • Pink: $p
  • Bright Pink: $P
  • Orange: $o

Misc

  • The breaking tag $| can be used to stop a color before a character.
    • $g Standard Green = Standard Green.
    • $g Stand$|ard Green = Standard Green.
      • If the above causes wordwrapping oddness, you may want to write $g Stand$| ard Green (output is identical: Standard Green).
  • $quote will create double quotes.
    • Goober is $quotesilly$quote = Goober is "silly".
  • $semicolon will create a semicolon.
  • $callsign places the pilot name in its place.
  • $rank places the player's rank in its place.
  • $f, $h, & $n will color the text with the default colors for Friendly, Hostile and Neutral respectively. The colors are defined in the iff_defs.tbl.
  • Most special characters such as the comma ',', question mark '?', and exclamation point '!' cannot be colored as of 3.6.14.
  • To color spans of text use $c{ and $}.
    • The $y{ quick $g{ brown fox $r jumps over $} the lazy $} dog. = The quick brown fox jumps over the lazy dog.
    • This method will color special characters such as the comma ',', question mark '?', and exclamation point '!'
    • This method requires FSO build 8786 or later.
    • As of r10846, color spans work across linebreaks as well (either manually-added, or automatic from wordwrapping).