' . $context['html_headers'] . ' ' . $context['page_title'] . ' - Chromiates Wargaming Forums powered by SMF


'; // Show the menu here, according to the menu sub template. template_menu(); echo ' Warhammerforum.com
+ Features and Downloads

+Features
-Forum Rules v2.0
-Vote for Us!
-Abbreviation Guide
-Chatroom
-New Smilies

+Downloads
-Imperial Date Program
-Necrons Graphics
-Space Orks Graphics
-Space Marines Graphics
-Tyranids Graphics


'; // If the user is logged in, display stuff like their name, new messages, etc. if ($context['user']['is_logged']) { echo ' ', $txt[247], ' ', $context['user']['name'], ', '; // Are there any members waiting for approval? if (!empty($context['unapproved_members'])) echo '
', $context['unapproved_members'] == 1 ? $txt['approve_thereis'] : $txt['approve_thereare'], ' ', $context['unapproved_members'] == 1 ? $txt['approve_member'] : $context['unapproved_members'] . ' ' . $txt['approve_members'], ' ', $txt['approve_members_waiting']; // Is the forum in maintenance mode? if ($context['in_maintenance'] && $context['user']['is_admin']) echo '
', $txt[616], ''; } // Otherwise they're a guest - so politely ask them to register or login. else echo ' ', $txt[248], ' ', $txt[28], '. ', $txt[249], ' ', $txt[34], ' ', $txt[377], ' ', $txt[97], '.'; echo ''; if ($context['user']['is_logged'] && $context['allow_pm']) echo $txt[152], ' ', $context['user']['messages'], ' ', ($context['user']['messages'] != 1 ? $txt[153] : $txt[471]), '', $txt['newmessages4'], ' ', $context['user']['unread_messages'], ' ', ($context['user']['unread_messages'] == 1 ? $txt['newmessages0'] : $txt['newmessages1']), '.'; echo '

+Show unread posts since last visit
+Show new replies to your posts

+ Shoutbox
The shoutbox has been taken down due to misuse by person(s) who have been behaving inappropriately in it. It may return if staff deems it worth the effort and if members can be adult enough to use it properly.

+ Bash of the Month!

LORD|Kittel|Work> I had a user tell me that she couldn\'t see anything on her PC. I had her verify for me that it was plugged in and that it was turned on. When it still didn\'t display anything I went to her office to take a look.
LORD|Kittel|Work> She didn\'t have a computer. She had a monitor only.
LORD|Bishop|Werk> hahahahahahaaha
LORD|Kittel|Work> But that was indeed plugged in and turned on.
LORD|Kittel|Work> I had to give her that.

Submit Your Own!

+ Staff Members
Administrators:
Senior Moderators:
Moderators:
Technicians:
+ Affiliates & Ads

Boardnation

Golden Throne Webcomic

Gaming Edge

Gaming Edge


'; } function template_main_below() { global $context, $settings, $options, $scripturl, $txt; echo '

', theme_copyright(), '
© 2004 Template by TheGamer All Rights Reserved

Website code by ^Raven^ & modified by Dragon
Chromiates Wargaming Forums is a subdivision of BLEE! Inc.
Warhammer Fantasy, 40k, and Blood Bowl graphics by Nicholas Kelsch © 2003
Chromiates Wargaming Forums banner created by Dakka Dakka
Some caption contest graphics are courtesy of Danger Planet Games in Waltham, Massachusetts USA
Vote for us at the Moveon Top100!



This web site is completely unofficial and in no way endorsed by Games Workshop Limited.

