I was hired by MS in 2001, so this is the first day since I was hired, that MSFT has been ahead. good thing I held onto most of my stock. although, it doesn't take a genius to see that the stock is still undervalued.
Friday, October 26, 2007
MSFT corrected to 2001
today Microsoft stock (MSFT) "corrected" to its highest numbers since 2001. MSFT went as high as $36.03 after the company annouced that it would surpass revenue predictions.
I was hired by MS in 2001, so this is the first day since I was hired, that MSFT has been ahead. good thing I held onto most of my stock. although, it doesn't take a genius to see that the stock is still undervalued.
I was hired by MS in 2001, so this is the first day since I was hired, that MSFT has been ahead. good thing I held onto most of my stock. although, it doesn't take a genius to see that the stock is still undervalued.
Thursday, October 25, 2007
Gutenberg's 20,000 free books
it's amazing how Project Gutenberg has grown. more free books than anyone could possibly need. these are books that aren't covered by copyrights--so almost all of them are over 80 years old. ever wished that you could search war and peace for the word "bubble"? here's your answer...
getting individual books: http://www.gutenberg.org/catalog/
getting compilations:
"The August 2003 CD contains 600 of our best Ebooks. The December 2003 DVD contains 9400 of our first 10,000 books. The July 2006 DVD contains over 17,000 books from our first 19,000 titles. All of the books found on the CD can also be found on both DVDs and most of the files on the December 2003 DVD can be found on the July 2006 DVD. There are very few images on the discs, and no audio books."
getting individual books: http://www.gutenberg.org/catalog/
getting compilations:
"The August 2003 CD contains 600 of our best Ebooks. The December 2003 DVD contains 9400 of our first 10,000 books. The July 2006 DVD contains over 17,000 books from our first 19,000 titles. All of the books found on the CD can also be found on both DVDs and most of the files on the December 2003 DVD can be found on the July 2006 DVD. There are very few images on the discs, and no audio books."
Labels:
books
Tuesday, October 23, 2007
XNA book base code article
the XNA Game Studio Creator's Guide co-author, Pat McGee, has written an article about the XNA base code that he wrote for the book.
essentially, this article breaks down how to create the simple first-person game engine that is the base of many of the examples in the book.

