In case anyone would like to reduce the chance of M$ sneaking into their non-region 1 box, here's a method of enabling the Parental Control feature/s in UIX eh.

Change two occurrances of
== "NA" to be
!= "M$" in *
UIX's default.xip* as per:
(i) the if statement that's after:
= v[nGamePCLevel];resulting in the equivalent of
if (theConfig.GetGameRegion() != "M$") { nCurListItemCount = 3;(ii) the if statement that includes:
== "NA") +resulting in the equivalent of
if((theConfig.GetGameRegion() != "M$") + (theConfig.GetGameRegion() == "JAPAN"))(*
Don't do this in the retail default.xip as that would frag the M$ dash!*)
This post has been edited by eh.: Mar 15 2005, 10:33 AM