Hackzilla.org

October 10, 2007

Command and Conquer 3 (cnc3) Compared

Filed under: Games, Message, Software — Dan @ 9:59 pm

UPDATE: Command and Conquer: Kane’s Wraith

This game is impressive, and the new interface is growing on me. I was mortified to find out they had swapped over the mouse keys and very relieved to find that there was an option for "classic mouse buttons" from a patch. The latest patch available at the time of writing is v1.08.

Patches are available from the Command and Conquer website.

Command and Conquer 3 is a great game to play. The introduction video cut scenes are nice, the special effects are excellent, people are in better proportion to everything else.

Online gaming is a mad frantic rush to build up your base. With the addition of cranes, you can add extra production queue to speed up building of your base. The downside to the crane is it adds a useless queue for building defences.

New and Improved Features

  • War factory and Airport repair nearby vehicles, planes
  • Solider unit is now comprised of 5 men, rocket solider unit contains 2 men
  • Change attack stance
  • New camera controls (can rotate the map, zoom in and out)
  • Scrin
  • Reverse move
  • Multiple build queues
  • Tabbed Interface (as seen in Command and Conquer Red Alert and Red Alert 2)
  • Battlecast
  • Easy internet multi-player setup

With all the good things about this game, it is still not quite the Command and Conquer that everyone knows and loves. It misses a few key items that have been available in some or most of the previous games.

Missing Features (in order of preference)

  • Method for indicating whether a target is within range of attacking unit. (highest)
  • Walls, Tarmac and Gates
  • Indication of item being built is currently on hold
  • Collateral damage to near by buildings by a destroyed building
  • Water based units
  • Command Outpost controls the radar (no radar without any, and when last one is destroyed the radar is not available)
  • Engineers repair Garrisonable buildings
  • Multi-player options (Shroud regrows, tech level, super weapons, start with base, Tiberium regrows)
  • Control over game replays
  • Random map
  • Tiberium veins
  • Par times for campaign game
  • Better AI. (2x Brutal enemies crippled with 4 planes. Enemies built no anti-aircraft, when playing online.)
  • Change music (lowest)

Compiled below is comparison of all the Command and Conquer games (excluding CNC Renegade) and all the features that are missing or in need of improvement.

If any features have been missed, please post a comment about it.

(more…)

September 1, 2007

Command and Conquer 3

Filed under: Games, Message, Software — Dan @ 2:29 pm

Command and Conquer 3 is a game I have been meaning to buy for a while, but I just couldn’t justify its price tag of £34.99 ($70).

Like some of you, I was waiting for the game to drop in price.

Then I received an email from Game, telling me that Command and Conquer 3 Kane Edition was now selling for £17.99 ($36) including free delivery.

Being a huge Command and Conquer fan, I immediately bought the game online that lunchtime. Game said delivery would take 2 business days.

To my shock and excitement, the package arrived the very next day.

Feverishly I installed Command and Conquer.

The game was a little sluggish to load, but once it had, it worked flawlessly. Quickly I checked the Graphics options. The graphics settings had been detected on pretty much the very lowest settings. Never had I expected it to be able to have the settings on maximum, but very low was slightly worrying. I turned a few options on to low (especially texture quality) and the game looked reasonable. I was happy with the results.

Coming soon Command and Conquer 3: Compared. Does it live up?

August 8, 2007

Free Money and a Couple of Bargins

Filed under: Games, Hardware, Money, Software — Dan @ 12:52 am

I am always up for money saving tips, and money off.

So when I heard about Give or Take I was impressed.

Give or Take is cash back website that allows you claim back a proportion of the money you spend online at some retailers.

Some times its a percentage of the sale, and some times its a fixed amount.

Recently I’ve purchased a Dell Vostro 1000 (read my review), my car insurance, a copy of Command and Conquer 3 and have also signed up for an American Express Nectar card and a free credit check.

Total Cash Back: £168.97

I should get a cheque beginning of October 2007, minus a £5 admin fee for the year.

That’s not a bad amount when I had spent only £530 on items I was going to buy anyway.

How much could you claim back using Give or Take?

July 21, 2007

Installing Cygwin

Filed under: Bash, Languages, Software — Dan @ 12:19 am

What is Cygwin?

Cygwin is a Linux-like environment for Windows. It consists of two parts:

  • A DLL (cygwin1.dll) which acts as a Linux API emulation layer providing substantial Linux API functionality.
  • A collection of tools which provide Linux look and feel.

Why is it useful?

With Cygwin you can compile lots of Linux applications with little or no modification for use on your Windows computer.
Take advantage of Bash scripting and whole host of other useful Linux programs, like traceroute, whois, xwindow and hostx.

How can I get it?

This is the easy part. Go to the Cygwin website and download setup.exe.
The set-up process is straight forward, and there will be three decisions to make:

  • Where you want your Linux root to be installed
  • Which mirror you would like to use
  • which packages to use and you are on your way.

You will now have successfully installed Cygwin.

If you have any stories about Cgywin, feel free to post comments about them.

May 15, 2007

PHP: One Instance

Filed under: Languages, PHP, Software — Dan @ 11:30 pm