- a screenshot from the textures chapter
essentially, this article breaks down how to create the simple first-person game engine that is the base of many of the examples in the book.
- a screenshot from the textures chapter
configuring BitTorrent for speed
a few people have asked me about boosting BitTorrent download speeds. while it's always going to take hours to download GBs from BitTorrent "torrents," you can improve your performance significantly. I used these resources to make my download speeds much faster:
- the BitTorrent FAQ and guide.
- I use the BitComet client. there are a number of speed guides for BitComet.
- another consideration is port forwarding for your router (e.g., NetGear Router Port Forwarding).
- you can also run an online Speed Test to see how your connection is faring.
BTW - if you can't find the torrent you're looking for, try BTJunkie. it boasts the largest torrent search engine.
- the BitTorrent FAQ and guide.
- I use the BitComet client. there are a number of speed guides for BitComet.
- another consideration is port forwarding for your router (e.g., NetGear Router Port Forwarding).
- you can also run an online Speed Test to see how your connection is faring.
BTW - if you can't find the torrent you're looking for, try BTJunkie. it boasts the largest torrent search engine.
Labels:
tech
Friday, October 19, 2007
disabling VS just-in-time debugging
do you have Visual Studio installed on a machine that you use for every day tasks? are you tired of canceling the just-in-time debugging when you know that you're never going to use it on the apps that are triggering it? well, here's your post... turn it off.
from: http://msdn2.microsoft.com/en-us/library/k8kf6y2a.aspx
To enable/disable Just-In-Time debugging
- On the Tools menu, click Options.
- In the Options dialog box, select the Debugging folder.
- In the Debugging folder, select the Just-In-Time page.
- In the Enable Just-In-Time debugging of these types of code box, select or clear the relevant program types: Managed, Native, or Script.
- To disable Just-In-Time debugging, once it has been enabled, you must be running with Administrator privileges. Enabling Just-In-Time debugging sets a registry key, and Administrator privileges are required to change that key.
- Click OK.
from: http://msdn2.microsoft.com/en-us/library/k8kf6y2a.aspx
To enable/disable Just-In-Time debugging
- On the Tools menu, click Options.
- In the Options dialog box, select the Debugging folder.
- In the Debugging folder, select the Just-In-Time page.
- In the Enable Just-In-Time debugging of these types of code box, select or clear the relevant program types: Managed, Native, or Script.
- To disable Just-In-Time debugging, once it has been enabled, you must be running with Administrator privileges. Enabling Just-In-Time debugging sets a registry key, and Administrator privileges are required to change that key.
- Click OK.
Thursday, September 27, 2007
HHC help file format gotcha
back in my days working with NCompass Resolution and Microsoft Content Management Server (MCMS), I began an MCMS FAQ that was published in CHM and HTML formats. I used to write the topics in Resolution (and later in MCMS) and then I had my ASP script that dynamically produced an HHC table of contents so that Microsoft Help Workshop could create a full-text search version of the document.
well that was back in about 1999 and I obviously didn't remember all the lessons from back then. today I was working with basically the same setup (minus MCMS) for Metalogix Software's SharePoint migration solutions.
I was creating a new CHM and found that Help Workshop will compile the file, but the result was, "This program cannot display the webpage".
I found the answer after looking at the broken .HHC file and a working file side-by-side. so here's my little test. can you see the difference?
this is a--greatly simplified--broken .HHC file:
<html>
<head>
<!--Sitemap 1.0-->
</head>
<body>
<ul>
<li><object type="text/sitemap">
<param name="Name" value="Foo Directory">
<param name="Local" value="Foo Directory/index.htm">
<param name="ImageNumber" value="1">
</object></li>
<ul>
<li><object type="text/sitemap">
<param name="Name" value="Topic1">
<param name="Local" value="Foo Directory/Bar.htm">
<param name="ImageNumber" value="11">
</object></li>
<li><object type="text/sitemap">
<param name="Name" value="Topic1">
<param name="Local" value="Foo Directory/Foo.htm">
<param name="ImageNumber" value="11">
</object> </li>
</ul>
</ul>
</body>
</html>
and here is a working .HHC file:
<html>
<head>
<!--Sitemap 1.0-->
</head>
<body>
<ul>
<li><object type="text/sitemap">
<param name="Name" value="Foo Directory">
<param name="Local" value="BarDirectory/index.htm">
<param name="ImageNumber" value="1">
</object></li>
<ul>
<li><object type="text/sitemap">
<param name="Name" value="Topic1">
<param name="Local" value="BarDirectory/Bar.htm">
<param name="ImageNumber" value="11">
</object></li>
<li><object type="text/sitemap">
<param name="Name" value="Topic1">
<param name="Local" value="BarDirectory/Foo.htm">
<param name="ImageNumber" value="11">
</object></li>
</ul>
</ul>
</body>
</html>
answer below...

