Search results

  1. S

    SDK Problem

    thanks a million, it works
  2. S

    SDK Problem

    I want to create some CS:S maps...however, when i re-installed the orange box (on a new HD) the only games available in the SDK are Portal, TF2, and Ep2...Why can't I modify CS:S, HL2, or Ep1??? Where did these options go? Any assistance is greatly appreciated, thanks!
  3. S

    CS 1.6 Entity Problems

    thanks so much! that helped me out big time! thanks
  4. S

    CS 1.6 Entity Problems

    Ok, it worked, but I still can't find the T and CT spawn entities I see that the weapons are all in the armoury_entity, but I don't see similar options in the info_player_start and info_player_deathmatch entities so i guess my question is, what is the team spawn entity?
  5. S

    CS 1.6 Entity Problems

    thanks a bunch, i'll try that out
  6. S

    CS 1.6 Entity Problems

    I'm trying to make maps for 1.6 with Hammer Editor 3.4 However, I think I'm missing a lot of entities (such as T and CT spawns...weapons....etc Does anyone know what file I'm missing?
  7. S

    Problem With CS 1.6 in Hammer

    Ok, I downloaded ye olde Valve Hammer Editor 3.4 I've configured it for CS 1.6...but I don't believe all of the entities are in the .fgd I'm using. (such as the spawn entities for CT's and T's, etc.
  8. S

    Problem With CS 1.6 in Hammer

    Well, then I guess I would need the standalone version of Hammer(?) Any ideas/any know where to go or what to get to edit 1.6 maps?
  9. S

    Problem With CS 1.6 in Hammer

    Well, I've installed the SDK in Steam. However, under game selection, all I have available is CS:S, HL2, and HL2 DM. I want to make CS 1.6 maps, so what would I go about doing to do this? Any help would be appreciated, thanks.
  10. S

    Coding Help

    Where can I go to get a simple tutorials on the basics of fiddling with Source code? I've created a new mod with the Source SDK, and I can open the files, but I'd like something that could explain: -what each .cpp and .h file's functions are -how work it with Visual Studio 05 -how to compile...
  11. S

    Natural Selection 2

    Well, it looks that Natural Selection 2 its going to began development soon. (check out www.unknownworlds.com/ns ) I guess the NS team has made a deal with Valve and they are going to distribute it via Steam. I was wondering what the HL2 community thought of this? Personally I wouldn't...
  12. S

    Audio Artist Required.

    "Time frame we are looking at the not so distant future, humanity is in crisis, food is hard to come by jobs are even harder to find and money is worth nothing. Because of this humanity has crowed around the few remaining major cities throughout the world creating mass shanty towns. Towns made...
  13. S

    Questions with CS:S props

    Hey thanks so much for the reply. I got one last thing eatin away at me: When I open up my list of models, all I see are the HL2 models. I have opened the sdk_de_cbble, however, I noticed that map contains models from a "de_cbble" folder. I can't find that folder at all when I open up the...
  14. S

    Questions with CS:S props

    I know that a prop_static will not obey physical laws in game. And I know that prop_physics will obey physical laws. However, I noticed that under CS:S, there are also: -prop_physics_multiplay -prop_physics_override (other props as well, but I don't believe they concern my question. My...
  15. S

    Half Life 2 as an episode

    Heck no your not alone!!! I went out and got Episode 1 (just beat it) and thought it was cool and all...but I'm not a fan of the episode approach. Just FYI: HL: Ep1 is 15 bucks at stores, so it comes out to $60 for gameplay equal to the length of HL2 (which is what it cost when it first came out...
  16. S

    C++ 101

    thanks a ton i didn't know that
  17. S

    C++ 101

    well ive got it to work.... i don't know how i dont see any difference between the code thats working now and the stuff ive posted... strange anyway, thanks for all the help, ill post the working code: #include<iostream> using namespace std; int main() { int num1 = 0; int num2 = 0; int...
  18. S

    C++ 101

    im using the compiler that comes on Visual Studio 6.0 the error is: C:\Documents and Settings\Test\Test1.cpp(5) : error C2447: missing function header (old-style formal list?) Error executing cl.exe.
  19. S

    C++ 101

    when i try to compile this SIMPLE program...i cant an unexpected end of file error. what is wrong? i bet its something really dumb but im not sure. plz help me! #include<iostream> using namespace std; int main() { int num1 = 0; int num2 = 0; int total = 0; cout << "Enter...
  20. S

    need help with arrays

    doing that requires knowledge of string manipulation your word variable should be string, not char i would go here: http://www.cplusplus.com/doc/tutorial/ if i find time to make a working program that does whats stated above, ill post it
Back
Top