Difference between revisions of "HB-TML"

From Hobowars Wiki
Jump to: navigation, search
(Smileys)
(Emoticons)
 
(44 intermediate revisions by 8 users not shown)
Line 1: Line 1:
'''HB-TML''' is the HoboWars text markup language, and allows you to format your text in numerous ways.
+
'''HB-TML''' stands for '''H'''o'''b'''o-'''T'''ext '''M'''arkup '''L'''anguage. It allows you to format your text in numerous ways.
  
==Formating==
+
==Formatting==
:::{| border="1" cellpadding="2"
+
{| border="3" cellpadding="2" class="allrc"
! style="background: #66ccff" colspan="2" | Text Formating
+
! style="background:#66CCFF" colspan="3" | Text Formatting
 
|-
 
|-
! Effect
+
! width="160pt" style="background:blue; color:white" | Effect
! Code
+
! width="425pt" style="background:red; color:white" | Code
 +
! width="250pt" style="background:#FFBB00; color:white" | Result
 
|-
 
|-
| Display Image
+
| Boldfaced Text
| <nowiki>[img]http://www.site.com/pic.jpg[/img]</nowiki>
+
| <font face="courier new">[b]Boldface Text[/b]</font>
 +
| '''Boldfaced Text'''
 
|-
 
|-
| Link
+
| Italicized Text
| [url=http://www.hobowars.com]Cool site[/url]
+
| <font face="courier new">[i]Italicized Text[/i]</font>
 +
| ''Italicized Text''
 
|-
 
|-
| Hobo Link
+
| Underlined Text
| [hobo=1]Andy[/hobo]
+
| <font face="courier new">[u]Underlined Text[/u]</font>
 +
| <u>Underlined Text</u>
 
|-
 
|-
| Email Link
+
| Strikethrough Text
| [email=me@yahoo.com]Email me[/email]
+
| <font face="courier new">[s]Strikethrough Text[/s]</font>
 +
| <s>Strikethrough Text</s>
 
|-
 
|-
| Horizontal rule
+
| Shadow Text
----
+
| <font face="courier new">[shadow]Shadow Text[/shadow]<font>
| [hr]
+
| <font style="text-shadow: 1px 1px 3px black;">Shadow Text</font>
 
|-
 
|-
| '''Bold text'''
+
| Colored Text
| [b]Bold text[/b]
+
| <font face="courier new">[hex=FF0000]Red Text[/hex]<br />[hex=FF8000]Orange Text[/hex]<br />[hex=FFFF00]Yellow Text[/hex]<br />[hex=008000]Green Text[/hex]<br />[hex=0000FF]Blue Text[/hex]<br />[hex=800080]Purple Text[/hex]<br />[hex=964B00]Brown Text[/hex]</font>
 +
| <font color="#FF0000">Red Text</font><br /><font color="#FF8000">Orange Text</font><br /><font color="#FFFF00">Yellow Text</font><br /><font color="#008000">Green Text</font><br /><font color="#0000FF">Blue Text</font><br /><font color="#800080">Purple Text</font><br /><font color="#964B00">Brown Text</font>
 
|-
 
|-
| ''Italic text''
+
| Superscript Text
| [i]Italic text[/i]
+
| <font face="courier new">[sup]Superscript Text[/sup]</font>
 +
| <sup>Superscript Text</sup>&nbsp;
 
|-
 
|-
| <u>Underlined text</u>
+
| Subscript Text
| [u]Underlined text[/u]
+
| <font face="courier new">[sub]Subscript Text[/sub]</font>
 +
| <sub>Subscript Text</sub>&nbsp;
 
|-
 
|-
| <s>Strikeout text</s>
+
| Tiny Text
| [s]Strikeout text[/s]
+
| <font face="courier new">[sub][sup]Tiny Text[/sup][/sub]<br />[sup][sub]Tiny Text[/sub][/sup]</font>
 +
| style="font-size: 74%;"|<sub><sup>Tiny Text</sup></sub>&nbsp;<br /><sup><sub>Tiny Text</sub></sup>&nbsp;
 
|-
 
|-
| align="center" | Centered text
+
| Centered Text
| [center]Centered text[/center]
+
| <font face="courier new">[center]Centered Text[/center]</font>
 +
| align="center" | Centered Text<br /><br />
 
|-
 
|-
| <font color="#0000ff">Colored text</font>
+
| Left-Aligned Text
| [hex=0000FF]Colored text[/hex]
+
| <font face="courier new">[left]Left-Aligned Text[/left]</font>
 +
| align="left" | Left-Aligned Text<br /><br />
 
|-
 
|-
| <sup>Superscript</sup> text
+
| Right-Aligned Text
| [sup]Superscript[/sup] text
+
| <font face="courier new">[right]Right-Aligned Text[/right]</font>
 +
| align="right" | Right-Aligned Text<br /><br />
 
|-
 
|-
| <sub>Subscript</sub> text
+
| Indented Text
| [sub]Subscript[/sub] text
+
| <font face="courier new">[indent]Indented Text[/indent]</font>
 +
| <div style="margin-left: 9px;">Indented Text</div><br />
 
|-
 
|-
| <sub><sup>Tiny text</sup></sub>
+
| Preformatted Text
| [sub][sup]Tiny text[/sup][/sub]
+
| <font face="courier new">[pre]Preformatted Text[/pre]</font>
 +
| <br /><font face="courier new">Preformatted Text</font><br /><br />
 
|}
 
|}
::Remember to always close any formatting so it does not bleed over into text you did not mean to effect.
+
{| border="3" cellpadding="2" class="allrc"
::The [HR] command is the only one that does not use this, it is considered a one time use, and does not continue to effect text.
+
! style="background:#66CCFF" colspan="3" | Linking
===Colored Text===
+
::The color values are Red, Green, and Blue represented by a hex value. The first 2 digits are the Red value. the middle two represent the Green value. the last 2 are the Blue value. By mixing these in varied amounts you can achieve 16,777,216 different colors.
+
::- Pure Red is [hex=FF0000]
+
::- Pure Green is [hex=00FF00]
+
::- Pure Blue is [hex=0000FF]
+
::- Pure white is all three colors at their highest value [hex=FFFFFF]
+
::- Black is all three at their lowest value [hex=000000]
+
::- To make gray, keep all three color values equal in number and make it a value between 00 and FF  ex. [hex=454545]
+
::- To make other colors mix red, green, and blue in appropriate amounts. ex [hex=AAFF00] or [hex=21a54f] etc.
+
::'''More [http://www.immigration-usa.com/html_colors.html Color Codes] can be found at that link.'''
+
 
+
===Special Tricks===
+
::Lesser known methods of getting the effect you want.
+
:::{| border="1"
+
! style="background: #ffff99" colspan="3" | <font color=#ffff99>_________</font>HB-TML Tips and Tricks<font color=#ffff99>_________</font>
+
 
|-
 
|-
! style="background:orange" | What you Want
+
! width="160pt" style="background:blue; color:white" | Effect
! style="background:orange" | <font color=orange>__</font>What to type out<font color=orange>__</font>
+
! width="425pt" style="background:red; color:white" | Code
! style="background:orange" | Result  
+
! width="250pt" style="background:#FFBB00; color:white" | Result
 
|-
 
|-
| Show HB-TML
+
| Hyperlink
| [h\r]
+
| <font face="courier new">[link=<nowiki>http://www.hobowars.com</nowiki>]</font>
| [hr]
+
| <span class="plainlinks">http://www.hobowars.com</span>
 
|-
 
|-
| Hidden MB Text
+
| Labeled Hyperlink
| [hex=f8f8f8]Word[/hex]
+
| <font face="courier new">[url=<nowiki>http://www.hobowars.com</nowiki>]HoboWars![/url]</font>
| style="background:black" | <Font color=#f8f8f8>Word</font>
+
| <span class="plainlinks">[http://www.hobowars.com HoboWars!]</span>
 
|-
 
|-
| Hidden Sig Text
+
| Hobo Link
| [hex=ffffff]Word[/hex]
+
| <font face="courier new">[hobo=1]Andy[/hobo]</font>
| style="background:black" | <font color=#ffffff>Word</font>
+
| <span class="plainlinks">[http://www.hobowars.com/game/game.php?sr=100&cmd=player&ID=1 Andy]</span>
|}
+
::To make even spacing simulating a <tab> use the '.' colored to match the background color - [hex=ffffff].....[/hex]
+
 
+
==Smileys==
+
:::{| border="1" cellpadding="2"
+
! style="background: #ffff99" colspan="3" | Smileys
+
 
|-
 
|-
! MB Code
+
| Smart Hobo Link
! Pac Chat Code
+
| <font face="courier new">[hoboname=1]</font>
! Image
+
| <span class="plainlinks">[http://www.hobowars.com/game/game.php?sr=100&cmd=player&ID=1 Andy]</span>
 
|-
 
|-
! align="center" | :D
+
| Email Link
! align="center" | :D
+
| <font face="courier new">[email=andrewh@hellbored.com]Andy's Email[/email]</font>
! align="center" | http://www.hobowars.com/images/mb_icons/1.gif
+
| <span class="plainlinks">[mailto:andrewh@hellbored.com Andy's Email]</span>
 
|-
 
|-
! align="center" | :-D
+
| Thread Link
! align="center" | :-D
+
| <font face="courier new">[thread=15011174]Minor Updates[/thread]</font>
! align="center" | http://www.hobowars.com/images/mb_icons/2.gif
+
| <span class="plainlinks">[http://www.hobowars.com/game/game.php?sr=100&cmd=gathering&do=vpost&board=23&post=15011174 Minor Updates]</span>
 
|-
 
|-
! align="center" | :)
+
| Thread Link (Specific Page)
! align="center" | :)
+
| <font face="courier new">[thread=15011174-2]Minor Updates (Page 2)[/thread]</font>
! align="center" | http://www.hobowars.com/images/mb_icons/3.gif
+
| <span class="plainlinks">[http://www.hobowars.com/game/game.php?sr=100&cmd=gathering&do=vpost&board=23&post=15011174&page=2 Minor Updates (Page 2)]</span>
 
|-
 
|-
! align="center" | :P
+
| Gang Link
! align="center" | :P
+
| <font face="courier new">[gang=1]The First Gang[/gang]</font>
! align="center" | http://www.hobowars.com/images/mb_icons/4.gif
+
| <span class="plainlinks">[http://www.hobowars.com/game/game.php?sr=100&cmd=gangs&do=view&g_id=1 The First Gang]</span>
 
|-
 
|-
! align="center" | O.O
+
| Smart Gang Link
! align="center" | :o
+
| <font face="courier new">[gangname=1]</font>
! align="center" | http://www.hobowars.com/images/mb_icons/5.gif
+
| <span class="plainlinks">[http://www.hobowars.com/game/game.php?sr=100&cmd=gangs&do=view&g_id=1 The Syndicate.]</span>
 
|-
 
|-
! align="center" | :S
+
| Journal Link
! align="center" | :S
+
| <font face="courier new">[journal=1]The First Journal Entry[/journal]</font>
! align="center" | http://www.hobowars.com/images/mb_icons/6.gif
+
| <span class="plainlinks">[http://www.hobowars.com/game/game.php?sr=100&cmd=network&do=viewj&jID=1 The First Journal Entry]</span>
 
|-
 
|-
! align="center" | 8-)
+
| Smart Journal Link
! align="center" | 8-)
+
| <font face="courier new">[journalname=1]</font>
! align="center" | http://www.hobowars.com/images/mb_icons/7.gif
+
| <span class="plainlinks">[http://www.hobowars.com/game/game.php?sr=100&cmd=network&do=viewj&jID=1 The First Journal!]</span>
 
|-
 
|-
! align="center" | ;)
+
| Lotto Link
! align="center" | ;)
+
| <font face="courier new">[lotto=6818]An Awesome Lotto[/lotto]</font>
! align="center" | http://www.hobowars.com/images/mb_icons/8.gif
+
| <span class="plainlinks">[http://www.hobowars.com/game/game.php?sr=100&cmd=lotto&lotto_id=6818 An Awesome Lotto]</span>
 
|-
 
|-
! align="center" | :angry:
+
| Smart Lotto Link
! align="center" | :angry:
+
| <font face="courier new">[lottoname=6818]</font>
! align="center" | http://www.hobowars.com/images/mb_icons/9.gif
+
| <span class="plainlinks">[http://www.hobowars.com/game/game.php?sr=100&cmd=lotto&lotto_id=6818 Multi Millions Lotto]</span>
 
|-
 
|-
! align="center" | O.o
+
| UFC Link
! align="center" | :boo:
+
| <font face="courier new">[ufc=1-3]</font>
! align="center" | http://www.hobowars.com/images/mb_icons/10.gif
+
| <span class="plainlinks">[http://www.hobowars.com/game/game.php?sr=100&cmd=bc&round=1&bracket=3 [UFC: Round 1, Bracket 3&#93;]</span>
 
|-
 
|-
! align="center" | :evil:
+
| HoboWiki Article Link
! align="center" | :evil:
+
| <font face="courier new">[wiki=Apple Core]</font>
! align="center" | http://www.hobowars.com/images/mb_icons/11.gif
+
| [[Apple Core]]
 
|-
 
|-
! align="center" | :|
+
| HoboArena Page Link
! align="center" | :eyes:
+
| <font face="courier new">[arena]Login to HoboArena![/arena]</font>
! align="center" | http://www.hobowars.com/images/mb_icons/12.gif
+
| <span class="plainlinks">[http://www.hobowars.com/game/game.php?sr=862&cmd=hw_arena Login to HoboArena!]</span>
 +
|}
 +
{| border="3" cellpadding="2" class="allrc"
 +
! style="background:#66CCFF" colspan="3" | Media Rendering
 
|-
 
|-
! align="center" | :(
+
! width="160pt" style="background:blue; color:white" | Effect
! align="center" | :(
+
! width="425pt" style="background:red; color:white" | Code
! align="center" | http://www.hobowars.com/images/mb_icons/13.gif
+
! width="250pt" style="background:#FFBB00; color:white" | Result
 
|-
 
|-
! align="center" | :@
+
| Displayed Image
! align="center" | :@
+
| <font face="courier new"><nowiki>[img]http://www.hobowars.com/images/donator.gif[/img]</nowiki></font>
! align="center" | http://www.hobowars.com/images/mb_icons/14.gif
+
| http://www.hobowars.com/images/donator.gif
 
|-
 
|-
! align="center" | ^.^
+
| Embedded YouTube Video
! align="center" | :cry:
+
| <font face="courier new"><nowiki>[youtube=http://www.youtube.com/watch?v=Y7dpJ0oseIA]</nowiki></font>
! align="center" | http://www.hobowars.com/images/mb_icons/15.gif
+
| [http://www.youtube.com/watch?v=Y7dpJ0oseIA (Embedded Video)]
 +
|}
 +
{| border="3" cellpadding="2" class="allrc"
 +
! style="background:#66CCFF" colspan="3" | Quoting
 
|-
 
|-
! align="center" | officedebo
+
! width="160pt" style="background:blue; color:white" | Effect
! align="center" | Disabled in PC
+
! width="425pt" style="background:red; color:white" | Code
! align="center" |  http://www.hobowars.com/images/mb_icons/gay.gif
+
! width="250pt" style="background:#FFBB00; color:white" | Result
 
|-
 
|-
! align="center" | :lol:
+
| Quote
! align="center" | :lol:
+
| <font face="courier new">[quote]Quoted Text[/quote]</font>
! align="center" | http://www.hobowars.com/images/mb_icons/lol.gif
+
| <blockquote id="quote">Quote:<br>Quoted Text</blockquote>
 
|-
 
|-
! align="center" | <3
+
| Labeled Quote
! align="center" | <3
+
| <font face="courier new">[quote=Andy]Quoted Text[/quote]</font>
! align="center" | http://www.hobowars.com/images/mb_icons/love.gif
+
| <blockquote id="quote">Originally Posted by <b>Andy</b><br>Quoted Text</blockquote>
 +
|-
 +
| Smart Quote
 +
| <font face="courier new">[quote=1]Quoted Text[/quote]</font>
 +
| <blockquote id="quote">Originally Posted by <b><span class="plainlinks">[http://www.hobowars.com/game/game.php?sr=342&cmd=player&ID=1 Andy]</span></b><br>Quoted Text</blockquote>
 
|}
 
|}
 +
{| border="3" cellpadding="2" class="allrc"
 +
! style="background:#66CCFF" colspan="3" | Horizontal Rule Rendering
 +
|-
 +
! width="160pt" style="background:blue; color:white" | Effect
 +
! width="425pt" style="background:red; color:white" | Code
 +
! width="250pt" style="background:#FFBB00; color:white" | Result
 +
|-
 +
| One Horizontal Rule
 +
| <font face="courier new">[hr]</font>
 +
| <hr />
 +
|-
 +
| rowspan="2" | Two Horizontal Rules
 +
| <font face="courier new">[hr][hr]</font>
 +
| <hr /><hr />
 +
|-
 +
| <font face="courier new">[hr]<br />[hr]</font>
 +
| <hr /><br /><hr />
 +
|-
 +
| rowspan="2" | Three Horizontal Rules
 +
| <font face="courier new">[hr][hr][hr]</font>
 +
| <hr /><hr /><hr />
 +
|-
 +
| <font face="courier new">[hr]<br />[hr]<br />[hr]</font>
 +
| <hr /><br /><hr /><br /><hr />
 +
|}
 +
'''Notes:'''
 +
* Always remember to close your tags so that your formatting does not bleed over into any text you do not want affected.
 +
** The <font face="courier new">[hr]</font> tag is the only one that does not need to be closed, since it is considered to be a one-time use.
 +
* Linking to an in game url may result in a link that will send you to the Hobowars homepage.
  
==Special Characters / Symbols==
+
===Colored Text===
 +
In a hexadecimal color code, the colors red, green, and blue are represented by a hexadecimal value. The first two digits in a hexadecimal color code are the red values, the middle two digits are the green values, and the last two digits are the blue values. By mixing these values together in various amounts you can achieve up to 16,777,216 different colors!
 +
* The hexadecimal color code for <font color="red">pure red</font> is <font face="courier new">FF0000</font>.
 +
* The hexadecimal color code for <font color="lime">pure green (lime)</font> is <font face="courier new">00FF00</font>.
 +
* The hexadecimal color code for <font color="blue">pure blue</font> is <font face="courier new">0000FF</font>.
 +
* The hexadecimal color code for <font style="background:black" color="white">pure white</font> is all three colors at their highest values, i.e. <font face="courier new">FFFFFF</font>.
 +
* The hexadecimal color code for <font style="background:white" color="black">pure black</font> is all three colors at their lowest values, i.e. <font face="courier new">000000</font>.
 +
* Hexadecimal color codes for <font color="#454545">gray colors</font> are made by keeping all three color values equal in number and making it a value between <font face="courier new">00</font> and <font face="courier new">FF</font>, e.g. <font face="courier new">454545</font>.
 +
* Hexadecimal color codes for <font color="#FF6600">all</font> <font color="#029A2F">other</font> <font color="#B05F3C">colors</font> are made by mixing red, green, and blue values in appropriate amounts, e.g. <font face="courier new">FF6600</font>, <font face="courier new">029A2F</font>, <font face="courier new">B05F3C</font>, etc.
 +
* Hexadecimal color code resources: [http://en.wikipedia.org/wiki/HTML_color_names Specific] / [http://cloford.com/resources/colours/500col.htm Comprehensive] / [http://www.immigration-usa.com/html_colors.html Complete].
  
:An assortment of special  ASCII characters can be found through out the game (in peoples' names, gang tags, signatures, etc...). To find and access these characters on your computer:
 
  
::'''1. Click Start'''<br>
+
===Special Tricks===
::'''2. Select "Run..."'''<br>
+
Lesser-known methods of getting the effect you want.
::'''3. Enter "charmap.exe"'''<br>
+
{|  border="3" cellpadding="2" class="allrc"
::'''4. Click "Okay"'''<br>
+
! style="background: #FFFF99" colspan="3" align="center"| HB-TML Tips and Tricks
 +
|- align="center"
 +
! style="background:orange" | What You Want
 +
! style="background:orange" | What To Type Out
 +
! style="background:orange" | Result
 +
|-
 +
| Show HB-TML (Simple)
 +
| <font face="courier new">[h\r]</font>
 +
| <font face="courier new">[hr]</font>
 +
|-
 +
| Show HB-TML (Complex)
 +
| <font face="courier new">&amp;#91;hr&amp;#93;</font>
 +
| <font face="courier new">[hr]</font>
 +
|-
 +
| Hidden MB Text
 +
| <font face="courier new">[hex=F8F8F8]Word[/hex]</font>
 +
| style="background:#F8F8F8" | <Font color=#F8F8F8>Word</font>
 +
|-
 +
| Hidden Signature Text
 +
| <font face="courier new">[hex=FFFFFF]Word[/hex]</font>
 +
| style="background:#FFFFFF" | <font color=#FFFFFF>Word</font>
 +
|-
 +
| Hidden Journal Text
 +
| <font face="courier new">[hex=D6E1E9]Word[/hex]</font>
 +
| style="background:#D6E1E9" | <font color=#D6E1E9>Word</font>
 +
|-
 +
| Hidden Journal Comment Text (In Yours)
 +
| <font face="courier new">[hex=EBF0F3]Word[/hex]</font>
 +
| style="background:#EBF0F3" | <font color=#EBF0F3>Word</font>
 +
|-
 +
| Hidden Journal Comment Text (In Others)
 +
| <font face="courier new">[hex=F3F3F3]Word[/hex]</font>
 +
| style="background:#F3F3F3" | <font color=#F3F3F3>Word</font>
 +
|-
 +
| Hidden Picture Comment Text (In Yours)
 +
| <font face="courier new">[hex=EBF0F3]Word[/hex]</font>
 +
| style="background:#EBF0F3" | <font color=#EBF0F3>Word</font>
 +
|-
 +
| Hidden Picture Comment Text (In Others)
 +
| <font face="courier new">[hex=EFEFEF]Word[/hex]</font>
 +
| style="background:#EFEFEF" | <font color=#EFEFEF>Word</font>
 +
|-
 +
| Hidden Profile Comment Text
 +
| <font face="courier new">[hex=EFEFEF]Word[/hex]</font>
 +
| style="background:#EFEFEF" | <font color=#EFEFEF>Word</font>
 +
|-
 +
| Hidden [[HoboWars Chat|Chat]] Text
 +
| <font face="courier new">[hex=F0F0F0]Word[/hex]</font>
 +
| style="background:#F0F0F0" | <font color=#F0F0F0>Word</font>
 +
|-
 +
| Hidden [[Pac Chat]] Text
 +
| <font face="courier new">[hex=000000]Word[/hex]</font>
 +
| style="background:#000000" | <font color=#000000>Word</font>
 +
|}
 +
'''Notes:'''
 +
* To simulate a "tab space", use five periods that are colored to match the background color, i.e. <font face="courier new">[hex=FFFFFF].....[/hex]</font>
 +
* Also, please note that setting the color of your text in Chat to match the background color is against the rules.
  
:Alternately, on most computers, it can be found here:<br>
+
==Emoticons==
 +
{| border="0" cellpadding="0" cellspacing="10" class="allrc"
 +
|- align="center" valign="top"
 +
|
 +
{| class="allrc sortable" border=1
 +
! width="130pt" style="background:blue; color:white" | Name
 +
! colspan="2" width="130pt" style="background:red; color:white" | Code
 +
! width="60pt" style="background:white; color:black" class="unsortable" | Image
 +
|- align="center"
 +
! Angered
 +
| colspan="2" | <font face="courier new">:anger:</font>
 +
| http://www.hobowars.com/images/mb_icons/angered.gif
 +
|- align="center"
 +
! Angry
 +
| colspan="2" | <font face="courier new">:angry:</font>
 +
| http://www.hobowars.com/images/mb_icons/9.gif
 +
|- align="center"
 +
! Big Grin
 +
| colspan="2" | <font face="courier new">:D</font>
 +
| http://www.hobowars.com/images/mb_icons/1.gif
 +
|- align="center"
 +
! Blank Stare
 +
| colspan="2" | <font face="courier new">:blankstare:</font>
 +
| http://www.hobowars.com/images/mb_icons/blankstare.gif
 +
|- align="center"
 +
! Blushing
 +
| colspan="2" | <font face="courier new">:@</font>
 +
| http://www.hobowars.com/images/mb_icons/14.gif
 +
|- align="center"
 +
! Bowing Down
 +
| colspan="2" | <font face="courier new">:bow:</font>
 +
| http://www.hobowars.com/images/mb_icons/bow.gif
 +
|- align="center"
 +
! Brick Wall
 +
| colspan="2" | <font face="courier new">:brickwall:</font>
 +
| http://www.hobowars.com/images/mb_icons/brickwall.gif
 +
|- align="center"
 +
! Bucktooth
 +
| colspan="2" | <font face="courier new">:bucktooth:</font>
 +
| http://www.hobowars.com/images/mb_icons/bucktooth.gif
 +
|- align="center"
 +
! Bug
 +
| colspan="2" | <font face="courier new">:bug:</font>
 +
| http://www.hobowars.com/images/mb_icons/bug.gif
 +
|- align="center"
 +
! Bye-bye
 +
| colspan="2" | <font face="courier new">:bye:</font>
 +
| http://www.hobowars.com/images/mb_icons/bye.gif
 +
|- align="center"
 +
! Clap
 +
| colspan="2" | <font face="courier new">:clap:</font>
 +
| http://www.hobowars.com/images/mb_icons/clap.gif
 +
|- align="center"
 +
! Coffee
 +
| colspan="2" | <font face="courier new">:coffee:</font>
 +
| http://www.hobowars.com/images/mb_icons/coffee.gif
 +
|- align="center"
 +
! Confused
 +
| colspan="2" | <font face="courier new">:S</font>
 +
| http://www.hobowars.com/images/mb_icons/6.gif
 +
|- align="center"
 +
! Crazy
 +
| colspan="2" | <font face="courier new">:crazy:</font>
 +
| http://www.hobowars.com/images/mb_icons/crazy.gif
 +
|- align="center"
 +
! Crying
 +
| colspan="2" | <font face="courier new">:cry:</font>
 +
| http://www.hobowars.com/images/mb_icons/cry.gif
 +
|- align="center"
 +
! David Hasselhoff
 +
| colspan="2" | <font face="courier new">:hasselhoff:</font>
 +
| http://www.hobowars.com/images/mb_icons/hasselhoff.gif
 +
|- align="center"
 +
! Derp
 +
| colspan="2" | <font face="courier new">:derp:</font>
 +
| http://www.hobowars.com/images/mb_icons/derp.gif
 +
|- align="center"
 +
! Disgusted
 +
| colspan="2" | <font face="courier new">:yuk:</font>
 +
| http://www.hobowars.com/images/mb_icons/yuk.gif
 +
|- align="center"
 +
! Disturbed
 +
| colspan="2" | <font face="courier new">:disturbed:</font>
 +
| http://www.hobowars.com/images/mb_icons/disturbed.gif
 +
|- align="center"
 +
! Drunk
 +
| colspan="2" | <font face="courier new">:drunk:</font>
 +
| http://www.hobowars.com/images/mb_icons/drunk.gif
 +
|- align="center"
 +
! Eating Popcorn
 +
| colspan="2" | <font face="courier new">:popcorn:</font>
 +
| http://www.hobowars.com/images/mb_icons/popcorn.gif
 +
|- align="center"
 +
! Evil
 +
| colspan="2" | <font face="courier new">:evil:</font>
 +
| http://www.hobowars.com/images/mb_icons/11.gif
 +
|- align="center"
 +
! Facepalm
 +
| colspan="2" | <font face="courier new">:facepalm:</font>
 +
| http://www.hobowars.com/images/mb_icons/facepalm.gif
 +
|- align="center"
 +
! Freaking Out
 +
| colspan="2" | <font face="courier new">:freakout:</font>
 +
| http://www.hobowars.com/images/mb_icons/freakout.gif
 +
|- align="center"
 +
! Fro
 +
| colspan="2" | <font face="courier new">:fro:</font>
 +
| http://www.hobowars.com/images/mb_icons/fro.gif
 +
|- align="center"
 +
! Frown
 +
| colspan="2" | <font face="courier new">:(</font>
 +
| http://www.hobowars.com/images/mb_icons/13.gif
 +
|- align="center"
 +
! Gandalf
 +
| colspan="2" | <font face="courier new">:gandalf:</font>
 +
| http://www.hobowars.com/images/mb_icons/gandalf.gif
 +
|- align="center"
 +
! Gay
 +
| colspan="2" | <font face="courier new">officedebo</font>
 +
| http://www.hobowars.com/images/mb_icons/gay.gif
 +
|- align="center"
 +
! Grin
 +
| colspan="2" | <font face="courier new">:-D</font>
 +
| http://www.hobowars.com/images/mb_icons/2.gif
 +
|- align="center"
 +
! Grin
 +
| colspan="2" | <font face="courier new">:grin:</font>
 +
| http://www.hobowars.com/images/mb_icons/grin.gif
 +
|- align="center"
 +
! Hearts
 +
| colspan="2" | <font face="courier new">:heart:</font>
 +
| http://www.hobowars.com/images/mb_icons/heart.gif
 +
|- align="center"
 +
! Hobo
 +
| colspan="2" | <font face="courier new">:hobo:</font>
 +
| http://www.hobowars.com/images/mb_icons/hobo.gif
 +
|- align="center"
 +
! Irish
 +
| colspan="2" | <font face="courier new">:irish:</font>
 +
| http://www.hobowars.com/images/mb_icons/irish.gif
 +
|- align="center"
 +
! Kekeke
 +
| colspan="2" | <font face="courier new">:kekeke:</font>
 +
| http://www.hobowars.com/images/mb_icons/kekeke.gif
 +
|- align="center"
 +
! King
 +
| colspan="2" | <font face="courier new">:king:</font>
 +
| http://www.hobowars.com/images/mb_icons/king.gif
 +
|- align="center"
 +
! LOL
 +
| colspan="2" | <font face="courier new">:lol:</font>
 +
| http://www.hobowars.com/images/mb_icons/lol.gif
 +
|- align="center"
 +
! Lots of Love
 +
| colspan="2" | <font face="courier new">:love:</font>
 +
| http://www.hobowars.com/images/mb_icons/love2.gif
 +
|- align="center"
 +
! Machine Gun
 +
| colspan="2" | <font face="courier new">:gun:</font>
 +
| http://www.hobowars.com/images/mb_icons/gun2.gif
 +
|- align="center"
 +
! Money
 +
| colspan="2" | <font face="courier new">:money:</font>
 +
| http://www.hobowars.com/images/mb_icons/money.gif
 +
|- align="center"
 +
! Nailbite
 +
| colspan="2" | <font face="courier new">:nailbite:</font>
 +
| http://www.hobowars.com/images/mb_icons/nailbite.gif
 +
|- align="center"
 +
! Cheers
 +
| colspan="2" | <font face="courier new">:cheers:</font>
 +
| http://www.hobowars.com/images/mb_icons/cheers.gif
 +
|- align="center"
 +
! Andy
 +
| colspan="2" | <font face="courier new">:andy:</font>
 +
| http://www.hobowars.com/images/mb_icons/andy.gif
 +
|- align="center"
 +
! Horse
 +
| colspan="2" | <font face="courier new">:horse:</font>
 +
| http://www.hobowars.com/images/mb_icons/horse.gif
 +
|- align="center"
 +
! Tehehe
 +
| colspan="2" | <font face="courier new">:tehehe:</font>
 +
| http://www.hobowars.com/images/mb_icons/tehehe.gif
 +
|- align="center"
 +
! Yoda
 +
| colspan="2" | <font face="courier new">:yoda:</font>
 +
| http://www.hobowars.com/images/mb_icons/yoda.gif
 +
|- align="center"
 +
! Scary Grin
 +
| colspan="2" | <font face="courier new">:]</font>
 +
| http://www.hobowars.com/images/malord/scary.png
 +
|}
 +
|
 +
{| class="allrc sortable" border=1
 +
! width="130pt" style="background:blue; color:white" | Name
 +
! colspan="2" width="130pt" style="background:red; color:white" | Code
 +
! width="60pt" style="background:white; color:black" class="unsortable" | Image
 +
|- align="center"
 +
! Naughty
 +
| colspan="2" | <font face="courier new">:naughty:</font>
 +
| http://www.hobowars.com/images/mb_icons/naughty.gif
 +
|- align="center"
 +
! No
 +
| colspan="2" | <font face="courier new">:no:</font>
 +
| http://www.hobowars.com/images/mb_icons/no.gif
 +
|- align="center"
 +
! Nyan
 +
| colspan="2" | <font face="courier new">:nyan:</font>
 +
| http://www.hobowars.com/images/mb_icons/nyan.gif
 +
|- align="center"
 +
! Off Topic
 +
| colspan="2" | <font face="courier new">:offtopic:</font>
 +
| http://www.hobowars.com/images/mb_icons/offtopic.gif
 +
|- align="center"
 +
! OMG
 +
| colspan="2" | <font face="courier new">:omg:</font>
 +
| http://www.hobowars.com/images/mb_icons/omg.gif
 +
|- align="center"
 +
! Oopsie
 +
| colspan="2" | <font face="courier new">:oopsie:</font>
 +
| http://www.hobowars.com/images/mb_icons/oopsie.gif
 +
|- align="center"
 +
! Pirate
 +
| colspan="2" | <font face="courier new">:arr:</font>
 +
| http://www.hobowars.com/images/mb_icons/pirate.gif
 +
|- align="center"
 +
! Playing Violin
 +
| colspan="2" | <font face="courier new">:violin:</font>
 +
| http://www.hobowars.com/images/mb_icons/violin.gif
 +
|- align="center"
 +
! Quote
 +
| colspan="2" | <font face="courier new">:quote:</font>
 +
| http://www.hobowars.com/images/mb_icons/quote.gif
 +
|- align="center"
 +
! Rock
 +
| colspan="2" | <font face="courier new">:rock:</font>
 +
| http://www.hobowars.com/images/mb_icons/rock.gif
 +
|- align="center"
 +
! ROFL
 +
| colspan="2" | <font face="courier new">:rofl:</font>
 +
| http://www.hobowars.com/images/mb_icons/rofl.gif
 +
|- align="center"
 +
! Rolling Eyes
 +
| width="65pt" | <font face="courier new">:&#124;</font>
 +
| <font face="courier new">:eyes:</font>
 +
| http://www.hobowars.com/images/mb_icons/12.gif
 +
|- align="center"
 +
! Sad
 +
| colspan="2" | <font face="courier new">:blue:</font>
 +
| http://www.hobowars.com/images/mb_icons/sad.gif
 +
|- align="center"
 +
! Shades
 +
| colspan="2" | <font face="courier new">B-)</font>
 +
| http://www.hobowars.com/images/mb_icons/shades.gif
 +
|- align="center"
 +
! Shaking Fist
 +
| colspan="2" | <font face="courier new">:fist:</font>
 +
| http://www.hobowars.com/images/mb_icons/fist.gif
 +
|- align="center"
 +
! Shaking Head
 +
| colspan="2" | <font face="courier new">:headshake:</font>
 +
| http://www.hobowars.com/images/mb_icons/headshake.gif
 +
|- align="center"
 +
! Sherlock
 +
| colspan="2" | <font face="courier new">:sherlock:</font>
 +
| http://www.hobowars.com/images/mb_icons/sherlock.gif
 +
|- align="center"
 +
! Shifty
 +
| colspan="2" | <font face="courier new">:hmm:</font>
 +
| http://www.hobowars.com/images/mb_icons/hmm.gif
 +
|- align="center"
 +
! Shocked
 +
| width="65pt" | <font face="courier new">O.o</font>
 +
| <font face="courier new">o.O</font>
 +
| http://www.hobowars.com/images/mb_icons/10.gif
 +
|- align="center"
 +
! Shrugging
 +
| colspan="2" | <font face="courier new">:idk:</font>
 +
| http://www.hobowars.com/images/mb_icons/idk.gif
 +
|- align="center"
 +
! Slashgrin
 +
| colspan="2" | <font face="courier new">:slashgrin:</font>
 +
| http://www.hobowars.com/images/mb_icons/slashgrin.gif
 +
|- align="center"
 +
! Sleeping
 +
| colspan="2" | <font face="courier new">:zzz:</font>
 +
| http://www.hobowars.com/images/mb_icons/sleeping.gif
 +
|- align="center"
 +
! Sly
 +
| colspan="2" | <font face="courier new">:sly:</font>
 +
| http://www.hobowars.com/images/mb_icons/sly.gif
 +
|- align="center"
 +
! Smile
 +
| colspan="2" | <font face="courier new">:)</font>
 +
| http://www.hobowars.com/images/mb_icons/3.gif
 +
|- align="center"
 +
! Spinning
 +
| colspan="2" | <font face="courier new">^.^</font>
 +
| http://www.hobowars.com/images/mb_icons/15.gif
 +
|- align="center"
 +
! Sunglasses
 +
| colspan="2" | <font face="courier new">8-)</font>
 +
| http://www.hobowars.com/images/mb_icons/7.gif
 +
|- align="center"
 +
! Surprised
 +
| width="65pt" | <font face="courier new">:O</font>
 +
| <font face="courier new">O.O</font>
 +
| http://www.hobowars.com/images/mb_icons/5.gif
 +
|- align="center"
 +
! Suspect
 +
| colspan="2" | <font face="courier new">:suspect:</font>
 +
| http://www.hobowars.com/images/mb_icons/suspicious.gif
 +
|- align="center"
 +
! Thumbs Up
 +
| colspan="2" | <font face="courier new">:thumbsup:</font>
 +
| http://www.hobowars.com/images/mb_icons/thumbsup.gif
 +
|- align="center"
 +
! Tongue
 +
| colspan="2" | <font face="courier new">:P</font>
 +
| http://www.hobowars.com/images/mb_icons/4.gif
 +
|- align="center"
 +
! Typing
 +
| colspan="2" | <font face="courier new">:type:</font>
 +
| http://www.hobowars.com/images/mb_icons/type.gif
 +
|- align="center"
 +
! Ugh
 +
| colspan="2" | <font face="courier new">:ugh:</font>
 +
| http://www.hobowars.com/images/mb_icons/ugh.gif
 +
|- align="center"
 +
! Wanking
 +
| colspan="2" | <font face="courier new">:wank:</font>
 +
| http://www.hobowars.com/images/mb_icons/wank.gif
 +
|- align="center"
 +
! Waving
 +
| colspan="2" | <font face="courier new">:wave:</font>
 +
| http://www.hobowars.com/images/mb_icons/wave.gif
 +
|- align="center"
 +
! Wiki
 +
| colspan="2" | <font face="courier new">:wiki:</font>
 +
| http://www.hobowars.com/images/mb_icons/wiki.gif
 +
|- align="center"
 +
! Winking Tongue
 +
| colspan="2" | <font face="courier new">;P</font>
 +
| http://www.hobowars.com/images/mb_icons/wink.gif
 +
|- align="center"
 +
! Winking
 +
| colspan="2" | <font face="courier new">;)</font>
 +
| http://www.hobowars.com/images/mb_icons/8.gif
 +
|- align="center"
 +
! Wonka
 +
| colspan="2" | <font face="courier new">:wonka:</font>
 +
| http://www.hobowars.com/images/mb_icons/wonka.gif
 +
|- align="center"
 +
! Yawning
 +
| colspan="2" | <font face="courier new">:yawn:</font>
 +
| http://www.hobowars.com/images/mb_icons/yawn.gif
 +
|- align="center"
 +
! Yes
 +
| colspan="2" | <font face="courier new">:yes:</font>
 +
| http://www.hobowars.com/images/mb_icons/yes.gif
 +
|- align="center"
 +
! Love
 +
| colspan="2" | <font face="courier new"><3</font>
 +
| http://www.hobowars.com/images/mb_icons/love.gif
 +
|- align="center"
 +
! Drums
 +
| colspan="2" | <font face="courier new">:drums:</font>
 +
| http://www.hobowars.com/images/mb_icons/drums.gif
 +
|- align="center"
 +
! BooHoo
 +
| colspan="2" | <font face="courier new">:boohoo:</font>
 +
| http://www.hobowars.com/images/mb_icons/boohoo.gif
 +
|- align="center"
 +
! No No
 +
| colspan="2" | <font face="courier new">:nono:</font>
 +
| http://www.hobowars.com/images/mb_icons/nono.gif
 +
|- align="center"
 +
! Banana
 +
| colspan="2" | <font face="courier new">:banana:</font>
 +
| http://www.hobowars.com/images/mb_icons/banana.gif
 +
|- align="center"
 +
! Stupid
 +
| colspan="2" | <font face="courier new">:stupid:</font>
 +
| http://www.hobowars.com/images/mb_icons/stupid.gif
 +
|- align="center"
 +
! Yikes
 +
| colspan="2" | <font face="courier new">:yikes:</font>
 +
| http://www.hobowars.com/images/mb_icons/yikes.gif
 +
|}
 +
|}
  
::'''Start -> All Programs -> Accessories -> System Tools -> Character Map'''<br>
+
==Special Characters and Symbols==
 +
An assortment of special  ASCII characters can be found through out the game (in peoples' names, gang tags, signatures, etc...). To find and access these characters on your computer:<b>
 +
# Click Start'''<br />
 +
# Select "Run..."'''<br />
 +
# Enter "charmap.exe"'''<br />
 +
# Click "Okay"'''<br /></b>
 +
Alternately, on most computers, it can be found here:
 +
:'''Start All Programs Accessories System Tools Character Map'''<br />
 +
Keep in mind that some of the Arabic symbols are banned, because they change the direction the characters are read, and can cause problems with the coding. Therefore, please avoid using them.
  
:Keep in mind that some of the Arabic symbols are banned, because they change the direction the characters are read, and can cause problems with the coding. So please, avoid using them.
+
Special characters and symbols resources: [http://www.ascii.cl/htmlcodes.htm Specific] / [http://unicode.coeurlumiere.com/ Complete].

Latest revision as of 05:46, 9 April 2019

HB-TML stands for Hobo-Text Markup Language. It allows you to format your text in numerous ways.

Formatting

Text Formatting
Effect Code Result
Boldfaced Text [b]Boldface Text[/b] Boldfaced Text
Italicized Text [i]Italicized Text[/i] Italicized Text
Underlined Text [u]Underlined Text[/u] Underlined Text
Strikethrough Text [s]Strikethrough Text[/s] Strikethrough Text
Shadow Text [shadow]Shadow Text[/shadow] Shadow Text
Colored Text [hex=FF0000]Red Text[/hex]
[hex=FF8000]Orange Text[/hex]
[hex=FFFF00]Yellow Text[/hex]
[hex=008000]Green Text[/hex]
[hex=0000FF]Blue Text[/hex]
[hex=800080]Purple Text[/hex]
[hex=964B00]Brown Text[/hex]
Red Text
Orange Text
Yellow Text
Green Text
Blue Text
Purple Text
Brown Text
Superscript Text [sup]Superscript Text[/sup] Superscript Text 
Subscript Text [sub]Subscript Text[/sub] Subscript Text 
Tiny Text [sub][sup]Tiny Text[/sup][/sub]
[sup][sub]Tiny Text[/sub][/sup]
Tiny Text 
Tiny Text 
Centered Text [center]Centered Text[/center] Centered Text

Left-Aligned Text [left]Left-Aligned Text[/left] Left-Aligned Text

Right-Aligned Text [right]Right-Aligned Text[/right] Right-Aligned Text

Indented Text [indent]Indented Text[/indent]
Indented Text

Preformatted Text [pre]Preformatted Text[/pre]
Preformatted Text

Linking
Effect Code Result
Hyperlink [link=http://www.hobowars.com] http://www.hobowars.com
Labeled Hyperlink [url=http://www.hobowars.com]HoboWars![/url] HoboWars!
Hobo Link [hobo=1]Andy[/hobo] Andy
Smart Hobo Link [hoboname=1] Andy
Email Link [email=andrewh@hellbored.com]Andy's Email[/email] Andy's Email
Thread Link [thread=15011174]Minor Updates[/thread] Minor Updates
Thread Link (Specific Page) [thread=15011174-2]Minor Updates (Page 2)[/thread] Minor Updates (Page 2)
Gang Link [gang=1]The First Gang[/gang] The First Gang
Smart Gang Link [gangname=1] The Syndicate.
Journal Link [journal=1]The First Journal Entry[/journal] The First Journal Entry
Smart Journal Link [journalname=1] The First Journal!
Lotto Link [lotto=6818]An Awesome Lotto[/lotto] An Awesome Lotto
Smart Lotto Link [lottoname=6818] Multi Millions Lotto
UFC Link [ufc=1-3] [UFC: Round 1, Bracket 3]
HoboWiki Article Link [wiki=Apple Core] Apple Core
HoboArena Page Link [arena]Login to HoboArena![/arena] Login to HoboArena!
Media Rendering
Effect Code Result
Displayed Image [img]http://www.hobowars.com/images/donator.gif[/img] donator.gif
Embedded YouTube Video [youtube=http://www.youtube.com/watch?v=Y7dpJ0oseIA] (Embedded Video)
Quoting
Effect Code Result
Quote [quote]Quoted Text[/quote]
Quote:
Quoted Text
Labeled Quote [quote=Andy]Quoted Text[/quote]
Originally Posted by Andy
Quoted Text
Smart Quote [quote=1]Quoted Text[/quote]
Originally Posted by Andy
Quoted Text
Horizontal Rule Rendering
Effect Code Result
One Horizontal Rule [hr]
Two Horizontal Rules [hr][hr]

[hr]
[hr]



Three Horizontal Rules [hr][hr][hr]


[hr]
[hr]
[hr]





Notes:

  • Always remember to close your tags so that your formatting does not bleed over into any text you do not want affected.
    • The [hr] tag is the only one that does not need to be closed, since it is considered to be a one-time use.
  • Linking to an in game url may result in a link that will send you to the Hobowars homepage.

Colored Text

In a hexadecimal color code, the colors red, green, and blue are represented by a hexadecimal value. The first two digits in a hexadecimal color code are the red values, the middle two digits are the green values, and the last two digits are the blue values. By mixing these values together in various amounts you can achieve up to 16,777,216 different colors!

  • The hexadecimal color code for pure red is FF0000.
  • The hexadecimal color code for pure green (lime) is 00FF00.
  • The hexadecimal color code for pure blue is 0000FF.
  • The hexadecimal color code for pure white is all three colors at their highest values, i.e. FFFFFF.
  • The hexadecimal color code for pure black is all three colors at their lowest values, i.e. 000000.
  • Hexadecimal color codes for gray colors are made by keeping all three color values equal in number and making it a value between 00 and FF, e.g. 454545.
  • Hexadecimal color codes for all other colors are made by mixing red, green, and blue values in appropriate amounts, e.g. FF6600, 029A2F, B05F3C, etc.
  • Hexadecimal color code resources: Specific / Comprehensive / Complete.


Special Tricks

Lesser-known methods of getting the effect you want.

HB-TML Tips and Tricks
What You Want What To Type Out Result
Show HB-TML (Simple) [h\r] [hr]
Show HB-TML (Complex) &#91;hr&#93; [hr]
Hidden MB Text [hex=F8F8F8]Word[/hex] Word
Hidden Signature Text [hex=FFFFFF]Word[/hex] Word
Hidden Journal Text [hex=D6E1E9]Word[/hex] Word
Hidden Journal Comment Text (In Yours) [hex=EBF0F3]Word[/hex] Word
Hidden Journal Comment Text (In Others) [hex=F3F3F3]Word[/hex] Word
Hidden Picture Comment Text (In Yours) [hex=EBF0F3]Word[/hex] Word
Hidden Picture Comment Text (In Others) [hex=EFEFEF]Word[/hex] Word
Hidden Profile Comment Text [hex=EFEFEF]Word[/hex] Word
Hidden Chat Text [hex=F0F0F0]Word[/hex] Word
Hidden Pac Chat Text [hex=000000]Word[/hex] Word

Notes:

  • To simulate a "tab space", use five periods that are colored to match the background color, i.e. [hex=FFFFFF].....[/hex]
  • Also, please note that setting the color of your text in Chat to match the background color is against the rules.

Emoticons

Name Code Image
Angered :anger: angered.gif
Angry :angry: 9.gif
Big Grin :D 1.gif
Blank Stare :blankstare: blankstare.gif
Blushing :@ 14.gif
Bowing Down :bow: bow.gif
Brick Wall :brickwall: brickwall.gif
Bucktooth :bucktooth: bucktooth.gif
Bug :bug: bug.gif
Bye-bye :bye: bye.gif
Clap :clap: clap.gif
Coffee :coffee: coffee.gif
Confused :S 6.gif
Crazy :crazy: crazy.gif
Crying :cry: cry.gif
David Hasselhoff :hasselhoff: hasselhoff.gif
Derp :derp: derp.gif
Disgusted :yuk: yuk.gif
Disturbed :disturbed: disturbed.gif
Drunk :drunk: drunk.gif
Eating Popcorn :popcorn: popcorn.gif
Evil :evil: 11.gif
Facepalm :facepalm: facepalm.gif
Freaking Out :freakout: freakout.gif
Fro :fro: fro.gif
Frown :( 13.gif
Gandalf :gandalf: gandalf.gif
Gay officedebo gay.gif
Grin :-D 2.gif
Grin :grin: grin.gif
Hearts :heart: heart.gif
Hobo :hobo: hobo.gif
Irish :irish: irish.gif
Kekeke :kekeke: kekeke.gif
King :king: king.gif
LOL :lol: lol.gif
Lots of Love :love: love2.gif
Machine Gun :gun: gun2.gif
Money :money: money.gif
Nailbite :nailbite: nailbite.gif
Cheers :cheers: cheers.gif
Andy :andy: andy.gif
Horse :horse: horse.gif
Tehehe :tehehe: tehehe.gif
Yoda :yoda: yoda.gif
Scary Grin :] scary.png
Name Code Image
Naughty :naughty: naughty.gif
No :no: no.gif
Nyan :nyan: nyan.gif
Off Topic :offtopic: offtopic.gif
OMG :omg: omg.gif
Oopsie :oopsie: oopsie.gif
Pirate :arr: pirate.gif
Playing Violin :violin: violin.gif
Quote :quote: quote.gif
Rock :rock: rock.gif
ROFL :rofl: rofl.gif
Rolling Eyes :| :eyes: 12.gif
Sad :blue: sad.gif
Shades B-) shades.gif
Shaking Fist :fist: fist.gif
Shaking Head :headshake: headshake.gif
Sherlock :sherlock: sherlock.gif
Shifty :hmm: hmm.gif
Shocked O.o o.O 10.gif
Shrugging :idk: idk.gif
Slashgrin :slashgrin: slashgrin.gif
Sleeping :zzz: sleeping.gif
Sly :sly: sly.gif
Smile :) 3.gif
Spinning ^.^ 15.gif
Sunglasses 8-) 7.gif
Surprised :O O.O 5.gif
Suspect :suspect: suspicious.gif
Thumbs Up :thumbsup: thumbsup.gif
Tongue :P 4.gif
Typing :type: type.gif
Ugh :ugh: ugh.gif
Wanking :wank: wank.gif
Waving :wave: wave.gif
Wiki :wiki: wiki.gif
Winking Tongue ;P wink.gif
Winking ;) 8.gif
Wonka :wonka: wonka.gif
Yawning :yawn: yawn.gif
Yes :yes: yes.gif
Love <3 love.gif
Drums :drums: drums.gif
BooHoo :boohoo: boohoo.gif
No No :nono: nono.gif
Banana :banana: banana.gif
Stupid :stupid: stupid.gif
Yikes :yikes: yikes.gif

Special Characters and Symbols

An assortment of special ASCII characters can be found through out the game (in peoples' names, gang tags, signatures, etc...). To find and access these characters on your computer:

  1. Click Start
  2. Select "Run..."
  3. Enter "charmap.exe"
  4. Click "Okay"

Alternately, on most computers, it can be found here:

Start ⇒ All Programs ⇒ Accessories ⇒ System Tools ⇒ Character Map

Keep in mind that some of the Arabic symbols are banned, because they change the direction the characters are read, and can cause problems with the coding. Therefore, please avoid using them.

Special characters and symbols resources: Specific / Complete.