- click for full-size image
answer: the help file directories must not contain spaces in their names. "Foo Directory" will fail, "BarDirectory" will work. now that's a gotcha that the app should catch and report.
BTW - this same error will appear if you don't select a "Default file" inside the Help Workshop project options. however, in that case, everything works once you click on a topic.
well that was back in about 1999 and I obviously didn't remember all the lessons from back then. today I was working with basically the same setup (minus MCMS) for Metalogix Software's SharePoint migration solutions.
I was creating a new CHM and found that Help Workshop will compile the file, but the result was, "This program cannot display the webpage".
I found the answer after looking at the broken .HHC file and a working file side-by-side. so here's my little test. can you see the difference?
this is a--greatly simplified--broken .HHC file:
<html>
<head>
<!--Sitemap 1.0-->
</head>
<body>
<ul>
<li><object type="text/sitemap">
<param name="Name" value="Foo Directory">
<param name="Local" value="Foo Directory/index.htm">
<param name="ImageNumber" value="1">
</object></li>
<ul>
<li><object type="text/sitemap">
<param name="Name" value="Topic1">
<param name="Local" value="Foo Directory/Bar.htm">
<param name="ImageNumber" value="11">
</object></li>
<li><object type="text/sitemap">
<param name="Name" value="Topic1">
<param name="Local" value="Foo Directory/Foo.htm">
<param name="ImageNumber" value="11">
</object> </li>
</ul>
</ul>
</body>
</html>
and here is a working .HHC file:
<html>
<head>
<!--Sitemap 1.0-->
</head>
<body>
<ul>
<li><object type="text/sitemap">
<param name="Name" value="Foo Directory">
<param name="Local" value="BarDirectory/index.htm">
<param name="ImageNumber" value="1">
</object></li>
<ul>
<li><object type="text/sitemap">
<param name="Name" value="Topic1">
<param name="Local" value="BarDirectory/Bar.htm">
<param name="ImageNumber" value="11">
</object></li>
<li><object type="text/sitemap">
<param name="Name" value="Topic1">
<param name="Local" value="BarDirectory/Foo.htm">
<param name="ImageNumber" value="11">
</object></li>
</ul>
</ul>
</body>
</html>
answer below...
- click for full-size image
answer: the help file directories must not contain spaces in their names. "Foo Directory" will fail, "BarDirectory" will work. now that's a gotcha that the app should catch and report.
BTW - this same error will appear if you don't select a "Default file" inside the Help Workshop project options. however, in that case, everything works once you click on a topic.
Tuesday, September 25, 2007
Amazon targeting for Halo books
a friend of mine shared a funny little fact with me today. it turns out that Amazon is targeting customers of my Halo 2 battle guide for the new Halo 3 Official Guide.

- click for full-size image
- click for full-size image
Halo 3 finish the frustration
I previously whinged about my Xbox 360 crashing. now I'll vent a little bit more. the replacement machine literally crashed within five minutes of turning it on. so the biggest game launch in history is upon us, and I'm left out of the rumble until I get the replacement replacement. arghhh!

I just sent the Xbox Global Marketing team an e-mail about these issues. as a professional courtesy, I'll give them a chance to respond before I publish the e-mail.
update: they did respond and said that they are taking the problem seriously and have allocated roughly one billion to deal with defects.
as if to mock me further... MS is sending me e-mails reminding me of what I'm missing.

- MS e-mail about the Halo 3 launch
I just sent the Xbox Global Marketing team an e-mail about these issues. as a professional courtesy, I'll give them a chance to respond before I publish the e-mail.
update: they did respond and said that they are taking the problem seriously and have allocated roughly one billion to deal with defects.
as if to mock me further... MS is sending me e-mails reminding me of what I'm missing.
- MS e-mail about the Halo 3 launch
Saturday, September 22, 2007
Dal Water Polo Chocolate Lake
these weekend the Dalhousie Water Polo team borrowed some water from the ducks as we had a BBQ and game in Chocolate Lake (in Halifax). I've posted many photos on my live space.

- warm-up has a whole new meaning...

- game on!

- why are three people checking me? I hope we scored on this play.

- out of Chocolate Lake towards the hot chocolate

- here's your new facebook pic John

- good day...
- warm-up has a whole new meaning...
- game on!
- why are three people checking me? I hope we scored on this play.
- out of Chocolate Lake towards the hot chocolate
- here's your new facebook pic John
- good day...
Labels:
canada,
sports,
water polo
listen to O'Reilly blogs
O'Reilly has added a cool feature to their blog pages. for example, you can listen to this blog post of mine about Halo 2 modding.
the site is powered by ReadSpeaker, which is an app that will read the text on website pages.
I'd be upset that the app can't pronounce my last name, except that it can't pronounce 'Xbox' either.
the site is powered by ReadSpeaker, which is an app that will read the text on website pages.
I'd be upset that the app can't pronounce my last name, except that it can't pronounce 'Xbox' either.
Wednesday, September 19, 2007
Dalhousie Water Polo web monkey
it looks like I'll be taking over as the web monkey for the Dalhousie Water Polo team. if anyone out there wants to send me their 2c regarding possible improvements, please feel free.

