Sunday 22 June 2014

Jagged Alliance CrossFire PC Game




  • OS::: Windows XP / Windows 7 / Windows Vista / Windows 8
  • RAM::: 2 GB
  • HDD::: 3 GB
  • Video Memory::: 512 MB
  • CPU::: Intel Core 2 Due / 1.8 GHz

Jagged Alliance CrossFire Game ScreenShots:-))














0 comments

Renegade Ops Game




  • OS::: Windows XP / Windows 7 / Windows Vista / Windows 8
  • RAM::: 2 GB
  • HDD::: 10 GB
  • CPU::: 2.6 GHz / Intel Core 2 Due
  • Video Memory::: 256 MB














Torrent File





0 comments

Need For Speed Rivals



Rivals is an upcoming open-world racing video occupation in exercise at Swedish games developer Spectre Games (erstwhile EA Gothenburg), the ordinal text in the long-running Requisite for Qualify programme. The spunky is to be free for Microsoft Windows, PlayStation 3 and Xbox 360 on 19 Nov 2013 and module also be released for PlayStation 4 and Xbox One after in 2013. It is a unworldly progeny to 1999's Condition for Fastness: Higher Bet.

Rivals instrument dimension analogous gameplay to 2010's Need for Velocity: Hot Move call in the Condition for Pace franchise with exotic cars and high-speed law chases. Players get on the role of a automobile or a cop, with apiece take of the law gift its own set of challenges, risks and rewards. Rivals instrument article eleven upgradeable gadgets such as EMPs, shockwaves and the power to say in roadblocks. The brave takes situation in fictional Redview County, an area class region that's concourse to scraps between cops and robbers. The connatural set-up to 2012's Requisite for Travel: Most Welcome, with several jumps, locomote traps and unlockable cars.

The scheme uses Autolog, the competition-between-friends group industrial by Measure for Hot Quest, and since misused in another titles in the Pauperism for Velocity programme. It module let players likeness stats and contend friends anytime, anywhere and deal the accomplishments with both friends and rivals. Rivals features a new cultural group titled AllDrive, which figure players to seamlessly transition from playing solitary, to performing with friends, described as "destroying the product between only contestant and multiplayer". This module allot players to in operate co-op gameplay as well as roleplay against each opposite. The business also features a projectile alive in a such large discernment than any remaining Pauperization for Deepen gallinacean."

In 2010, Criterion Games revitalised the serial with the exude of Penury for Speeding: Hot Quest, a redo of the 1998's Impoverishment for Deepen III: Hot Movement, as it won individual awards, became the highest rated line in Pauperization For Modify's story, and oversubscribed writer than 8.5 million copies. Measure Games executives stated that they welcome to poker from the playoff' roots and re-introduce old Requirement for Rate ideals (foreign cars, attractive set, police pursuits, etc). Still, in 2011, EA Illegal Box free Poverty for Speed.neutrality is disputed][unseemly reasoning? In 2012, EA Labels chair Frankfurter Gibeau said although he was vainglorious of the Disgraceful Box-developed broadcast, "I don't essential a 60, I require an 80+". On the dominate of EA Hopeless Box, Gibeau said the firm would not be dynamic its cyclic flat strategy. Yet, at E3 2012, Standard evilness chairwoman Alex Businessman announced that the life of haphazard developers roiling out yearly Impoverishment for Hurry instalment are over. Author wouldn't corroborate that all Penury for Zip titles for the forthcoming would mature entirely by Ideal, but did say that the apartment would top that Reference instrument hold command over which Penury for Speeding titles would develop out in the prox.







CPU:Intel 2.4 GHz Core 2 Duo, AMD 2.6 GHz Athlon X2
CPU Speed:Info
RAM:4 GB
OS:Windows XP, Windows Vista (SP2), Windows 7
Video Card:AMD Radeon HD 3870 512Mb or better, NVIDIA GeForce 8800 GT 512 Mb or better, Intel HD 4000 integrated 512Mb or better
Sound Card:Yes
Free Disk Space:30 GB


Torrent File





0 comments

Thursday 3 April 2014

Display Categories In Horizontal Drop-Down Menu

