Search results

  1. K

    Any good Half-Life modding sites?

    http://articles.thewavelength.net/
  2. K

    What's up with that?

    while ( sdkNotAvailable = true ) { // endless loop : ) }
  3. K

    Final Fantasy....

    So WTF does Final Fantasy: The Spirits Within movie have to do with anything?
  4. K

    Favorite Programming IDE?

    C++: MSVC6 Java: JCreator (Comp Sci)
  5. K

    Weekly Photoshop Competition: Week 5

    Entry #3 by khaki Did this one a while back.
  6. K

    Reviving

    Yes, I believe that concept could be programmed into the game. You would probably have to manipulate the auto re-spawn actions. However, I don't think you can use Ragdolls on the HL 1 engine, but maybe we will get a command for it in the HL 2 SDK? if ( dead ) { goRagdoll(); } ;)
  7. K

    OO or Procedural Programming?

    Yes, I find myself still using the basics of procedural programming while programming in OOP. Simple things like making sure you have the data you want to use, before you can access it. IE: I might have to call getData() before I can add it all together with sumData(). Simple things. : )
  8. K

    OOP basic concept?

    A little write-up of FOP. http://www.cat.utexas.edu/fop.html
  9. K

    DEV C++... wtf... no iostream?

    Yes Dev-C++ likes for you to use the standard headers and such. #include <iostream> using namespace std;
  10. K

    Eraser railgun?

    Perfect Dark had a see-through-wall gun too.
  11. K

    Vote for me!

    Noo vote for me.. Muahahah. Just kidding Spif. : )
  12. K

    A nice free C/CPP windows compiler

    Dev-C++ is IDE based, but it's not bloated with features, I like it. For command-line-based compilers you might want to check out DJGPP ( http://www.delorie.com/djgpp/ ). Or here for large list of compilers. http://www.bloodshed.net/compilers/index.html
  13. K

    I want to learn html...

    http://www.htmlgoodies.com/primers/basics.html
  14. K

    Clear Screen

    It sends a 100 blank lines to the console screen. Though thats not a very efficient way of clearing the screen, it works. Here is a more efficient answer. http://faq.cprogramming.com/cgi-bin/smartfaq.cgi?answer=1031963460&id=1043284385
  15. K

    Clear Screen

    for ( int i = 0; i < 100; i++ ) { cout << endl; } :P (joking)
  16. K

    C++

    http://www.cplusplus.com/
  17. K

    Finished Wallpaper

    Nice to see someone put effort into a wallpaper. I like the concept. :)
  18. K

    Multiplayer Characters

    Alyx.
  19. K

    70 HL2 wallpapers

    Uhgg... most are just copied and pasted screenshots with little to no work from the actual designer.
Back
Top