this is also a good excuse to use my jenn animation again...

- I really should create another one like this. I have shots of her doing the same thing
this is also a good excuse to use my jenn animation again...
- I really should create another one like this. I have shots of her doing the same thing
Labels:
canada,
sports,
water polo
Tuesday, September 18, 2007
Metalogix SharePoint migration
during my days with the Microsoft Content Management Server (MCMS) team, I worked with a Microsoft partner called Metalogix Software. at the time, they were the best option for customers who wanted to migrate any sort of website to MCMS.
since then, MCMS has been discontinued as a separate product, but some of the functionality of MCMS has been added to Microsoft Office SharePoint Server (MOSS). with this change, Metalogix adjusted their focus. today, their primary business is sophisticated SharePoint migration solutions.
my latest gig is going to be some contract work for Metalogix. I'll be helping them build up their product documentation and FAQ resources.

- Metalogix Software's SharePoint Site Migration Manager
since then, MCMS has been discontinued as a separate product, but some of the functionality of MCMS has been added to Microsoft Office SharePoint Server (MOSS). with this change, Metalogix adjusted their focus. today, their primary business is sophisticated SharePoint migration solutions.
my latest gig is going to be some contract work for Metalogix. I'll be helping them build up their product documentation and FAQ resources.
- Metalogix Software's SharePoint Site Migration Manager
Monday, September 17, 2007
XNA book download and forum
the sample code and other files that go along with Microsoft® XNA Game Studio Creators Guide can be found at: http://www.mhprofessional.com/product.php?isbn=007149071x (look for the "code" link on the left side, just under the cover image)
thanks to Pat, the forum for the book is here: http://www.gamedeveloperonline.com/
if you have any questions about the examples, go to the forums and ask away.
thanks to Pat, the forum for the book is here: http://www.gamedeveloperonline.com/
if you have any questions about the examples, go to the forums and ask away.
Wednesday, September 12, 2007
resumé
I was visiting the office of the Writers' Federation of Nova Scotia today and they reminded me that I don't have any sort of online CV. so here goes...
Stephen Cawood B.A.
---------------------------------------------------------------
Published Books

Augmented Reality at Home
Author 2008 - Pending
ISPN: 1-934356-03-4
The Pragmatic Programmers, LLC

Microsoft XNA Game Studio Creators Guide
Author - 2007
ISPN: 007149071X
McGraw-Hill

The Black Art of Halo Mods
Author - 2006
ISBN: 0672328046
Sams Publishing

Halo 2 Hacks
Author - 2005
ISBN: 0596100590
O’Reilly and Associates

The Unauthorized Halo 2 Battle Guide: Advanced Combat Techniques
Author - 2004
ISBN: 1592007007
Muska & Lipman/Premier-Trade

