Jump to content

cbox


dschu012

Members+
  • Posts

    82
  • Joined

  • Last visited

About dschu012

dschu012's Achievements

Private Grade 2

Private Grade 2 (5/44)

0

Reputation

  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.
×
×
  • Create New...