One of my readers recently asked how I created my horizontal menu bar: the short answer is by mixing CSS and Javascript.
The first step is to get WordPress to display the menu as a hierarchical list without a title.
<?php wp_list_categories('sort_column=name&sort_order=asc&style=list&children=true&hierarchical=true&title_li=0'); ?>
We then wrap this WordPress code in the following so we can style it.
<div style="text-align:center;">
<ul id="menu" style="padding:0; margin:0;">
<?php wp_list_categories('sort_column=name&sort_order=asc&style=list&children=true&hierarchical=true&title_li=0'); ?>
</ul>
</div>
I added this to my header.php, but you can add it anywhere you want it to appear.
The CSS is fairly simple and you just need to add it to your theme’s style.css file.
ul#menu {
margin: 0;
padding: 0;
list-style: none;
width: 100%;
font-size:1.2em;
}

ul#menu li {
float: left;
padding: 0;
margin: 0;
border-right:solid 1px #fff;
}

ul#menu ul li {
float: none;
position: relative;
border-bottom: 1px solid #7EAED7; /* fixes gap problem in IE */
border-left: 1px solid #FFF;
z-index:1000;
}

ul#menu li ul {
margin: 0;
padding: 0;
display:none;
list-style: none;
position: absolute;
background: #9CC;
}
ul#menu ul ul{
margin-left: .2em;
position: absolute;
top: 0; /* if using borders, -1px to align top borders */
left: 100%;
}

ul#menu * a:hover, ul#menu li a:active{
background:#7EAED7 !important;
color: #FFFFFF;
}

ul#menu li a:link,
ul#menu li a:visited,
ul#menu li a:hover,
ul#menu li a:active{
display: block;
padding: .2em .3em;
text-decoration: none;
background: #5587B3;
color: #FFFFFF;
}


ul#menu ul li a:link,
ul#menu ul li a:visited,
ul#menu ul li a:hover,
ul#menu ul li a:active {
width: 8em;
}
Of course you will need to change the colors and text sizes to ensure it blends with the rest of the theme.
Now the last step is the to make it work as a drop-down list on all browsers. This could be done in Firefox with a simple CSS declaration, but Internet Explorer doesn’t understand the :hover pseudo classes, so we mimic this in Javascript.
<script type="text/javascript">
/*<![CDATA[*/

var mbA,mbT,mbTf,mbSf;
var mbR = [];

function mbSet(m) {
if (document.getElementById&&document.createElement) {
var m=document.getElementById(m);
mbR[mbR.length] = m;
var i;

e=m.getElementsByTagName('a');
if (!mbTf) mbTf=new Function('mbHT();');
if (!mbSf) mbSf=new Function('mbS(this);');
for (i=0;i<e.length;i++) {
e[i].onmouseout=e[i].onblur=mbTf;
e[i].onmouseover=e[i].onfocus=mbSf;
}

m=m.getElementsByTagName('ul');
for (i=0;i<m.length;i++) {
mbH(mbL(m[i]));
}
}}

function mbHA() {
if (mbA) {
while (mbA) mbH(mbA);
mbHE('block');
}
}

function mbHT() {
if (!mbT) mbT=setTimeout('mbHA();', 0);
}

function mbTC() {
if (mbT) {
clearTimeout(mbT);
mbT=null;
}
}

function mbS(m) {
mbTC();
if (mbA) while (mbA&&m!=mbA&&mbP(m)!=mbA) mbH(mbA);
else mbHE('none');

if (mbM(m)) {
mbSH(m,'block');
mbA=m;
}
}

function mbH(m) {
if (m==mbA) mbA=mbP(m);
mbSH(m,'none');
mbT=null;
}

function mbL(m) {
while (m && m.tagName != 'A') m = m.previousSibling;
return m;
}

function mbM(l) {
while (l && l.tagName != 'UL') l = l.nextSibling;
return l;
}

function mbP(m) {
var p = m.parentNode.parentNode;
if (p.tagName == 'UL') {
var i = 0;
while (i < mbR.length) {
if (mbR[i] == p) return null;
i++;
}
} else {
return null;
}
return mbL(p);
}

function mbSH(m,v) {
m.className=v;
mbM(m).style.display=v;
}

function mbHE(v) {
mbHEV(v,document.getElementsByTagName('select'));
}

function mbHEV(v,e) {
for (var i=0;i<e.length;i++) e[i].style.display=v;
}
/*]]>*/
</script>
A couple notes on the previous code.
  1. To activate it, change your theme’s <body> tag to <body onload=”mbSet(‘menu’);>
  2. It was not written by me, but I’ve been using it for a long time and don’t remember where I got it.
  3. It can occasionally create a JavaScript error, and I’ve intended to rewrite it for a long time, but it usually works fine.
0 comments