Microsoft Content Management Server 2002: A Complete Guide
Author – 2003
ISBN: 0321194446
Addison Wesley Publishing Company
Recent Articles
E3 2005: War of the Consoles ... Almost
March, 23, 2005 - The O’Reilly Network
Career Experience
Program Manager - March 2002 to October 2004
Microsoft Corporation, Office Server Team
- Managed feature teams through the software development cycle.
- Designed and wrote specifications for various Microsoft Office server features.
- Founder and co-author of the Microsoft Content Management Server (MCMS) FAQ. The MCMS FAQ is published on Microsoft.com (HTML and CHM formats) and contains thousands of developer-focused questions and answers about MCMS.
Web Developer – October 2001 to March 2002
Microsoft Corporation, E-Business Server Group
- Program Manager/Lead Developer for the MCMS sample applications project. Managed, developed and shipped MCMS sample applications.
Team Lead - August 2001 to October 2001
Microsoft Corporation, Product Support Services
- Helped customers, partners and Microsoft Consulting Services personal with MCMS issues.
Team Lead – October 1999 to April 2001
NCompass Labs, Product Support Team
- Researched and resolved technical issues related to the use and development of web sites running NCompass Resolution content management software.
- Developed sample applications using the Resolution Publishing Application Programming Interface. These applications included a bulletin board, a version of John Conway’s ‘Game of Life,’ and a dynamic image gallery.
Patents
Awarded these Microsoft patent awards:
- Dynamic Link Control Object (MS#309976.1/M&G#60001.0437US01)
- Version Availability (10/997391)
- Unified Navigation (MS#309421.01/M&G#50037.290US01)
Education
Bachelor of Arts – English Literature - University of British Columbia - 1998
Creative Writing Diploma – Humber School of Creative and Performing Arts – 2007
Stephen Cawood B.A.
---------------------------------------------------------------
Published Books
Augmented Reality at Home
Author 2008 - Pending
ISPN: 1-934356-03-4
The Pragmatic Programmers, LLC
Microsoft XNA Game Studio Creators Guide
Author - 2007
ISPN: 007149071X
McGraw-Hill
The Black Art of Halo Mods
Author - 2006
ISBN: 0672328046
Sams Publishing
Halo 2 Hacks
Author - 2005
ISBN: 0596100590
O’Reilly and Associates
The Unauthorized Halo 2 Battle Guide: Advanced Combat Techniques
Author - 2004
ISBN: 1592007007
Muska & Lipman/Premier-Trade
Microsoft Content Management Server 2002: A Complete Guide
Author – 2003
ISBN: 0321194446
Addison Wesley Publishing Company
Recent Articles
E3 2005: War of the Consoles ... Almost
March, 23, 2005 - The O’Reilly Network
Career Experience
Program Manager - March 2002 to October 2004
Microsoft Corporation, Office Server Team
- Managed feature teams through the software development cycle.
- Designed and wrote specifications for various Microsoft Office server features.
- Founder and co-author of the Microsoft Content Management Server (MCMS) FAQ. The MCMS FAQ is published on Microsoft.com (HTML and CHM formats) and contains thousands of developer-focused questions and answers about MCMS.
Web Developer – October 2001 to March 2002
Microsoft Corporation, E-Business Server Group
- Program Manager/Lead Developer for the MCMS sample applications project. Managed, developed and shipped MCMS sample applications.
Team Lead - August 2001 to October 2001
Microsoft Corporation, Product Support Services
- Helped customers, partners and Microsoft Consulting Services personal with MCMS issues.
Team Lead – October 1999 to April 2001
NCompass Labs, Product Support Team
- Researched and resolved technical issues related to the use and development of web sites running NCompass Resolution content management software.
- Developed sample applications using the Resolution Publishing Application Programming Interface. These applications included a bulletin board, a version of John Conway’s ‘Game of Life,’ and a dynamic image gallery.
Patents
Awarded these Microsoft patent awards:
- Dynamic Link Control Object (MS#309976.1/M&G#60001.0437US01)
- Version Availability (10/997391)
- Unified Navigation (MS#309421.01/M&G#50037.290US01)
Education
Bachelor of Arts – English Literature - University of British Columbia - 1998
Creative Writing Diploma – Humber School of Creative and Performing Arts – 2007
Labels:
vanity
where do you buy books?
until recently, I have to admit that I didn't put much thought into where I bought books, but now that I'm more involved with the publishing industry, I have a better understanding of what's at stake.
if you want to support your favourite small press, or your favourite author, you should try to buy their book directly from the publisher. for example, if you were to buy my Augmented Reality book from the Pragmatic Bookshelf site, both the publisher and the authors would get a larger percentage of the sale than they would if you had purchased the book from a large online retailer. this isn't always the case, but quite often it makes a huge difference to the publisher.
now, I'm not suggesting that anyone should stop buying from the big retailers. I'm sure that most of my books will still come from sites such as Chapters and Amazon. however, when I'm not looking for a bestseller, I'll make more of an effort to see if I can help support a small press or a promising author.
if you want to support your favourite small press, or your favourite author, you should try to buy their book directly from the publisher. for example, if you were to buy my Augmented Reality book from the Pragmatic Bookshelf site, both the publisher and the authors would get a larger percentage of the sale than they would if you had purchased the book from a large online retailer. this isn't always the case, but quite often it makes a huge difference to the publisher.
now, I'm not suggesting that anyone should stop buying from the big retailers. I'm sure that most of my books will still come from sites such as Chapters and Amazon. however, when I'm not looking for a bestseller, I'll make more of an effort to see if I can help support a small press or a promising author.
Labels:
rant
Sunday, September 09, 2007
Kejimkujik Park, NS
last weekend, I finally made it to Nova Scotia's Kejimkujik Park. while camping at Thomas Raddall park, we made the short drive to the "Keji" seaside adjunct and did some walking.

- a friendly creature on the trail

- "feed me Seymour!" -- it's Nova Scotia's carnivorous pitcher plant

- a great beach that we'll have to visit next time

- a white sandy... and Canadian... beach

- inviting but chilly

- great visibility
- a friendly creature on the trail
- "feed me Seymour!" -- it's Nova Scotia's carnivorous pitcher plant
- a great beach that we'll have to visit next time
- a white sandy... and Canadian... beach
- inviting but chilly
- great visibility
Monday, September 03, 2007
X-Canada Newfoundland
to complete my journey across all of the Canadian provinces, I made it to Newfoundland this summer. here are some highlight reel shots...

- the Bonavista lighthouse. you have to take a picture of a lighthouse or you're not allowed to leave "the rock."

- some great "flower pot" scenery

-hmm, what was this formation called again?

- this is what puffins look like when your telephoto lens is broken. as it turns out, they're quite small.

- Cape Spear, the easternmost point in Canada. it's closer to Europe from this point than Vancouver.

- there aren't any any snakes or skunks on the rock, but there are spiders.

- the village of Quidi Vidi

- the legend goes that Newfoundland fishermen received cheap paint from the government to paint their boats. some wily soul decided that he would save some money by using the brightly coloured paint on his home and the practise caught on.

- looking down at the Atlantic Ocean from Signal Hill in St John's
- the Bonavista lighthouse. you have to take a picture of a lighthouse or you're not allowed to leave "the rock."
- some great "flower pot" scenery
-hmm, what was this formation called again?
- this is what puffins look like when your telephoto lens is broken. as it turns out, they're quite small.
- Cape Spear, the easternmost point in Canada. it's closer to Europe from this point than Vancouver.
- there aren't any any snakes or skunks on the rock, but there are spiders.
- the village of Quidi Vidi
- the legend goes that Newfoundland fishermen received cheap paint from the government to paint their boats. some wily soul decided that he would save some money by using the brightly coloured paint on his home and the practise caught on.
- looking down at the Atlantic Ocean from Signal Hill in St John's
Friday, August 31, 2007
Augmented Reality at Home cover
Labels:
augmented reality,
books,
project,
writing
Saturday, August 25, 2007
UFC 74 Las Vegas
I'm currently in Las Vegas for UFC 74.
update: seeing the UFC live was great. if you're a fan, I recommend that you go. however, as you may expect, you can't see as much as you would on TV. as with most sports, the TV coverage includes angles and close-ups that you can't get when you're at the live show. but there are a number of benefits that outweigh this issue. for example, when you're at the live show, you see the undercard fights, and you experience the crowd reactions. for example, after Babalu admitted to ignoring the ref's command to release a choke, the crowd was not impressed. as Babalu left the ring he threw his hat into the crowd and the guy who caught it threw it back. another benefit is that you can talk to fighters who aren't competing in the event. without even trying to find anyone, my friends and I saw Andrew Arlovski, David Loiseau, Matt Lindland, Forrest Griffin and some others -- I also had a brief talk with Dana White.
of course, the best part was seeing GSP demolish Koscheck and Randy slam down Gonzaga. since I put some money on Randy, I left Vegas with more money than I arrived with.
here are some quick shots...

- former UFC Heavyweight champ Andre Arlovski

- UFC Heavyweight champ Randy Couture weighs in

- the Mandalay Bay Event Centre and hotel

- sunrise over the vegas mountains

- Ballys hotel and the Paris hotel's famous Eiffel tower replica
update: seeing the UFC live was great. if you're a fan, I recommend that you go. however, as you may expect, you can't see as much as you would on TV. as with most sports, the TV coverage includes angles and close-ups that you can't get when you're at the live show. but there are a number of benefits that outweigh this issue. for example, when you're at the live show, you see the undercard fights, and you experience the crowd reactions. for example, after Babalu admitted to ignoring the ref's command to release a choke, the crowd was not impressed. as Babalu left the ring he threw his hat into the crowd and the guy who caught it threw it back. another benefit is that you can talk to fighters who aren't competing in the event. without even trying to find anyone, my friends and I saw Andrew Arlovski, David Loiseau, Matt Lindland, Forrest Griffin and some others -- I also had a brief talk with Dana White.
of course, the best part was seeing GSP demolish Koscheck and Randy slam down Gonzaga. since I put some money on Randy, I left Vegas with more money than I arrived with.
here are some quick shots...
- former UFC Heavyweight champ Andre Arlovski
- UFC Heavyweight champ Randy Couture weighs in
- the Mandalay Bay Event Centre and hotel
- sunrise over the vegas mountains
- Ballys hotel and the Paris hotel's famous Eiffel tower replica
Friday, August 03, 2007
Halo 2 bloodless?
I recieved an interesting question via e-mail that I thought I'd share. it demonstrates just how much modding can aid this world of ours.
"I am writing to you because I need help changing the color of the blood in Halo 2. Our Church just invested $50,000 in videogame equipment to allow teenagers a place they can hang out and be in a safe environment. We are OK with the war shooter games but the blood upsets some people. I want to know if there is a way to hack the game to stop the blood or change the color. If so would you please tell me or direct me in the right direction."
this was my response...
unless you're talking about PC's, you're probably going to run into some trouble getting approval for modding. although it is possible to buy pre-modded Xboxs with third-party warrantees, modding Xboxs means voiding the Microsoft warranty. if you have PCs then you won't have to worry about any hardware modding and Halo 2 mods are supported.
once you have modded systems, changing the blood to another colour (or even transparent) would be an option.
for questions about modding an Xbox, go to http://www.xbox-scene.com
for questions about modding Halo, the place to go is http://www.halomods.com
"I am writing to you because I need help changing the color of the blood in Halo 2. Our Church just invested $50,000 in videogame equipment to allow teenagers a place they can hang out and be in a safe environment. We are OK with the war shooter games but the blood upsets some people. I want to know if there is a way to hack the game to stop the blood or change the color. If so would you please tell me or direct me in the right direction."
this was my response...
unless you're talking about PC's, you're probably going to run into some trouble getting approval for modding. although it is possible to buy pre-modded Xboxs with third-party warrantees, modding Xboxs means voiding the Microsoft warranty. if you have PCs then you won't have to worry about any hardware modding and Halo 2 mods are supported.
once you have modded systems, changing the blood to another colour (or even transparent) would be an option.
for questions about modding an Xbox, go to http://www.xbox-scene.com
for questions about modding Halo, the place to go is http://www.halomods.com
Subscribe to:
Posts (Atom)
