Jump to content

cbox


iBotPeaches

Owner
  • Posts

    6582
  • Joined

  • Last visited

  • Days Won

    139

Everything posted by iBotPeaches

  1. iBotPeaches

    gamertag email

    Most Windows Live ID changes must take place through passport.net (login with his email and password) then you can change most of that info.
  2. bah, its not locked and yet the main post is edited and content removed. Don't know what to do.
  3. Halo 2 is xbox game Maybe, depends on how much modding takes place. I agree, will change shortly.
  4. I pre-ordered from GameStop. Anyone else pre-order?
  5. I could of asked people's opinions and waited a month for people to agree, but I went ahead and did what I thought needed to be done to organize the forums more. The Halo sections used to look like this Halo 2Halo 2 ModsH2 Fun ModsH2 AI ModsH2 Requests[*]Halo 2 Programs[*]Halo 2 Tutorials [*]Halo 3 Halo 3 ModsUsermap Mods[*]Halo 3 Tutorials[*]Halo 3 Programs Now it looks like this. Xbox GamesHalo 3H3 ModsH3 ProgramsH3 TutorialsH3 Videosetc[*]Halo 3 ODST ODST Modding[*]Halo 2 H2 Fun ModsH2 AI ModsH2 TutorialsH2 Programs[*]Other Games Gears of War GamesCall of Duty GamesHalo Wars Now that the changes are done, I'm open to all criticisms.
  6. Yeah you would need Halo 2 on your harddrive, or just a burned ISO. Since the mainmenu is only there if you've copied it.
  7. Please only debate if you live in America, or live elsewhere and know enough to participate. I have 2 comments. The government currently owns the United Stats Postal Service, and they suck. Anytime I ship packages I use UPS, Fedex, or DHL. Never ever USPS. So that shows if the government took control of the health care system it would go down the drain since a private company always does better than a government job. Then my question. Who will pay for this major reform?
  8. I just cashed in my Club Bing points. I'd recommend this for anyone. Its quick and easy and free prizes.
  9. Yeah, I'm not bothering to work on the rest of the post until the spacing is preserved and working.
  10. RC4 of CommunitySEO failed on iBotModz. Stupid one error I could not get rid of, and I just can't edit their files to make it work since their encoded. Guess were waiting another week for the final version. Sorry bout that.
  11. I'll weight those choices soon enough. I could use more M$ points
  12. You have to confirm your account with social security at bellsouth. Not sure I want to do that.
  13. Okay, Give me 1 hour or so. I want those M$ points
  14. Do you currently own the lostmodz@bellsouth.net email account?
  15. http://www.youtube.com/watch?v=cUUhMIK4ODA xex by Xenon.7Mod by DarkShallFallBrought to you by http://rework3d.com/Make sure you buy it, if you ripped it.
  16. Still need it?
  17. Yeah I honestly didn't mean to post this yet. I noticed while writing the draft that the CODE box would not space my code correctly so I just slapped it together. The threading is there to insure the codes are different. A fix for some type of windows computer. I'll update it once I get this codebox to space my code properly.
  18. Here is the function you can use private string RandomString(int size) { //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 } So then you can use like codeString = RandomString(25); Which generates a 25 character string which is the right size for Microsoft codes. Then you can max generate them into a text file and then split the code into 5 parts and dump it into xbox.com and keep trying until you get one that works. You can also mass enter them into xbox.com, but I got a simple HTTP ban from their website (Which expired after 24 hours) after I tried about 12,000. So I wouldn't recommend it.
  19. I was getting scared and reading that when it said ibotmodz.net. .....
  20. And to clarify I'm 100$ sure the legal launch in France hasn't happened yet. Copies were leaked. If you play online, you will be banned end of story.
  21. iBotPeaches

    DVD iPod

    I have a program that I just dump all the info/vor and whatever files into one folder and it converts to ISO or directly burns to a DVD. ConvertXtoDVD 3 is the name. Torrent it Help Desk next time
  22. Look what Major Nelson's Twitter says.
  23. If I somehow coded all of that, I'm sure I could add some VIPs to moderate.
  24. I started looking at the source and all the REP calls are pulled globally from one function. I'm hoping in a quick test that I can alter just one file and it will work in all REP places.
  25. Those would just be an SQL value so that when we query them we only pick the ones we want. (Those that are approved, and those that aren't) Nothing public you would see.
×
×
  • Create New...