' . $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 ' wargamingforums.com
+ Features and Downloads

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

+Downloads
-Imperial Date Program
-Beastmen Graphics
-Chaos Daemon Graphics
-Chaos Graphics
-Chaos Mortal Graphics
-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
+Show threads without replies
+Pin Your Location On The Member Map

+Ads
(Click these to earn CWF Money)

Advertising (Please click to earn CWF money)

+ Link to Us
::Forum Name::
Chromiates Wargaming Forums

::URL of Forum::
http://wargamingforums.com

::Button::

+ Bookmark Us
Press Ctrl+D To Bookmark Us
+ Search Us

Search Us
Powered by Google®

+ Staff Members
Administrators:
Senior Moderators:
  • N/A
Moderators:
Tech Priests
+ Affiliates & More Ads

Forum Hosting By: Boardnation LLC. Web Hosting By: Rochen Ltd.

Gamer Unlimited

Gaming Edge

Golden Throne Webcomic


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

', theme_copyright(), '
Chromiates Wargaming Forums © 2004-2005 BLEE! Inc.
© 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 Builder Dan
CWF Affiliates Button and Dice Graphics created by Cypher7
Imperial Date Program courtesy of 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-2005 unless otherwise noted.
No squigs, squats, or chaos dwarfs were harmed in the creation of this forum.
All members are bound by our Registration Agreement, Forum Rules, and other Forum Policies.

+ Shoutbox
', smfshout(), '
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]), ''; } ?>