Search results

  1. P

    Your favourite HL2 scene?

    The railroad bridge. I remember I thought something in the lines of "what a nice background element" when I saw it from far away, when the first train drives over it. Then I thought "Wow, it's no background, it's an actual part of the game" when I realized I had to cross it with the buggy...
  2. P

    DM_Dam2 (WIP)

    Looks great! Can't wait to see the finished version!
  3. P

    selection Sort Recursion

    That depends... for example, if you have deeply nested if-else-clauses, sometimes brackets help to make it clear which 'else' belongs to which 'if', even though they are not necessary for the syntax. :)
  4. P

    selection Sort Recursion

    No, brackets around single statements don't cause errors.
  5. P

    selection Sort Recursion

    const int n = 20; int x[] = {n}; That's wrong. If you're trying to create an Array of 20 Integers, you just have to type: int x[20];
  6. P

    beggining, and I need help

    Uhh, 100 Dollar for an Academic license of MSVC 2003? I got an Academic license of MS Visual Studio .net 2003 professional including the msdn library for nine (!!!) Euros at the University Of Applied Sciences I'm studying at!
  7. P

    Some of my music

    Yes, Reason is pretty cool, if you know how to use "real" Studio equipment, you're all set to go.... although some details go on my nerves (grammar?) For example, in the sequencer, you cannot select all notes of a certain key by clicking on that key on the piano roll - a feature I was used to...
  8. P

    C++

    You can pass variables to the function by Reference (So they're not copied as normal, but the *original* gets changed inside the function). Normal: void myFunc(int myVar) { blah... } Here, changing myVar in the function does *not* change the myVar in the calling routine (eg, main)...
  9. P

    Some of my music

    Well I could take the Pad from one of your Tracks and put it in something like my "Follow the white rabbit", for example... There wouldn't be much left from your track then, tho :)
  10. P

    Some of my music

    I'm a bit more into Trance ;) My stuff is @ mp3.de/privatepanic, the more to the top, the newer (and IMO better) the Tracks. I was thinking of doing a Remix of one of your tracks, but I guess it's kinda hard to turn Drum&Bass etc. into a trance remix... :)
  11. P

    Some of my music

    Well done - though not my Music. But technically good :) What's your equipment?
  12. P

    C++

    Eh? Starting with C++ and then "move on" to Visual Basic? That's like, say, learning on a Ferrari to drive a Volkswagen Bug ;)
  13. P

    Hitchhiker's Guide Trailer! Get it while it's HOT!

    Crap, can't view it, damn M$ Mediaplayer proprietary P.O.S. :/ Can someone rip it and host it somewhere in some OS-Independent videoformat, plz? ;) Oh well *sigh*
  14. P

    Variable Speed... HELP PLZ

    With "something simpler" I didn't mean "some simpler HL2 Mod", I meant "something simpler in C++" ;) A SDK like the HL2 SDK is a huge pile o' C++, you have to be *very* confident in your C++ skills before trying to mess with the HL2 SDK or similar complex Engines.
  15. P

    Variable Speed... HELP PLZ

    Well. You put your code outside of any class / member function definition, at global scope... Without sounding too harsh, I'd strongly suggest to you to try something simpler at first, and: Do some c++ tutorials!!! ;)
  16. P

    Variable Speed... HELP PLZ

    One remark: You shouldn't give variables names in caps (UPPERCASE), that's a little bit bad style; Capitalized names are used typically only for defines (#define BLAH 4711) It would help if you could post the whole source (cpp file). But don't post it directly here, use a nopaste service like...
  17. P

    Variable Speed... HELP PLZ

    if( MWHEELUP ) { RPG_SPEED += 10; } if( MWHEELDOWN ) { RPG_SPEED -= 10; } Look! They're gone *gasp* :) After the condition should be no ; !
  18. P

    Variable Speed... HELP PLZ

    The semicolons after the condition in the if clauses if( MWHEELUP ) ; { are wrong :)
  19. P

    Favourite Film Music

    It seems you never listened to Film scores by Hans Zimmer or John Williams. It's simply beautiful music - you can listen to it and relax, or just enjoy it like you would enjoy an opera by Mozart or Bach ;)
  20. P

    Favourite Film Music

    LOTR, Gladiator, Pirates of the Carribean and Jurassic Part 1 soundtracks... wooow. :)
Back
Top