=MF= Midnight Force http://www.midnightforce.com God may show you mercy, we will not. admin@midnightforce.com admin@midnightforce.com Copyright 2008 =MF= Midnight Force GeekLog Fri, 19 Dec 2008 21:47:13 -0700 en-gb Power Outage http://www.midnightforce.com/article.php?story=20080105204158442 http://www.midnightforce.com/article.php?story=20080105204158442 Sat, 05 Jan 2008 20:41:58 -0700 Clan News We are have a some big storm(s) coming through and power has been knocked out so KDX and TeamSpeak are down for now.&nbsp; They should pop back on as soon as the power comes back on. TeamSpeak Server http://www.midnightforce.com/article.php?story=20071129151646661 http://www.midnightforce.com/article.php?story=20071129151646661 Thu, 29 Nov 2007 15:16:46 -0700 Clan News The TeamSpeak Server is up and running despite the various error messages you are seeing in the status block on the left.<br />To see who is on the server, just scroll down past the error messages.<br />We will try and get it looking right soon. Congrats to =MF=D_Man http://www.midnightforce.com/article.php?story=20070723153152807 http://www.midnightforce.com/article.php?story=20070723153152807 Mon, 23 Jul 2007 15:31:00 -0700 Clan News Congrats to =MF=D_Man (and his family) for the recent addition of son #4.&nbsp; Though he will never reclaim his girlish figure after 4 sons, he is well on his way for having enough sons to hold his own LAN party in a few years.<br /><br /><a href="http://www.midnightforce.com/forum/viewtopic.php?showtopic=280">Head over to the forum to send =MF=D_Man your congratulations</a> Call of Juarez http://www.midnightforce.com/article.php?story=20070624202721220 http://www.midnightforce.com/article.php?story=20070624202721220 Sun, 24 Jun 2007 20:27:21 -0700 Clan News <STYLE type="text/css"> #imageSlideshowHolder1{ float:left; margin:5px; /* Air */ width:200px; height:200px; position:relative; /* Don't remove this line */ } /* Don't change these values */ #imageSlideshowHolder1 img{ position:absolute; left:0px; top:0px; } .slideshowframe1 { float: left; padding:3px; margin-right:15px; width:210px; border: silver solid;border-width: 1px; text-align:center; } </style> <SCRIPT type="text/javascript"> /************************************************************************************************************ (C) www.dhtmlgoodies.com, November 2005 This is a script from www.dhtmlgoodies.com. You will find this and a lot of other scripts at our website. Terms of use: You are free to use this script as long as the copyright message is kept intact. However, you may not redistribute, sell or repost it without our permission. Thank you! www.dhtmlgoodies.com Alf Magne Kalleland ************************************************************************************************************/ var slideshow1_noFading = false; var slideshow1_timeBetweenSlides = 1000; // Amount of time between each image(1000 = 1 second) var slideshow1_fadingSpeed = 5; // Speed of fading (Lower value = faster) var slideshow1_galleryContainer; // Reference to the gallery div var slideshow1_galleryWidth; // Width of gallery var slideshow1_galleryHeight; // Height of galery var slideshow1_slideIndex = -1; // Index of current image shown var slideshow1_slideIndexNext = false; // Index of next image shown var slideshow1_imageDivs = new Array(); // Array of image divs(Created dynamically) var slideshow1_currentOpacity = 100; // Initial opacity var slideshow1_imagesInGallery = false; // Number of images in gallery var Opera = navigator.userAgent.indexOf('Opera')>=0?true:false; function createParentDivs1(imageIndex1) { if(imageIndex1==slideshow1_imagesInGallery){ showGallery1(); }else{ var imgObj1 = document.getElementById('galleryImage1' + imageIndex1); slideshow1_imageDivs[slideshow1_imageDivs.length] = imgObj1; imgObj1.style.visibility = 'hidden'; imageIndex1++; createParentDivs1(imageIndex1); } } function showGallery1() { if(slideshow1_slideIndex==-1)slideshow1_slideIndex=0; else slideshow1_slideIndex++; // Index of next image to show if(slideshow1_slideIndex==slideshow1_imageDivs.length)slideshow1_slideIndex=0; slideshow1_slideIndexNext = slideshow1_slideIndex+1; // Index of the next next image if(slideshow1_slideIndexNext==slideshow1_imageDivs.length)slideshow1_slideIndexNext = 0; slideshow1_currentOpacity=100; // Reset current opacity // Displaying image divs slideshow1_imageDivs[slideshow1_slideIndex].style.visibility = 'visible'; if(Opera)slideshow1_imageDivs[slideshow1_slideIndex].style.display = 'inline'; if(navigator.userAgent.indexOf('Opera')<0){ slideshow1_imageDivs[slideshow1_slideIndexNext].style.visibility = 'visible'; } if(document.all){ // IE rules slideshow1_imageDivs[slideshow1_slideIndex].style.filter = 'alpha(opacity=100)'; slideshow1_imageDivs[slideshow1_slideIndexNext].style.filter = 'alpha(opacity=1)'; }else{ slideshow1_imageDivs[slideshow1_slideIndex].style.opacity = 0.99; // Can't use 1 and 0 because of screen flickering in FF slideshow1_imageDivs[slideshow1_slideIndexNext].style.opacity = 0.01; } setTimeout('revealImage1()',slideshow1_timeBetweenSlides); } function revealImage1() { if(slideshow1_noFading){ slideshow1_imageDivs[slideshow1_slideIndex].style.visibility = 'hidden'; if(Opera)slideshow1_imageDivs[slideshow1_slideIndex].style.display = 'none'; showGallery1(); return; } slideshow1_currentOpacity--; if(document.all){ slideshow1_imageDivs[slideshow1_slideIndex].style.filter = 'alpha(opacity='+slideshow1_currentOpacity+')'; slideshow1_imageDivs[slideshow1_slideIndexNext].style.filter = 'alpha(opacity='+(100-slideshow1_currentOpacity)+')'; }else{ slideshow1_imageDivs[slideshow1_slideIndex].style.opacity = Math.max(0.01,slideshow1_currentOpacity/100); // Can't use 1 and 0 because of screen flickering in FF slideshow1_imageDivs[slideshow1_slideIndexNext].style.opacity = Math.min(0.99,(1 - (slideshow1_currentOpacity/100))); } if(slideshow1_currentOpacity>0){ setTimeout('revealImage1()',slideshow1_fadingSpeed); }else{ slideshow1_imageDivs[slideshow1_slideIndex].style.visibility = 'hidden'; if(Opera)slideshow1_imageDivs[slideshow1_slideIndex].style.display = 'none'; showGallery1(); } } function initImageGallery1() { slideshow1_galleryContainer = document.getElementById('imageSlideshowHolder1'); slideshow1_galleryWidth = slideshow1_galleryContainer.clientWidth; slideshow1_galleryHeight = slideshow1_galleryContainer.clientHeight; galleryImgArray1 = slideshow1_galleryContainer.getElementsByTagName('IMG'); for(var no=0;no<galleryImgArray1.length;no++){ galleryImgArray1[no].id = 'galleryImage1' + no; } slideshow1_imagesInGallery = galleryImgArray1.length; createParentDivs1(0); } </SCRIPT> <div class="slideshowframe1"> <div id="imageSlideshowHolder1"> <a href="http://www.midnightforce.com/mediagallery/album.php?aid=6"><img src="http://www.midnightforce.com/mediagallery/mediaobjects/tn/c/c_001.jpg" height="200" width="143" border="0" alt=""></a> <a href="http://www.midnightforce.com/mediagallery/album.php?aid=6"><img src="http://www.midnightforce.com/mediagallery/mediaobjects/tn/8/8_43317.jpg" height="160" width="200" border="0" alt=""></a> <a href="http://www.midnightforce.com/mediagallery/album.php?aid=6"><img src="http://www.midnightforce.com/mediagallery/mediaobjects/tn/a/a_call-of-juarez-20050509034536185.jpg" height="150" width="200" border="0" alt=""></a> <a href="http://www.midnightforce.com/mediagallery/album.php?aid=6"><img src="http://www.midnightforce.com/mediagallery/mediaobjects/tn/9/9_call-of-juarez-20050811033350157.jpg" height="150" width="200" border="0" alt=""></a> <a href="http://www.midnightforce.com/mediagallery/album.php?aid=6"><img src="http://www.midnightforce.com/mediagallery/mediaobjects/tn/f/f_call-of-juarez-20050907045131042.jpg" height="150" width="200" border="0" alt=""></a> <a href="http://www.midnightforce.com/mediagallery/album.php?aid=6"><img src="http://www.midnightforce.com/mediagallery/mediaobjects/tn/f/f_call-of-juarez-20050907045137760.jpg" height="150" width="200" border="0" alt=""></a> <a href="http://www.midnightforce.com/mediagallery/album.php?aid=6"><img src="http://www.midnightforce.com/mediagallery/mediaobjects/tn/e/e_call-of-juarez-20060208055045581.jpg" height="150" width="200" border="0" alt=""></a> <a href="http://www.midnightforce.com/mediagallery/album.php?aid=6"><img src="http://www.midnightforce.com/mediagallery/mediaobjects/tn/f/f_call-of-juarez-20060208055051127.jpg" height="150" width="200" border="0" alt=""></a> <a href="http://www.midnightforce.com/mediagallery/album.php?aid=6"><img src="http://www.midnightforce.com/mediagallery/mediaobjects/tn/7/7_call-of-juarez-20060511074517662.jpg" height="150" width="200" border="0" alt=""></a> <a href="http://www.midnightforce.com/mediagallery/album.php?aid=6"><img src="http://www.midnightforce.com/mediagallery/mediaobjects/tn/b/b_call-of-juarez-20060511074520443.jpg" height="150" width="200" border="0" alt=""></a> <a href="http://www.midnightforce.com/mediagallery/album.php?aid=6"><img src="http://www.midnightforce.com/mediagallery/mediaobjects/tn/d/d_call-of-juarez-20060511074525553.jpg" height="150" width="200" border="0" alt=""></a> <a href="http://www.midnightforce.com/mediagallery/album.php?aid=6"><img src="http://www.midnightforce.com/mediagallery/mediaobjects/tn/5/5_call-of-juarez-20060511074527474.jpg" height="150" width="200" border="0" alt=""></a> <a href="http://www.midnightforce.com/mediagallery/album.php?aid=6"><img src="http://www.midnightforce.com/mediagallery/mediaobjects/tn/f/f_call-of-juarez-20060620110143946.jpg" height="150" width="200" border="0" alt=""></a> <a href="http://www.midnightforce.com/mediagallery/album.php?aid=6"><img src="http://www.midnightforce.com/mediagallery/mediaobjects/tn/1/1_call-of-juarez-20060713014427849.jpg" height="150" width="200" border="0" alt=""></a> <a href="http://www.midnightforce.com/mediagallery/album.php?aid=6"><img src="http://www.midnightforce.com/mediagallery/mediaobjects/tn/f/f_call-of-juarez-20060713014611940.jpg" height="150" width="200" border="0" alt=""></a> <a href="http://www.midnightforce.com/mediagallery/album.php?aid=6"><img src="http://www.midnightforce.com/mediagallery/mediaobjects/tn/5/5_call-of-juarez-20060714103003521.jpg" height="150" width="200" border="0" alt=""></a> <a href="http://www.midnightforce.com/mediagallery/album.php?aid=6"><img src="http://www.midnightforce.com/mediagallery/mediaobjects/tn/1/1_call-of-juarez-20060727105311471.jpg" height="150" width="200" border="0" alt=""></a> <a href="http://www.midnightforce.com/mediagallery/album.php?aid=6"><img src="http://www.midnightforce.com/mediagallery/mediaobjects/tn/a/a_call-of-juarez-20060810103639802.jpg" height="150" width="200" border="0" alt=""></a> <a href="http://www.midnightforce.com/mediagallery/album.php?aid=6"><img src="http://www.midnightforce.com/mediagallery/mediaobjects/tn/0/0_call-of-juarez-20060810103642115.jpg" height="150" width="200" border="0" alt=""></a> <a href="http://www.midnightforce.com/mediagallery/album.php?aid=6"><img src="http://www.midnightforce.com/mediagallery/mediaobjects/tn/c/c_call-of-juarez-20060810103647161.jpg" height="150" width="200" border="0" alt=""></a> <a href="http://www.midnightforce.com/mediagallery/album.php?aid=6"><img src="http://www.midnightforce.com/mediagallery/mediaobjects/tn/5/5_call-of-juarez-20060810103649161.jpg" height="150" width="200" border="0" alt=""></a> <a href="http://www.midnightforce.com/mediagallery/album.php?aid=6"><img src="http://www.midnightforce.com/mediagallery/mediaobjects/tn/4/4_call-of-juarez-20060810103651427.jpg" height="150" width="200" border="0" alt=""></a> <a href="http://www.midnightforce.com/mediagallery/album.php?aid=6"><img src="http://www.midnightforce.com/mediagallery/mediaobjects/tn/c/c_call-of-juarez-20060831030134079.jpg" height="150" width="200" border="0" alt=""></a> <a href="http://www.midnightforce.com/mediagallery/album.php?aid=6"><img src="http://www.midnightforce.com/mediagallery/mediaobjects/tn/7/7_call-of-juarez-20060831030137501.jpg" height="150" width="200" border="0" alt=""></a> <a href="http://www.midnightforce.com/mediagallery/album.php?aid=6"><img src="http://www.midnightforce.com/mediagallery/mediaobjects/tn/6/6_call-of-juarez-20060906100902536.jpg" height="150" width="200" border="0" alt=""></a> <a href="http://www.midnightforce.com/mediagallery/album.php?aid=6"><img src="http://www.midnightforce.com/mediagallery/mediaobjects/tn/e/e_call-of-juarez-20060906100905521.jpg" height="150" width="200" border="0" alt=""></a> <a href="http://www.midnightforce.com/mediagallery/album.php?aid=6"><img src="http://www.midnightforce.com/mediagallery/mediaobjects/tn/0/0_call-of-juarez-20060906100906521.jpg" height="150" width="200" border="0" alt=""></a> <a href="http://www.midnightforce.com/mediagallery/album.php?aid=6"><img src="http://www.midnightforce.com/mediagallery/mediaobjects/tn/0/0_call-of-juarez-20060906100907271.jpg" height="150" width="200" border="0" alt=""></a> <a href="http://www.midnightforce.com/mediagallery/album.php?aid=6"><img src="http://www.midnightforce.com/mediagallery/mediaobjects/tn/9/9_call-of-juarez-20060906100911239.jpg" height="150" width="200" border="0" alt=""></a> <a href="http://www.midnightforce.com/mediagallery/album.php?aid=6"><img src="http://www.midnightforce.com/mediagallery/mediaobjects/tn/f/f_call-of-juarez-20060907015220825.jpg" height="150" width="200" border="0" alt=""></a> <a href="http://www.midnightforce.com/mediagallery/album.php?aid=6"><img src="http://www.midnightforce.com/mediagallery/mediaobjects/tn/5/5_call-of-juarez-20060907015333432.jpg" height="200" width="200" border="0" alt=""></a> <a href="http://www.midnightforce.com/mediagallery/album.php?aid=6"><img src="http://www.midnightforce.com/mediagallery/mediaobjects/tn/b/b_call-of-juarez-20061023004234845.jpg" height="150" width="200" border="0" alt=""></a> <a href="http://www.midnightforce.com/mediagallery/album.php?aid=6"><img src="http://www.midnightforce.com/mediagallery/mediaobjects/tn/5/5_call-of-juarez-20070416014921272.jpg" height="113" width="200" border="0" alt=""></a> <a href="http://www.midnightforce.com/mediagallery/album.php?aid=6"><img src="http://www.midnightforce.com/mediagallery/mediaobjects/tn/3/3_call-of-juarez-20070511022542140.jpg" height="113" width="200" border="0" alt=""></a> <a href="http://www.midnightforce.com/mediagallery/album.php?aid=6"><img src="http://www.midnightforce.com/mediagallery/mediaobjects/tn/7/7_coj_screenshot_03.jpg" height="150" width="200" border="0" alt=""></a> <a href="http://www.midnightforce.com/mediagallery/album.php?aid=6"><img src="http://www.midnightforce.com/mediagallery/mediaobjects/tn/7/7_coj_screenshot_04.jpg" height="150" width="200" border="0" alt=""></a> <a href="http://www.midnightforce.com/mediagallery/album.php?aid=6"><img src="http://www.midnightforce.com/mediagallery/mediaobjects/tn/4/4_screen_0607_105321.jpg" height="150" width="200" border="0" alt=""></a> <a href="http://www.midnightforce.com/mediagallery/album.php?aid=6"><img src="http://www.midnightforce.com/mediagallery/mediaobjects/tn/5/5_screen_0608_145209.jpg" height="150" width="200" border="0" alt=""></a> <a href="http://www.midnightforce.com/mediagallery/album.php?aid=6"><img src="http://www.midnightforce.com/mediagallery/mediaobjects/tn/7/7_screen_0612_091514.jpg" height="150" width="200" border="0" alt=""></a> <a href="http://www.midnightforce.com/mediagallery/album.php?aid=6"><img src="http://www.midnightforce.com/mediagallery/mediaobjects/tn/e/e_screen_0616_110129.jpg" height="150" width="200" border="0" alt=""></a> </div> <div style="clear:both;"></div> <div style="width: 200px; text-align: center;font-style: italic;font-size: smaller;text-indent: 0;"> </div> </div> <SCRIPT type="text/javascript">initImageGallery1();</SCRIPT> Call of Juarez is a next gen epic adventure western themed FPS game. The game's unique plot is located in 19th century Wild West and its gameplay requires a combination of both intelligent stealth and pure reflex shooting. Play as both Billy, a sneaking fugitive, and reverend Ray his uncompromising hunter, all in one game.<br /><br />Call of Juarez diversified gameplay exploits many original elements, some depending on the interactive environment that's based on realistic physics simulation. Fast paced revolver duels using historically accurate firearms, horseback riding and memorable locations together with top notch graphics (Pixel Shader Model 3) and climatic soundtrack will immerse both casual and hardcore players in the attractive well known world of western movies. Click on the slideshow to view some awesome screenshots, and a few videos.<br /><br />I must admit, I am really impressed with this game so far. The graphics are amazing (we've all said that before) and some of the PSM3 stuff is so freakin' lifelike! Focus blur really gives the action a 3D depth. The single player storyline is natural, and the action varied. It brought one smile to my face after another. (once you go visit the saloon floozie upstairs, you'll know what I mean! ;-) ) And then having to crash out of a second story window to avoid getting shot..... nice! Read on for more details. <em>Plagerized from Ubisoft:</em> Fight your way through the Wild West, birthplace of the term &quot;shooter,&quot; in the only game to give you an authentic look into the Old West and all its glory through the eyes of the hunter AND the hunted. <br /><br />South Texas. 1882. Billy Candle has just turned 19 and he stands accused of murdering his mother and stepfather. Hot on his trail is Reverend Ray McCall, his stepfather's brother and an infamous gunfighter who believes the Lord has chosen him to be Billy's judge, jury and executioner. Call of Juarez is an epic western adventure about vengeance, survival and the search for a legendary lost treasure.<br /><br /><strong>Key Features:</strong><br /><ul> <li><strong>Wild West</strong>: As seen in some of Hollywood&rsquo;s most memorable feature films, immerse yourself in the most authentic Wild West environments and scenarios ever experienced on the PC, including saloon brawls, train robberies, old-time shootouts, and bare-knuckle brawling.</li> <li><strong>Dual Gameplay</strong>: Play as two opposing characters, each equipped with differing skills, abilities and weaponry. As Billy, use your bow and craftiness to sneak in and out of trouble; as Ray, stop enemies in their tracks with your mesmerizing preaching, only to take them down with your six-shooter moments later.</li> <li><strong>Multiplayer</strong>: Shoot your way out of some of the Old West&rsquo;s most infamous events, such as Billy the Kid&rsquo;s shootout at Stinking Springs Ranch, in one of several objective modes or take the law into your own hands and hunt down a band of outlaws on the run with your friends in co-op mode!</li> <li><strong>Technology</strong>: Using the third installment of Techland&rsquo;s own Chrome game engine, Call of Juarez recreates the distinct rough-and-tumble beauty of the Old West through detailed and realistic environments and levels that spread across miles of terrain.</li> <li><strong>Reactive AI</strong>: Encounter intelligent Old West enemies, each with individual skills, who use their environments to their advantage, employ suppressive fire and work together as a group to shoot you down.</li> <li><strong>Weapons and Equipment</strong>: Take to the dirt roads on your horse, equipped with genuine Wild West weaponry and equipment like the standard issue six-shooter or the traditional bow and arrow.</li></ul> Hamachi &quot;Downgrade&quot; http://www.midnightforce.com/article.php?story=20070607221718804 http://www.midnightforce.com/article.php?story=20070607221718804 Thu, 07 Jun 2007 22:17:00 -0700 Clan News You will need to downgrade your Hamachi install to version 1.0.1.1 to be able to play most games over a virtual LAN.&nbsp; You can <a href="http://www.filehippo.com/download_hamachi/?1840">download it here</a>