Difference between revisions of "Briefing Text"

From FreeSpace Wiki
Jump to: navigation, search
(The times, they are a-changing...)
Line 1: Line 1:
These tags can be used to manipulate text messages in command and mission briefings. They don't work in debriefing stages.
+
These tags can be used to manipulate text messages in command and mission briefings. As of r10846, they work in debriefing stages, too.
  
 
==Colors==
 
==Colors==
Line 5: Line 5:
 
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.
  
A note about color tags: The color tag will work on all font until a space is encountered. There must also be a space after the tag and before the text to be colored. 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.
  
 
Example: '$b This is $b blue $b text' will show as '<span style="color:#5D5D80">This</span> is <span style="color:#5D5D80">blue text</span>'
 
Example: '$b This is $b blue $b text' will show as '<span style="color:#5D5D80">This</span> is <span style="color:#5D5D80">blue text</span>'
Line 32: Line 32:
 
**$g Standard Green = '''<span style="color:#007800">Standard</span> Green'''.
 
**$g Standard Green = '''<span style="color:#007800">Standard</span> Green'''.
 
**$g Stand$|ard Green = '''<span style="color:#007800">Stand</span>ard Green'''.
 
**$g Stand$|ard Green = '''<span style="color:#007800">Stand</span>ard Green'''.
 +
***If the above causes wordwrapping oddness, you may want to write $g Stand$| ard Green (output is identical: '''<span style="color:#007800">Stand</span>ard Green''').
 
*$quote will create double quotes.
 
*$quote will create double quotes.
 
**Goober is $quotesilly$quote = Goober is "silly".
 
**Goober is $quotesilly$quote = Goober is "silly".
Line 43: Line 44:
 
**This method will color special characters such as the comma ',', question mark '?', and exclamation point '!'
 
**This method will color special characters such as the comma ',', question mark '?', and exclamation point '!'
 
**This method requires FSO build 8786 or later.
 
**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).
  
 
[[Category:FRED Tips]]
 
[[Category:FRED Tips]]

Revision as of 15:03, 5 July 2014

These tags can be used to manipulate text messages in command and mission briefings. As of r10846, they work in debriefing stages, too.

Colors

The hue of these colors can be changed with the Colors.tbl but the tags will remain the same.

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

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).