No matter where you go GTA IV is everywhere, it’s the game of the moment and probably will be for a while. I still haven’t had a go and it’s really frustrating, I’ve been waiting for a try for ages but whilst the xBox is being fixed there is not a lot I can do about it apart from read the reviews and drool over the screenshots and videos.
As for the reviews, the lowest I have seen is 95% which is very impressive, some people have said that the grpahics aren’t up scratch and the driving isn’t brilliant, I obviously can’t comment but from what I have read, for the most part people seem really happy with it.
I’m particularly looking forward to some multiplayer, getting into Liberty City and causing mayhem in the funniest ways possible.
My machine is still out for repair, it doesn’t even say that the machine has been delivered but I have been assured that it has, I’m so impatient!!!
Films I’ve Watched:
St. Trinian’s
Enchanted
Music Bought:
Oasis - Definitely Maybe
Best Song/Album:
Oasis - Slide Away
Favourite Game:
Mass Effect - Until my xBox broke!!
Gamerscore Increase:
1270!!!
After chewing up Call of Duty 4, my wonderful xBox has had a go at Fifa 08 AND Mass Effect this weekend, off for repairs you shall go, a whole week before GTA 
Plus I have to pay for the repair, it’s no too bad and I get another years warranty on it.
Update: It’s going to cost between £60-65 to get it repaired, UPS are coming to collect from work tomorrow, at least I won’t have too many problems getting it back!
Finally Moved
At least moving flats was easy, we are pretty much settled in except we are still waiting on our Braodband, which may be a couple of weeks away. We have rented the second part of Heroes before the second season starts over here on Thrusday, it went down a bit before we had stopped watching it but it’s picked up again and I’m really enjoying it.
Apart from that it’s all quiet at the moment, going back out with Camera to get in some practice before my Mum’s wedding, will get some pictures up soon..
Anyone who uses the K2 theme for their Wordpress blog will know that upgrading to 2.5 comes with it’s problems, mainly relating to widgets. Once installed you can’t view the dashboard (not that it works very well). There is a workaround though:
Inside the K2 theme folder go to app/includes/widgets-removal.php.
Now, add the following right underneath the remove_action:
if( is_admin() ){
global $pagenow;
if( $pagenow == 'index.php' )
wp_maybe_load_widgets();
}
The file should then look like this:
if (get_option('k2sidebarmanager') == '1') {
remove_action('plugins_loaded', 'wp_maybe_load_widgets', 0);
}
if( is_admin() ){
global $pagenow;
if( $pagenow == 'index.php' )
wp_maybe_load_widgets();
}
Then it should all work nicely! It does with mine at least!!