Sager is expensive, but you might find a system there as everything has top of the line chips and graphic cards. Otherwise you just have to buy a brand and then wipe windows and re-install to get rid of all that bloatware.
Still can't use xbins. I think your running XBReboot, which is old as hell. So we have to make a switcher image that flashes you to freeBoot. Then we re-generate a new raw dump and use that one to update you. Get me these 2 please Kernel 9199 files (xbins /XBOX 360/development/freeBOOT/) freeBOOT v0.032 (xbins /XBOX 360/development/freeBOOT/)
You can find the perfect balance Some people do it too much then regret it. Everyone does whatever the hell they want when they want. Its cool like that, but enjoy the life outside of the internet.
kk. Those aren't going to work. Try booting Xell, it has to be there. Unplug the HDD, only have display, power and 1 control. Boot by clicking Eject on DVD drive. Try long hold on power. Try short hold on power. Try long hold on eject. We need that CPU key.
kk. I need the CPU key to fix the rest. We just have to figure out how to get it. Xbins is down for me right now, but I theres a tool in there we can use.
There fake. There just generated numbers. I wrote this in 2008 to make the codes. Someone told me the rules (I think its like no O or I, because they look like numbers and like there is never more than 2 numbers in a row).
private string RandomString(int size=25)
{
//TEMP VARS
StringBuilder builder = new StringBuilder();
Random random = new Random();
char ch;
int num = 0;
string cm;
char N1 = (Convert.ToChar(Convert.ToInt32(73)));
char N2 = (Convert.ToChar(Convert.ToInt32(79)));
char N3 = (Convert.ToChar(Convert.ToInt32(111)));
char N4 = (Convert.ToChar(Convert.ToInt32(105)));
/* This handles the randomizing of Letters and Numbers
* Only 2-9 are used
* All Letters except O,o, I, i */
for (int i = 0; i < size; i++)
{
Random r1 = new Random();
check4:
int r2 = r1.Next(1, 3);
if (test == 0) //This makes sure the first one is a letter
r2 = 2;
switch (r2)
{
case 1: //Gen the Number
//Make sure more than 2 numbers never happen
if (num == 2)
{
num = 0;
goto case 2;
}
Random r3 = new Random();
Thread.Sleep(r1.Next(1,5));
num++; //Make sure only numbers used twice
cm = (Convert.ToString(r3.Next(2, 9)));
builder.Append(cm);
r2 = 2;
break;
case 2: //Gen the Character
test = 1;
ch = Convert.ToChar(Convert.ToInt32(Math.Floor(26 * random.NextDouble() + 65)));
if ((ch == N1) | (ch == N2) | (ch == N3) | (ch == N4))
{
goto check4;
}
else
{
builder.Append(ch);
break;
}
}
}
return builder.ToString().ToUpper(); //Return the string
}