Suppose you have a script in PHP that you only ever want to only ever run one instance of.

For example:

  • Maintenance script (repair,optimise)
  • Update script (crawler)
  • Server

These types of scripts need only to be launched once, and more could be counter productive or even dangerous.

The simplest way to stop multiple instances is to check to see if the last running script is still running.

(more...)

March 13, 2007

Digg-Style Site For Pictures

Filed under: Message, Projects — Dan @ 11:36 pm

This is a little project that a friend and I put together.

Please don’t shoot me down in flames! But instead of waiting a while for Digg’s new pictures feature, a friend and I created a site dedicated to just photographs. It’s a basic interface, but designed to be quick and functional. No registration required.

read more | digg story | visit site

January 18, 2007

Update: Installing OpenCV with Microsoft Visual Studio 2005 C++

Filed under: C/C++, Hacking, Languages, Software — Dan @ 3:40 pm

I have found I kept getting an error when I modified some of the example code.

The error message was:

C Run-Time Error R6034

Error Message
"An application has made an attempt to load the C runtime library incorrectly. Please contact the application’s support team for more information."

After trying a few of the suggested fixes I was starting to give up hope.

Luckly I found a post suggesting  to change the configuration from debug to retail and recompiling.

It worked!

January 10, 2007

Installing OpenCV with Microsoft Visual Studio 2005 C++

Filed under: C/C++, Hacking, Languages, Software, sirBones — Dan @ 10:37 pm

OpenCV stands for Open Computer Vision Library.

OpenCV is an open source library for computer vision development.  There are some very interesting sample applications included with this library.

This sounds like the perfect start for Sir Bones.

Before we can start we need to be able to build the library.

Requirements

Optional

We are going to be using Microsoft Visual Studio for this install.
The reasons for this include Support from OpenCV, Lots of Internet Articles for creating software, MSDN, Offical Software and its FREE.

Step 1 – Installing Visual C++ and Platform SDK

Visit http://msdn.microsoft.com/vstudio/express/visualc/usingpsdk/ and follow Microsofts Guide to setup Visual C++ and the Platform SDK.

When you get to Step 3, add this line to "Include Files" (assume default install location)
C:\Program Files\Microsoft Platform SDK for Windows Server 2003 R2\Include\mfc

This is because OpenCV requires some files that are inside that folder.

Step 2 – Update Visual C++ with Service Pack 1 (Optional)

Service Packs for the each of the Visual Studio products are available on one page from Microsoft.

Visual Studio 2005 Express SP1

The specific update that you will require is called "C++ 2005 Express Edition SP1 – VS80sp1-KB926748-X86-INTL.exe"

Step 3 – Install OpenCV

Go get OpenCV Library and download OpenCV 1.0 for Windows

Installation is straight forward.

Step 4 – Customising Visual C++ for use with OpenCV

We need to setup the directories for Open Visual C++

  • Open Visual C++
  • Choose menu "Tools" and select "Options"
  • In "Projects and Solutions"  and go to "VC++ Directories"
  • Show directories for "Library Files"
  • Add "C:\Program Files\OpenCV\lib" to the list of directories

Step 5 – Open "OpenCV Workspace .NET 2005"

In the start menu a folder called "Open CV" was created when you installed OpenCV.

Inside the folder "OpenCV" there is a shortcut called "OpenCV Workspace .NET 2005"

Open "OpenCV Workspace .NET 2005"

This will load OpenCV solution within Visual C++

There is one last thing you need to do, to be able to compile OpenCV.

  • Choose menu "Build" and Select "Configuration Manager"
  • Change "Active solution configuration" to either "Debug" or "Release"

Step 6 – Build

Now that everything is installed and setup; building OpenCV should be a breeze.

  • Choose menu "Build" and Select "Build Solution"

Building OpenCV can take anywhere from a few minutes to an hour.
When I built OpenCV it took about 10 minutes.< /p>

Congratulations OpenCV is now installed and built.

Update: Problem compiling OpenCV with Visual C++

January 4, 2007

Useful trick for Notepad in Windows

Filed under: Hacking, Software — Dan @ 12:05 am

Have you ever wanted to record information in notepad and automatically have the date and time inserted?

Well now you can.

Open notepad and insert the following:

.LOG

Now save the document as <filename>.log

Also change the "Save as type" to "All Files", this is to prevent notepad saving the document as <filename>.log.txt

(Remember to replace <filename> with the actual name of the document you want to save as)

Now every time you open this document, the current date and time will be entered in for you.

Easy huh?

View Video of this useful trick for notepad in action

December 31, 2006

XBox 360 off for a while

Filed under: Humour, Message — Dan @ 8:09 pm

You see the oddest of things in the real world.

This message was seen on a XBox 360 during the Christmas Sales in Game store.

We are unsure as to the intent of the message.

Is it?

  1. Humour?
  2. Stupidity?
  3. or the Xbox is broken and they have no idea when it will be fixed?

Personally we feel it’s either option 1 or 3.

XBox 360 will not be switched on until 47th Jan

« Previous PageNext Page »

Powered by WordPress

Ofdan Statistics Technology Blogs - Blog Top Sites