Adeptus Astartes, Battlefleet Gothic, Black Flame, Black Library, the Black Library logo, BL Publishing, Blood Angels, Bloodquest, Blood Bowl, the Blood Bowl logo, The Blood Bowl Spike Device, Cadian, Catachan, the Chaos device, Cityfight, the Chaos logo, Citadel, Citadel Device, City of the Damned, Codex, Daemonhunters, Dark Angels, Dark Eldar, Dark Future, the Double-Headed/Imperial Eagle device, \'Eavy Metal, Eldar, Eldar symbol devices, Epic, Eye of Terror, Fanatic, the Fanatic logo, the Fanatic II logo, Fire Warrior, Forge World, Games Workshop, Games Workshop logo, Genestealer, Golden Demon, Gorkamorka, Great Unclean One, the Hammer of Sigmar logo, Horned Rat logo, Inferno, Inquisitor, the Inquisitor logo, the Inquisitor device, Inquisitor:Conspiracies, Keeper of Secrets, Khemri, Khorne, Kroot, Lord of Change, Marauder, Mordheim, the Mordheim logo, Necromunda, Necromunda stencil logo, Necromunda Plate logo, Necron, Nurgle, Ork, Ork skull devices, Sisters of Battle, Skaven, the Skaven symbol devices, Slaanesh, Space Hulk, Space Marine, Space Marine chapters, Space Marine chapter logos, Talisman, Tau, the Tau caste designations, Tomb Kings, Trio of Warriors, Twin Tailed Comet Logo, Tyranid, Tyrannid, Tzeentch, Ultramarines, Warhammer, Warhammer Historical, Warhammer Online, Warhammer 40k Device, Warhammer World logo, Warmaster, White Dwarf, the White Dwarf logo, and all associated marks, names, races, race insignia, characters, vehicles, locations, units, illustrations and images from the Blood Bowl game, the Warhammer world, the Talisaman world, and the Warhammer 40,000 universe are either ®, TM and/or © Copyright Games Workshop Ltd 2000-2004, variably registered in the UK and other countries around the world. Used without permission. No challenge to their status intended. All Rights Reserved to their respective owners.

All other original material on this site is copyright BLEE! Inc. 1994-2004 unless otherwise noted.
No squigs, squats, or chaos dwarfs were harmed in the creation of this forum.


Banner Ads

[ << Back | Join Now | Forum | Featured Sites | Forward >> ]
Warhammer War Game

'; // Show the load time? if ($context['show_load_time']) echo '
', $txt['smf301'], $context['load_time'], $txt['smf302'], $context['load_queries'], $txt['smf302b'], '
'; echo ' '; } // Show a linktree. This is that thing that shows "My Community | General Category | General Discussion".. function theme_linktree() { global $context, $settings, $options; // Folder style or inline? Inline has a smaller font. echo ''; // Each tree item has a URL and name. Some may have extra_before and extra_after. foreach ($context['linktree'] as $k => $tree) { // Show the | | |-[] Folders. if (!$settings['linktree_inline']) { if ($k > 0) echo str_repeat('| ', $k - 1), '|-'; echo '+  '; } if (isset($tree['extra_before'])) echo $tree['extra_before']; echo '', $settings['linktree_link'] && isset($tree['url']) ? '' . $tree['name'] . '' : $tree['name'], ''; if (isset($tree['extra_after'])) echo $tree['extra_after']; // Don't show a separator for the last one. if ($k != count($context['linktree']) - 1) echo $settings['linktree_inline'] ? '  |  ' : '
'; } echo '
'; } // Show the menu up top. Something like [home] [help] [profile] [logout]... function template_menu() { global $context, $settings, $options, $scripturl, $txt; // Show the [home] and [help] buttons. echo ' ', ($settings['use_image_buttons'] ? '' . $txt[103] . '' : $txt[103]), '', $context['menu_separator'], ' ', ($settings['use_image_buttons'] ? '' . $txt[119] . '' : $txt[119]), '', $context['menu_separator']; // How about the [search] button? if ($context['allow_search']) echo ' ', ($settings['use_image_buttons'] ? '' . $txt[182] . '' : $txt[182]), '', $context['menu_separator']; // Is the user allowed to administrate at all? ([admin]) if ($context['allow_admin']) echo ' ', ($settings['use_image_buttons'] ? '' . $txt[2] . '' : $txt[2]), '', $context['menu_separator']; // Edit Profile... [profile] if ($context['allow_edit_profile']) echo ' ', ($settings['use_image_buttons'] ? '' . $txt[79] . '' : $txt[467]), '', $context['menu_separator']; // The [calendar]! if ($context['allow_calendar']) echo ' ', ($settings['use_image_buttons'] ? '' . $txt['calendar24'] . '' : $txt['calendar24']), '', $context['menu_separator']; // If the user is a guest, show [login] and [register] buttons. if ($context['user']['is_guest']) { echo ' ', ($settings['use_image_buttons'] ? '' . $txt[34] . '' : $txt[34]), '', $context['menu_separator'], ' ', ($settings['use_image_buttons'] ? '' . $txt[97] . '' : $txt[97]), ''; } // Otherwise, they might want to [logout]... else echo ' ', ($settings['use_image_buttons'] ? '' . $txt[108] . '' : $txt[108]), ''; } ?>