Jump to content

cbox


dschu012

Members+
  • Posts

    82
  • Joined

  • Last visited

Everything posted by dschu012

  1. You can also run the process with arguments if acceptable. Example: Process.Start("firefox.exe","-url www.ibotmodz.net");
  2. Factorial should be pretty easy since you only need a number as an input http://www.megaupload.com/?d=4YNY16JU Here is an example of a factorial calculator. If the answer is above 18446744073709552000 it won't work because that is the maximum size of a ulong. So as long as you use it to calculate the factorials of numbers below 60ish you should be good.
  3. A recursive function is a function that calls itself. Example: //C++ Returns the Greatest Common Denominator int gcd(int x, int y) { if (y == 0) return x; else return gcd(y, x % y); //calls itself } What you posted is a linear search
  4. I mean a "do while" loop. int i = 0; do { i++; }while(i < 10); That example really doesn't prove to be helpful. But it can be very helpful whenever you need to do something atleast once, then repeat the action based on the results.
  5. Should just be called a for loop not "for next". While your at it why not cover do while (they can be helpful) and foreach.
  6. Would be cool if it actually grabbed stats like the name states it does. Instead of just using a webbrowser control and navigating to your stats page.
  7. Prob not since they are ripping from the beta. Hasn't ZTeam ripped from retail?
  8. One of my friends has to go through and load each DLC map in a custom game before he can play them. If he doesn't load them up they get skipped when we get them in Matchmaking. I dunno how he does it but it is something along those lines.
  9. legos! http://image.xboxlive.com/global/t.4c4107df/tile/0/28007 Lol I'm pretty sure that isn't what you mean
  10. There is programs to get any gamerpicture you want...
  11. Cool. Never knew that.
  12. Why care if he has made progress or not in Halo or not. He made a video that he thought was cool (it looked pretty cool) and wanted to share it. Why does everyone have to flame about any map modding video posted anywhere?
  13. yes
  14. dschu012

    :O ---> B)

    QFT
  15. Huh. Never not been able to find a pic I was looking for. The ID thing is the same folder as it is stored in on the Xbox, not just some random number, if you were curious on what it was exactly. Nice that you finally found it.
  16. Ya didn't seem to be a big hit. I loved it in Halo 2 but it doesn't seem to play as well in Halo 3. Maybe with quicker respawns or something it might play better.
  17. Maybe I don't have vista so can't really test it on that. Vista has all type of security things preventing you from doing stuff that can easily be done on XP.
  18. Worked perfectly for me. Before I click the button http://img294.imageshack.us/img294/8140/63392141nm8.png After clicking the button http://img294.imageshack.us/img294/8280/afternp6.png
  19. http://rapidshare.com/files/189487659/Rename.zip.html Only renames files in the directory you pick. If you want it to go into more directorys and such just tell me and I might work on that for you.
  20. http://www.se7ensins.com/forums/halo-3-mod...etral-flag.html Made and released about 6 months ago.
  21. I think you are in over your head with this. Trying to read the HDD is way too complex.
  22. Seems pointless to me. Not enough uses for it. Use this if you wanna edit L4D UserSetting files http://www.megaupload.com/?d=PS4WY89A
  23. I dont understand what you mean exactly. Do you want to add stuff to a CON file that usually isnt in CONs....?
  24. Nothing for the Xbox. Mostly making something for my own use but its getting to the point where I probably won't be able to finish it because I'm not smart enough. If you give me any good idea's of something for the Xbox that is possible I might work on it.
  25. You can easily make your own themes. But since they don't store the images for themes online like the do for gamer pictures (for your gamer card) you probably couldn't get real themes.
×
×
  • Create New...