Slashdot Mirror


Make Something Unreal Gets Next Phase Winners

AskedRelic writes "The winners in Phase 3 of the previously mentioned 'Make Something Unreal' mod contest have been released. Big winners in this $1,000,000 prize pool Unreal modding contest include Red Orchestra for Best FPS Mod and Alien Swarm for Best Non-FPS Mod, as well as Clone Bandits for Best Vehicular Mod. Phase 4 entries close on August 20th, and the grand final entries, awarding $50,000 for the best overall mod, close October 1st." Do you think Unreal will continue to nurture the best/most modding talent, now that Doom 3 and Half-Life 2 mods are looming on the horizon?

143 comments

  1. Half-Life 2 by Tiberius_Fel · · Score: 1

    IMO the big modders will move on to things like Half-Life 2 and Doom 3 now that they're out. This will make for great gaming. :-)

    --
    Join the Empire! http://www.empirereborn.net/
    1. Re:Half-Life 2 by SpootFinallyRegister · · Score: 1

      i wouldnt be surprised if doom 3 didnt get a big mod following. apart from the network code being so-so, the engine probably has a lot less to do with doom 3's beauty than the artwork does. the models and levels in doom 3 have a mgnificently low polygon count, and art that doesnt stack up to the masterpieces in doom 3 will probably look shabby or use more polygons than the engine is designed for.

  2. We made a Doom 3 mod already by Real+Troll+Talk · · Score: 4, Interesting

    The multiplayer issues with Doom 3 were disappointing, so myself and some friends put together this mod that allows up to 32 players in a multiplayer networked game.

    See here for info and download kits.

    --

    If you liked my post,
    1. Re:We made a Doom 3 mod already by laserbeak · · Score: 1

      last i checked you can easily change the amount of players in a user hosted server by changing it in the config file in the base directory.

    2. Re:We made a Doom 3 mod already by Anonymous Coward · · Score: 0

      Yeah!
      That's what I like to call easy for end-users!!!!

      BTW why can't we strafe using two keys in this f***** game? It keeps me from playing.

    3. Re:We made a Doom 3 mod already by laserbeak · · Score: 1

      whats wrong with a and d ? also, mp limit isn't spose to be changed, but it's so easy to change many many configurations in this game, it's all open. Hopefully a MP mod will come out soon...

  3. It depends by Myrmi · · Score: 5, Insightful

    The Ut2k4 engine is very versatile and easy to mod - as can be seen from the sheer quality and abundance of the mods that have been entered. With so many people who already have experience with the UT2k4 system, they may well stick to it if the Half Life 2 / Doom 3 engines are much more difficult to mod. The lower system requirements might be attractive, too.

    That said, I'd love to see Natural Selection on Half Life 2.

    --
    "I think everyone is an agnostic but just doesn't know" - Frazz
    1. Re:It depends by jeffskyrunner · · Score: 3, Interesting

      Well, someone said that all regular HL mods will work in HL2, because the engine is backwards compatible...But i would love to see NS2 on the HL2 engine :). Who knows, Maybe Flayra is working on it as we speak..or type...yea..

      --
      Jeff
    2. Re:It depends by Zakabog · · Score: 1

      Have you ever actually tried to create a server side mod (mutator) for UT2K4? The stuff that's possible is very weak. The language is very basic which makes it easy, but the stuff you can do is very limited. The Doom 3 engine doesn't see to difficult to mod, don't know why it would be, the only difference would be like the language, and map editors or whatever. Someone can make the map editors very similar so then the difference would just be the language.

    3. Re:It depends by mdwebster · · Score: 1

      What does the fact that mutators only have limited power have to do with anything?
      Almost any mod is going to include new models/textures and therefore need a client-side install anyway. Why the focus on mutators?

    4. Re:It depends by Anonymous Coward · · Score: 0

      Flayra has started a company (http://www.unknownworlds.com/) and is apparently working on something (though they wont say what, just that he isnt working on the latest patch). He was looking for some investors/publishers, and didnt seem to have any preference for an engine (valve didnt go down so well or something.)

    5. Re:It depends by GT_Onizuka · · Score: 2, Informative

      Q: Can I play HL modifications with Half-Life 2? A: The original and sequel use two very different game engines and it's not possible to play mods from one game with the other. I got this from the HL2.net FAQ

      --
      If you take out Country Kitchen buffet, old people won't know what to do.
    6. Re:It depends by Mia'cova · · Score: 2, Insightful

      UnrealScript is hardly a "very basic" language. It's responsible for the entirety of the entire game code (with a few things written in c++ for performance). That means that the vehicles, weapons, networking, player movement, menus, HUD, console, bot AI, and pretty well everything is written with this language. If what you can do is "very limited" I'm thinking it might not be the language.

      As a side-note to those who're curious, UnrealScript is a bit of a cross between Java and c++. It also has replication (networking), states, and time built right into the language. This, IMHO, makes it an extremely powerful language for game design.

      (and yes, I have created server-side mods before :)

    7. Re:It depends by imr · · Score: 1

      That said, I'd love to see Natural Selection on Half Life 2.
      I don't care what platform is used for a mod as long as it is a good one.
      I wouldn't mind Natural Selection on any platform, wether doom3 ut2 or even quake3, as long as it is well done.

    8. Re:It depends by sparcnut · · Score: 1
      It's responsible for the entirety of the entire game code


      You must work for the Department of Redundancy Department.

      On a more serious note, that is amazing. You're telling me practically the entire game is written in a scripting language?! And it's no slouch for performance, either - it must be compiled into CPU-native instructions on load (self-modifying code anyone?), otherwise why is it so FAST?
      --
      perl -e 'print $i=pack(c5, (41*2), sqrt(7056), (unpack(c,H)-2), oct(115), 10);'
    9. Re:It depends by Moonshadow · · Score: 1

      That's fairly standard these days, really. You write your engine and performance-critical things in C++ and then drive it all with a scripting language. Makes for easy development, at least.

    10. Re:It depends by Mia'cova · · Score: 1

      Redundancy Department indeed. Oups. haha

      Anyways yea, most of it is in a scripting language. But no, it's not compiled into native code. It's compiled into bytecode in the same way as Java is.

      What makes it fast is that the programmers are very aware of the limitations of UnrealScript (code executes apx 40x slower then native compiled c++ and assembly). The trick is to write event-driven code. Take a grenade explosion for example, how often does that happen? Compare it to something like rendering and you'll see what I mean. Only a small portion of these engines really eat up the bulk of your CPU cycles. Optimize that core engine stuff well and the odd bit of game code that are very intensive. The rest should be left in a nice scripting language that takes care of tricky issues like networking for you.

      The other nice thing about all this is that Epic can (and does) let you view the source for all the game code. This doesn't leak out any of their big trade secrets and really helps when you're modding.

  4. If it ever gets released... by DesertJester · · Score: 4, Interesting

    If HL2 ever gets released it spawn some very intresting mods. As for Doom3, we have seen the first of what I hope will be the next gen. of mods...things that help the game. But for the time being keep working on Unreal...

    --
    Everyone has a photographic memory, some just don't have film.
    1. Re:If it ever gets released... by slughead · · Score: 1

      Doom3 has mulitplayer, half-life2 is going to be Counterstrike + physics (the engine not really being HL2, but an upgraded HL1).

      At least, that's how I understand it, anyone have any definitive info?

    2. Re:If it ever gets released... by one4nine4two · · Score: 1

      I sincerely doubt that the Source engine is an upgraded HL1 engine. The HL1 engine is based off the Quake and Quake 2 engines, which are eight years old. At this point there probably needs to be some major changes in the core architecture of the engine to take advantage of all the new graphical technologies since 1996.

    3. Re:If it ever gets released... by Anonymous Coward · · Score: 0

      After looking at Source's source (no pun intended) as was leaked, I for one will stand to confirm that it is indeed merely a revamped Half-Life 1 engine.

  5. How about best installer? by British · · Score: 2, Interesting

    I remember wanting to try one popular ut2004 mod, but installation involved somewhat vague instructions to copy over a bunch of files(with subdirs) into your ut directory.

    I didn't even bother, not wanting to screw up my pristine ut2004 install for some mod.

    1. Re:How about best installer? by selderrr · · Score: 2, Interesting

      ermh... so you prefer an installation application without instructions to copy over a bunch of files (with subdirs) into your ut directory, screwing up your pristine ut2004 install for some mod ?

      riiiight...

    2. Re:How about best installer? by Hi_2k · · Score: 4, Informative

      Most UT mods come in the UMOD format, essentialy a zip file with some special instructions for the UT installer program. I dont know where you've been getting your mods without it.

      --
      When life gives you crap, Make Crapade.
      Sluggy Freelance.
    3. Re:How about best installer? by Fallen+Andy · · Score: 1

      You shouldn't fear installing anything because it might hose your pristine UT. It isn't like you have to reinstall XP. Unreal in all forms is very light footprint in terms of stamping over the reg etc.

      My own sys has UT classic (reinstalled from scratched CD's don't ask how) and many other things and *not* by the usual install. Mine has maps stolen from the DA mod and much other stuff simply because I thought it was a fun idea.

      It works. It's written by people who don't like f*king with your registry or anything else. You copy the maps to the maps dir, the music to the music dir etc. and if you don't like them, trash them...

      Not at all painful. Not at all what you'd expect. But then again UT never is...

      (Right now I think I could fall in love with onslaught - if only I'd not decided to use a 1.5G P4 with 32MB card as my engineering+programming box...). Still my colleague isn't here so I can borrow *his* machine. Ah. The pleasures of living in one's own office... Just hope my Cretan friend doesn't notice the cig ash and (shit) burn mark and (shit) dent (???) in the machine... Oh my god, he's going to kill me. (Didn't happen).

      Really - D.O.N.T. P.A.N.I.C

    4. Re:How about best installer? by Sparr0 · · Score: 1

      linux gamers cant run umod's

    5. Re:How about best installer? by jensen404 · · Score: 1

      Yeah, but why does that matter? Linux users are used to installations involving somewhat vague instructions.

    6. Re:How about best installer? by ImpTech · · Score: 1

      Actually I'm pretty sure ucc-bin has an option to extract UMODs, even in Linux. Damned if I can remember what the switch is right now...

  6. No by wviperw · · Score: 5, Insightful

    "Do you think Unreal will continue to nurture the best/most modding talent, now that Doom 3 and Half-Life 2 mods are looming on the horizon?"

    Absolutely not. We have moved on to a new generation of engines, opening up vast new opportunities, and the UT2K4 engine is, for all intents and purposes, still back with the Q3 and original UT engines, IMO.

    --
    Nothing disturbs me more than blind loyalism towards some unrealistic and over-idealistic notion of one's nationality.
    1. Re:No by Anonymous Coward · · Score: 0

      pls, mod this up, tyia

    2. Re:No by asdfghjklqwertyuiop · · Score: 0

      We have moved on to a new generation of engines, opening up vast new opportunities, and the UT2K4 engine is, for all intents and purposes, still back with the Q3 and original UT engines, IMO.


      Huh? For starters, Ut2004 is the first unreal game to have vehicles (land, air, space). Neither UT or Q3 had them.

    3. Re:No by qbwiz · · Score: 1

      There are mods for UT that have vehicles, so the original engine worked with vehicles.

      --
      Ewige Blumenkraft.
    4. Re:No by wviperw · · Score: 5, Informative

      I'm not speaking of trivial things like vehicles. There is nothing inherantly special in having vehicles, as both UT and Q3 did in fact support them through mods. I am speaking of the fundamental characteristics of the core game engine. Doom 3's revolutionary new light/shadow rendering system (yes, I believe it is revolutionary), in addition to D3's utilization of DX9 features and its complex scripting languge all contribute to making D3 a next generation engine. Similarly, HL2 also takes advantage of DX9, as well as having a very robust physics engine, making the HL2 engine next generation as well.

      --
      Nothing disturbs me more than blind loyalism towards some unrealistic and over-idealistic notion of one's nationality.
    5. Re:No by Anonymous Coward · · Score: 0

      You're right that the engine is fairly dated now (though it is a significant improvement on UT... look at the vegetation for instance). However, Halo had a fancy new graphics engine and the Halo mod scene is not exactly massive. It depends how much support is given to modders by the designers, and the UT2004 team do that in spades. iD will presumably also be good to the modders, but we will have to wait and see.

    6. Re:No by Mia'cova · · Score: 4, Informative

      The difference between UT/Q3 and UT2003/2004 in vehicle support is that the latter has Karma physics built in. When you're modding, the physics engine is just one of those things that makes a huge impact on the end result. Physics is *NOT* trivial in the least.

      For example, some friends and I built some big walking mechs as UT2004 vehicles. The coding, while tricky and a little finicky, is actually pretty simple to understand. We're able to subclass an existing vehicle to get all the player/vehicle interactions. Over-ride one or two things and change the DefaultProperties (part of the UnrealScript language) to get rid of the few aspects that didn't work. Then we'd just set things up with karma so that the feet "repulsed" the ground (no floating feet on hills). The repulsors are attached to the animation's bones. Time the animation to the speed and add in the weapons and you've got something very new without too much work. And in this case, you don't even have to worry about networking; it just works.

      I'm really just trying to say that there's a big difference between possible and practical. Vehicles are not in the least bit trivial. I think with all the modders currently working away at UT2004, the question to ask might be what will be the big new modding draw offered by Doom 3 or Half-Life 2? I know UnrealScript and UnrealED.. what can Doom 3 or Half-Life do that I can't do in UT2004?

      I'm not sure what you're talking about as far as Doom 3 goes. For a start, it doesn't use DX9. It uses OpenGL. While I completely agree that the lighting is revolutionary, I don't think we're going to see a revival of Dark Match (remember in Unreal 1, all those years back, the dark levels with flashlights? Yes, in Unreal 1. It has been done again and again in the Unreal engine but has never taken off.) The gameplay wasn't there then and I'm not sure how it'll pan out now that proper lighting is truly available. In any case, Doom 3's modding is crippled by a 4-player multiplayer limit and lack of vehicles (afaik). I'm not sure how that will evolve or if it's not applicable to interested modders but it has me worried.

      Half-life 2 looks promising for modding. Valve is a strong supporter of modding, the engine seems solid (nVidia issues asside) and sufficiently advanced, and there's an existing mod community that's thriving. But perhaps most importantly, people love realistic mods. Why does that make a difference? Well, when you're starting off you can pull content from the game. It helps tremendously when you can just use an existing explosion effect with your own grenade model. Existing content is a HUGE draw to modders and perhaps one of the most important considerations. The only downside to half-life 2 is that we really don't know how it'll run on older hardware. Counter-strike, for example, is insanely popular because it combines attractive gameplay and low system requirements. I don't know about you, but I've seen a whole lot of LAN parties degenerate to counter-strike because it's the only (popular...) game that EVERYONE can play.

      Anyways, that's just how I feel about it :)

    7. Re:No by HeLLFiRe1151 · · Score: 2, Insightful

      You are an idiot, how the hell can you compare the Unreal 432 with Unreal 3236, do you have any idea what those numbers mean? . You are comparing a 2 year old engine with a 2 day old engine? The only reason you think the Doom 3 engine is all that is because of how pretty it is. Well, take another look. Your precious doom 3 engine is all indoors, id has never made a decent engine that can handle longer distances, the engines have always catered to close quarter combat. The Unreal engine is under constant redevelopment, handles long and short distance. Unreal sets the standard and others follow.

      --
      I've got 101 mod points and you can't have them!
    8. Re:No by asdfghjklqwertyuiop · · Score: 1

      Absolutely not. We have moved on to a new generation of engines, opening up vast new opportunities, and the UT2K4 engine is, for all intents and purposes, still back with the Q3 and original UT engines, IMO.


      And the other thing is, if mod developers are so interested in new engine features, why has half life 1 modding been so popular? Halflife 1 is what, 6 years old now? People have been producing new mods for that long after that engine became dated (see natural selection). If mod developers were concerned about the latest graphics features, you'd think they would have moved on from the half-life 1 engine by now.

    9. Re:No by Anonymous Coward · · Score: 0

      > why has half life 1 modding been so popular?

      Installed base?

      Look at it this way -- if CounterStrike wasn't still so popular, would anyone be doing new HL1 mods?

    10. Re:No by Anonymous Coward · · Score: 0

      the one thing i didnt like about ut2004 was the lack of a decent realistic mod, maybe an upgraded CS. RO wasnt my cup of tea (gameplay issues)... and the lack of new content vs ut2003 seemed really bad. Of course they didnt change 54$.... as to developing. the vehicles are nice in some ways, but clearly first generation, and that's frustrating at time, especially with everyone building crappy race maps with movers that dont collide correctly or physics volumes that dont work with svehicles. i'm hoping that hl2 will provide better vehicles, but i doubt it. I'm gonna hate waiting for the unreal 3 engine to fix those problems...
      Recondite

    11. Re:No by Anonymous Coward · · Score: 0

      And how is this "+5 insightful"? It offers no insight at all and summarizes to "Doom 3 is new, UT is old".

      The 12 year olds must have all the mod points.

    12. Re:No by Snaller · · Score: 1

      Absolutely not. We have moved on to a new generation of engines, opening up vast new opportunities, and the UT2K4 engine is, for all intents and purposes, still back with the Q3 and original UT engines, IMO.


      Yet the maps still look better than Doom 3...

      --
      If Google really cared they would fix Android Chrome to reflow text, instead of discriminating
    13. Re:No by kiskoa · · Score: 1

      i mean.. vehicles? are you playing an FPS or a car (airplane, whatever) simulator?

      and in D3 you can increase the number of players from 4 to 32 with a simple cfg hack...

      seta si_maxPlayers "enter your favourite number here"

      --
      If Yoda so strong in Force is, why words in right order he cannot put?
    14. Re:No by imsabbel · · Score: 1

      quake ralley had them in quake 1

      --
      HI O WISE PRINCE. WHT TOOK U SO DAM LONG?
    15. Re:No by Sparr0 · · Score: 1

      Doom3 runs horribly on my machine. UT2k4 runs beautifully on machines HALF the cost of mine. unless something drastic changes, I dont see Doom3 modding becoming nearly as popular.

    16. Re:No by Vokbain · · Score: 1

      I don't think we're going to see a revival of Dark Match (remember in Unreal 1, all those years back, the dark levels with flashlights? Yes, in Unreal 1. It has been done again and again in the Unreal engine but has never taken off.)
      Holy crap. I totally forgot about that. I used to love playing dark matches!

    17. Re:No by Alucard454 · · Score: 1

      goddamn, could you GET any more pretentious? take a step back for a second and realize that you are talking about a GAME.

      is your sense of perspective coming back yet? yea? remembering how unimportant this crap is? good.

      check your ego at the door when you are engaging in a "deepish" debate about fucking video games, for chrissakes.

      --
      education
      That which discloses to the wise and disguises from the foolish their lack of understanding.
      ~a.bierce
    18. Re:No by Anonymous Coward · · Score: 0

      Unreal sets the standard and others follow.

      Hah... you hold onto that.

  7. Re:WINDOWS XP SP2 HAS BEEN RTM by bobhagopian · · Score: 1

    Your post has absolutely nothing to do with anything, but it also suggests that you don't click over to /. nearly often enough. Check out yesterday's article about SP2. There are plenty of reasons to yell and scream about Slashdot, but this is not one of them.

  8. ut2k4 by barcodez · · Score: 2, Interesting

    I bought this game sometime ago when I still have a Windows machine at home. However I haven't played it since ridding myself of the windows machine. Is it possible to get it working on Linux? Any good howtos?

    --

    ----
    1. Re:ut2k4 by thryllkill · · Score: 2, Informative

      I believe it comes with Linux binaries on it. Yup, that's what my box says.

      --

      Note to self: No more arguing with the faithful.

    2. Re:ut2k4 by barcodez · · Score: 1

      Stupid me I have ut2k3 - will certainly buy ut2k4 ASAP - does it work just as well on Linux?

      --

      ----
    3. Re:ut2k4 by dj_paulgibbs · · Score: 2, Informative

      It works with linux out of the box (although, as of course you'd do with a Windows game, you'd want to patch it to the latest version after you've installed it).

      There's a .sh script on the last CD/on the dvd that you run which should launch the installer, IIRC.

    4. Re:ut2k4 by thryllkill · · Score: 1

      ut2k3 has linux binaries on disc three as well...

      as far as how well it runs? I don't know. My linux box is a pretty old P3 with a Radeon 8500 LE, so I don't bother putting games on it.

      --

      Note to self: No more arguing with the faithful.

    5. Re:ut2k4 by Jaysyn · · Score: 1

      Mine's got a installer script right beside the WIn32 Setup.exe.

      Jaysyn

      --
      There is a war going on for your mind.
    6. Re:ut2k4 by Crizp · · Score: 1

      I've got a Piii 667 with Radeon 7200 64MB VIVO (old half-assed crap radeon) and Utk3 runs smooth, utk4 ok smooth (got no fps count, but no skipping).

      In Linux though I don't know.

      I had to try Doom 3 on this box, and I was surprised I even got it started! The Radeon didn't understand much of vertex lighting and some of the other new features - they turned into black polygons. And the frame rate? 3-4 fps if there was no action, 0,5 fps if I moved around a bit and had other people in view.

      That's with no advanced features and 640x480 low quality. In two months I'll be getting an Athlon64 based machine with Radeon X800.

      Doom 3 is the only game in a few years I have bought, and the only one that made me want to upgrade my computer for the game only - just by looking at those first videos.

    7. Re:ut2k4 by Omestes · · Score: 1

      From my experience with every UT game, is that they run very well, even with less than minimum hardware requirements.

      It should run great. With my poor little 2000+(ish) box, with 512ddr, and a Radeon 7500, I could run it one high graphics at highest resolution. You should be fine.

      --
      A patriot must always be ready to defend his country against his government. -edward abbey
  9. Best Mod Ever: Make UT work as a Limited User by gfecyk · · Score: 3, Interesting
    Windows game authors are the laziest when it comes to designing for security... ok, they're second only to travel software companies.

    My vote for Best Mod would be the one that lets me play UT without requiring Power User or Administrator access on XP or Win2K. That way I could set up an internet cafe / LAN party place without having to worry if the customers wreck the machines.

    I mean come on. If I can fix Quake II, then the makers of UT can fix UT. Or a talented mod author can.

    --
    Use Evolution instead of Outlook? Bewa
    1. Re:Best Mod Ever: Make UT work as a Limited User by Omicron32 · · Score: 2, Insightful

      Or you could just let them play on the Linux version of UT2k4 and lock down the machine.

    2. Re:Best Mod Ever: Make UT work as a Limited User by blowdart · · Score: 4, Interesting
      That's usually because they install into c:\program files and require write access. Lazy programmers won't use the profile directory, or (in the case of C&C generals, dump stuff into My Documents instead of the Application Settings directory)

      Install them into c:\games and away you go.

    3. Re:Best Mod Ever: Make UT work as a Limited User by timothv · · Score: 2, Informative

      Except the license prohibits you from running it in an internet cafe, and you can install only one copy per computer for your LAN party. By the way, I'm reporting you.

    4. Re:Best Mod Ever: Make UT work as a Limited User by drinkypoo · · Score: 1

      Or you could use some software like DeepFreeze to restore machines to a given configuration if they get hosed up somewhat.

      Given that you're running Windows, commercial software is the official answer.

      --
      "You're right," Fisheye says. "I should have set it on 'whip' or 'chop.'"
    5. Re:Best Mod Ever: Make UT work as a Limited User by MightyPez · · Score: 1

      Except the license prohibits you from running it in an internet cafe, and you can install only one copy per computer for your LAN party. By the way, I'm reporting you.

      Sounds like someone has never heard of commercial liscensing. Most companies have some sort of liscensing agreements either from themselves (Like Blizzard) or through third party entities. The owners subscribe to these and can use the software ina commercial enviroment.

    6. Re:Best Mod Ever: Make UT work as a Limited User by Snaller · · Score: 1

      My vote for Best Mod would be the one that lets me play UT without requiring Power User or Administrator access on XP or Win2K. That way I could set up an internet cafe / LAN party place without having to worry if the customers wreck the machines.

      Perhaps they did that on purpose - remember they don't want you to play it on internet cafes without paying biiiiiig license fees.

      --
      If Google really cared they would fix Android Chrome to reflow text, instead of discriminating
    7. Re:Best Mod Ever: Make UT work as a Limited User by Snaller · · Score: 1

      Lazy programmers won't use the profile directory, or (in the case of C&C generals, dump stuff into My Documents instead of the Application Settings directory)

      And hurrah for them, much better to copy the savegames from the application directory than having to dig them out of the my documents crap.

      --
      If Google really cared they would fix Android Chrome to reflow text, instead of discriminating
    8. Re:Best Mod Ever: Make UT work as a Limited User by Snaller · · Score: 1

      And get a special version no doubt.

      --
      If Google really cared they would fix Android Chrome to reflow text, instead of discriminating
    9. Re:Best Mod Ever: Make UT work as a Limited User by Anonymous Coward · · Score: 0
      My vote for Best Mod would be the one that lets me play UT without requiring Power User or Administrator access on XP or Win2K.
      UT2003 can handle this already - just make sure the directory you install to has full write access. I haven't tested, but the same should be true with UT classic.

      If you insatll to a custom directory, you will have no problem.
  10. Far Cry modding by Wm_K · · Score: 2, Interesting

    Actually Far cry has some excellent mod tools (especially their sandbox editor is great). With the SDK available at www.crymod.com I expect their will be some excellent mods coming from this game. Far Cry seemed to be quite ahead of Half-life 2 and Doom 3 at the moment of release.

  11. Re:WINDOWS XP SP2 HAS BEEN RTM by Anonymous Coward · · Score: 0

    Well before you get your panties in a twist bub, recognize /. did post this, yesterday. Dork.

  12. Mod Makers Moving on by frostbane · · Score: 4, Interesting

    Do you think Unreal will continue to nurture the best/most modding talent, now that Doom 3 and Half-Life 2 mods are looming on the horizon? Its up for grabs, Epic was able to attract lots of modders with their contest and because they had the newest engine at the time. Now they no long have the 'sexiest' engine and people are moving on. Some of the devs from Red Orchestra are now working on a HL2 mod Insurgency.

    1. Re:Mod Makers Moving on by frostbane · · Score: 2, Informative

      Left out a '"' in a tag and it dropped the link. Links are below:

      Insurgency Mod
      HL2.net - Great coverage of HL2 mod news

    2. Re:Mod Makers Moving on by asdfghjklqwertyuiop · · Score: 1

      Some of the devs from Red Orchestra are now working on a HL2 mod Insurgency.


      How did they decide to start using HL2 when it hasn't been released yet?

    3. Re:Mod Makers Moving on by Crizp · · Score: 1

      These modders are obviously quite 1337 and have surely attracted attention from game developers. Most likely they're working on a beta supplied by the company.

    4. Re:Mod Makers Moving on by Wm_K · · Score: 1

      A mod has lots of predictable elements like models, textures, sound. All those can be made already without the need for any version of the game.

    5. Re:Mod Makers Moving on by Anonymous Coward · · Score: 0

      I have experience with coding/modding/mapping in Ut2004, and while it's easy to mod with its scripting language (unrealscript), but it's not all that great in terms of functionality--especially the vehicles and physics system.Those issues may move people over to newer engines, more than anything...and because the scripting language basically passes copies of objects (though there are some caveats), it can be a pain to develop in (i'm not sure about other engines). As for Red Orchestra, i was really not impressed with it and I'm very suprised they won--the mod scene for ut2004 just hasn't impressed me much at all.

    6. Re:Mod Makers Moving on by asdfghjklqwertyuiop · · Score: 1

      A mod has lots of predictable elements like models, textures, sound. All those can be made already without the need for any version of the game.


      But that doesn't help you decide what engine you want to write the mod for. I mean of all the FPS games out there to mod, I don't understand how they came to pick one that isn't released yet as what they want to build their mod on.

      And those things are mostly portable among engines anyway.

  13. I can't take it anymore! by necronom426 · · Score: 1, Troll

    Can someone PLEASE tell me what that weird red and silver icon is that gets used on FPS articles?

    Everytime I see it I stare at it, trying to work out what scale it is (2cm long? 2 miles long?) and what it could possible be.

    It's a red thing, with a sort of pin and trigger type thing and a silver tube thing, with a thing stuck to it. Arghh!

    Someone put me out of my misery!

    1. Re:I can't take it anymore! by Wm_K · · Score: 1

      it's the rocket launcher from quake.

    2. Re:I can't take it anymore! by robotoperasinger · · Score: 1

      It's the rocket launcher from Quake 3 Arena.

    3. Re:I can't take it anymore! by necronom426 · · Score: 1

      Thanks mate. I haven't played it, so I didn't know.

      Shees, someone called me a troll for asking a question that's been bugging me for ages. What's wrong with some people. I'll go and do a search for some Quake pics.

      Cheers,

      Paul.

    4. Re:I can't take it anymore! by necronom426 · · Score: 1

      Thanks for that. I'll go and look for some Quake pics. I played Doom 1 & 2, but never got Quake.

    5. Re:I can't take it anymore! by Neophytus · · Score: 1

      On the off chance you're serious it's a rocket launcher (the Q3 one?)

    6. Re:I can't take it anymore! by necronom426 · · Score: 1

      Yep, I was serious. Thanks.

    7. Re:I can't take it anymore! by dumdeedum · · Score: 2, Funny

      Someone put me out of my misery!

      The icon does in fact represent the perfect tool for this.

  14. Re:WINDOWS XP SP2 HAS BEEN RTM by DesertJester · · Score: 1

    I normaly dont waste keystrokes on items like this but, I do have one question...were you on another planet yesterday?

    --
    Everyone has a photographic memory, some just don't have film.
  15. ut2k4/linux by symbolset · · Score: 5, Informative

    UT2k4 works better on Linux. On identical hardware I get about 30% more FPS. If you have the CD version, run the shell script on CD1. Some caveats:

    • The installer only works in X
    • You'll need the driver installed for your video card first
    • Some distros use an obnoxious method for automounting CD's that conflict with the installer. Open another window to unmount and mount the CD's in this case
    • The installer writes to a number of directories including /usr/local/games/ut2004, /usr/share/applications, /usr/share/applnk/Games and /usr/local/bin. You'll need write access to these, so the installer may need to run as root. Once installed you can run as a normal user.
    • Some Mods are not available for the linux version
    • There is no linux version of the editor
    Happy fragging!
    --
    Help stamp out iliturcy.
    1. Re:ut2k4/linux by Anonymous Coward · · Score: 1, Informative

      Not to be a Gentoo Zealot but there is a Gentoo Live CD with UT2k4

    2. Re:ut2k4/linux by rsmith-mac · · Score: 1

      UT only runs better on Linux because the OpenGL renderer doesn't have a couple of eye-candy options that the D3D renderer does. Take the time to try the Windows version with OpenGL(on an Nvidia card), and you'll see a similar speed-up.

    3. Re:ut2k4/linux by symbolset · · Score: 1

      By identical hardware, I meant:

      • Asrock K7S8XE+ MB, Athlon (Barton) 2500+, 8xAGP nVidia GForce 4 MX 440, 512MB DDR333.

      Although the hardware was identical, the load wasn't. I wasn't running services on the windows box because I'm not insane. Although the webserver was getting about 2 hits per second under linux in the background (and exercising the database server) and the mailserver was processing mail for my domains, the frame rates were still 30% higher than under OpenGL in Windows with no services. I play at 1280x1024.

      I bought two identical platforms - one for myself and one for my partner. She prefers a different environment for now, but I installed it on her box to compare. It sucketh. The average frame rate is about 40, but it freezes for a moment every couple of seconds and like all windows boxes it crashes when you least want it to (but at least twice a day).

      Yes, I play UT2K4 on my webserver. So fire me. But before you do, have a nice dinner.

      --
      Help stamp out iliturcy.
  16. Re:nah, the chicken launcher can't be beaten... by HFXPro · · Score: 1

    The doberman launcher was even better. It even had target seeking abilities.

    --
    Reserved Word.
  17. Mod mod mod by JediDan · · Score: 3, Insightful

    Modders will mod just about anything for the sake of modding. The fact that it's easy will attract some while repel others, and vice versa. The fact there is money tied to this particular competition puts it in the headlines but doesn't necessarily draw out anything that hasn't been seen elsewhere.

    Viva la Mod!
    (posted with a ten-foot bamboo pole in a treehouse made from legos)

    --
    - Dan
    1. Re:Mod mod mod by abandonment · · Score: 2, Interesting

      exactly. the sheer amount of effort that goes into mods just boggles my mind - these wanna-be developers spend years of their lives trying to make a game, and in the end, only end up making something that they can't sell, can't publish, can't make money on - the big 'reward' for being a mod author seems to be that you might get hired as an employee at one of these companies...

      i teach at a school that used to exclusively teach unreal modding as a substitute for learning game design...i'm slowly trying to introduce other engines into the mix - and the school is slowly waking up to the fact that having students spend hundreds of thousands of dollars in tuition so they might make a few thousand in a mod-contest is NOT the way to go...

      why not check out one of the many engines that will actually allow the students to publish their games afterwards? at least then they might get something out of their 20-grand-a-year tuition that most of these schools charge...

      anyways, [/end rant] ;}

    2. Re:Mod mod mod by Anonymous Coward · · Score: 0

      posted with a ten-foot bamboo pole...

      let me guess...
      you're running NetBSD?

  18. (OT) Re:I can't take it anymore! by ca1v1n · · Score: 1

    I accidentally modded you down. Not quite sure how that happened. Anyway, replying here ought to undo that. It would be nice if we had a way to undo our own mods without requiring a post, wouldn't it.

    1. Re:(OT) Re:I can't take it anymore! by necronom426 · · Score: 1

      Okay, no problem.

      I thought someone thought that I was pretending I didn't know what it was because they expected everyone in the world to know what a Quake 3 rocket launcher looked like.

      I've found some pics of it now. It's an odd looking thing :-)

  19. ut2k4 on Linux by Anonymous Coward · · Score: 1, Informative

    It runs *beautifully* on Linux. Even voice chat and text-to-voice is working. But make sure you get the latest patch for it, as the retail version had an annoying Crash-To-Desktop bug that has since been fixed.

    1. Re:ut2k4 on Linux by GT_Onizuka · · Score: 1

      I can vouch for this, my system isn't the best and UT2K4 runs without a hitch both on Linux and Windows. P4 2.2 GHz 256 MB RAM GeForce FX 5200 128MB And I was wondering why my install at the LAN would crash. Looks like I should pick up a copy myself!

      --
      If you take out Country Kitchen buffet, old people won't know what to do.
  20. Red Orchestra?? by madatmetoo · · Score: 3, Interesting

    How is Red Orchestra above and beyond any other UT FPS Mod? In the opinion of many UT gamers, Air Buccaneers is the best FPS mod created for UT.

    1. Re:Red Orchestra?? by Mia'cova · · Score: 1

      Air Buccaneers was considered a NON-FPS mod. That's a separate category from FPS, where Red Orchestra resides. AB took 2nd place to Alien Swarm, which probably won out based on the incredible amount of polish put into it. You could be fooled into thinking Alien Swarm was a retail product the way it looks.

  21. Why mod a single to 4 player game? by Fallen+Andy · · Score: 1

    Uh. Doom 3 is probably out. HL2 we cannot speculate about. The unreal engine has shown good longevity and moddability so you go figure. I don't see anyone queueing up yet and in any case do we yet have a nethack mod or a dungeon keeper or . Nope? Just more stinking mod's to make you look like alice cooper on acid? Oh he is ? Not even a good research trick or joke (like psdoom?). Nope. Boring. Really. (runs off and runs UT classic and DA-fastfoodwar as a DM).

    1. Re:Why mod a single to 4 player game? by MightyPez · · Score: 2, Interesting

      You do realize that Doom 3 is limited to 4 players only in the Doom "mod" itself, right? It can be changed to however many players to mod creator likes (within the limits of the engine). As for Half-Life 2, Valve announced they will be releasing mod tools before the game was released.

  22. KillBillyBarn by Anonymous Coward · · Score: 0

    best original content map in a long long time. the details in this map are amazing, as is the playablity. Teddie is the man.

    1. Re:KillBillyBarn by Evangelion · · Score: 1


      Invasion + UTRPG is the way to go there.

      Love that map.

  23. Of course.. by sinner0423 · · Score: 4, Insightful

    It will be half life 2, which mod makers will embrace. UT2k3 is great, the dev tools they offer are completely up to par. Developers are doing crazy things with the unreal engine, and I give them full credit for their endeavors.

    However.. there is a certain modification for HL1 which was so good, it was the first game mod to garner extreme commercial success. I have yet to see a mod for a game which has had the attention & the impact that CS did.

    Gooseman & the CS dev team did this without the incentive of a million dollars, too. It was out of sheer enjoyment of one of the best PC games, in my opinion, that has ever been created. Perhaps Valve will learn from Epic, and decide to offer some cash prizes to mod developers. This would, in my mind, push the community even farther than it's already gone.

    1. Re:Of course.. by 88NoSoup4U88 · · Score: 2, Interesting
      "Perhaps Valve will learn from Epic, and decide to offer some cash prizes to mod developers. This would, in my mind, push the community even farther than it's already gone."

      VALVe said that one feature of their Steam content delivery is that they will allow mod makers to put their stuff up there to be sold.

      Some people might not justify, that in the future one might have to pay a (small) fee for a mod ; but this is all in the hands of those same mod makers, which will hopefully also be able to release their mods for free (if they prefer too).

      I myself don't mind too much, as the market will decide what it thinks is worth its money ; And there have been plenty of occasions i would have loved to pay a small fee ; let's say five dollars, for a few Mods i've been playing and enjoying in the past

      I hope VALVe , after HL2 is released, will release some more info on their future Steam plans.

    2. Re:Of course.. by Nyder · · Score: 1

      yes, but steam sucks. I recently bought all the halflife game ($10 each, new copies). every since I did steam (had to because they switched to it only), I haven't been able to play day of defeat, but once. CS, which worked at first, no longer works.
      Team Fortress and the origianal Half-life and Opposing Force are the only ones I can play online now. of course CS and Day of Defeat are the ones I want to play.

      Why can't I play them? while it's "caching resources" it times out and disconnects me from the server. and no, they haven't answered my emails or fixed the problem.

      They aren't getting anymore money from me till they fix the problem. I do plan on getting HL2 when it comes out. By hook or by crook, I will.

      anyways, the point I sort of trying to make is, Steam still has a long ways to go before it's okay. and I know valve's busy, but to not even have a auto-reply when you send them email, and as long as it takes them to answer back, makes you wonder if spam ate it...

      --
      Be seeing you...
    3. Re:Of course.. by 88NoSoup4U88 · · Score: 1
      Steam -IS- ok : I am both running it on a Pentium 3 600 Mhz, with a TNT2 card (512MB), and on a AMD 2800+ with a GF4 MX (1024 MB) :

      What are your specs ? And what is your specific problem ?
      Caching resources might have to do with not enough RAM ?
      While Steam was very buggy in its beta days (hence it -was- beta) it had some hickups at official release, but barely heard any problems lately.

    4. Re:Of course.. by Nyder · · Score: 1

      those are the sort of question they should be asking me. =)

      I'm running it on my laptop using wifi. don't laugh!

      Celeron 650 mhz
      Savage IX 4 meg vid card
      384 megs memory
      plenty of harddrive space.
      oh, wifi 11b.
      windows 2000
      I play the game in software mode because the "glass" isn't transparent in D3D, and OpenGL locks up. I get 20 to 30 fps in games. it's decently playable, I just need to maybe stay in smaller games.

      I like the Day of Defeat, but only got to play it before steam, and only once since steam. hey, B.S. and S.S. maybe that means something... =)

      anyways, hopefully I won't have to play it on my laptop much longer, because I'm sure I won't have a problem with my desktop computers.

      I have some ideas on what they can do to fix it, if they'll ever reply back to me. oh, maybe I should check my email.

      Don't have a problem when I connect up, but most the time while it's "caching resources" it times me out.

      --
      Be seeing you...
    5. Re:Of course.. by rhuntley12 · · Score: 1

      I had the same problem, almost does it 90% on my laptop(2.4ghz, 700somemegs of ram, radeon 7500) and about 50% the time on my desktop(2.2ghz 1gig ram, radeoh 9600) I gave up on it awhile ago, and almost do xbox live exclusive. I hope they work on steam before they release HL2. This was a few months ago by the way, I haven't cared to try it recently

  24. Q3A, BF1942, BF:V, UT2004, DOOM 3, & HL2 by antdude · · Score: 4, Insightful

    I bought UT2004 recently on DVD because of Alien Swarm and Red Orchestra mods. I didn't care about its regular UT2004 game. The playable demo didn't impressed me except the pretty graphics. The mods were the big stars for me.

    I bought BF1942 for its game mostly, but I was surprised to see mods coming out like Forgotten Hope, Battlefield Pirates, Desert Combat, Galactic Conquest, etc.

    I hope the same is for DOOM 3 for mod support. I would love to see Aliens-type of game with DOOM 3 engine and with co-operative play. How about System Shock 2 type of game? I loved that game! It was scary.

    I sold Quake 3 Arena a few days ago and uninstalled Half-Life a few months ago because it was time to leave their engines and their mods.

    --
    Ant(Dude) @ Quality Foraged Links (AQFL.net) & The Ant Farm (antfarm.ma.cx / antfarm.home.dhs.org).
    1. Re:Q3A, BF1942, BF:V, UT2004, DOOM 3, & HL2 by Obiwan+Kenobi · · Score: 2, Funny

      How about System Shock 2 type of game? I loved that game!

      Oh, they already included that one in the box for you. They just renamed it.

    2. Re:Q3A, BF1942, BF:V, UT2004, DOOM 3, & HL2 by antdude · · Score: 1

      Sure, but it didn't have the cool SHODAN taunting ya. :) She would say something like this to you, "Look at you, Hacker! A pathetic creature of fragile meat and bone. What kind of pathetic creator made such a flimsy being? How dare you kind of pathetic creator made such a flimsy being? How dare you challenge a perfect, immortal machine like me? Humans! Born useless and helpless, living whether you deserve to live, dying whether you deserve to die, your only purpose in life to spawn more ridiculous animals like yourself. How can you hope to challenge me? Pathetic creature of meat and bone! How can you hope to challenge a perfect, immortal machine?"

      --
      Ant(Dude) @ Quality Foraged Links (AQFL.net) & The Ant Farm (antfarm.ma.cx / antfarm.home.dhs.org).
  25. Unreal engine physics. by leathered · · Score: 1, Interesting

    I enjoyed the original UT and very much liked UT2004 but the thing that stops me getting into them seriously is the overall 'feel' of the games. This is somewhat of a grey area but veteran fps gamers will know what I'm talking about.

    Game physics is what id has always excelled at, not only with movement but with the feel of the weapons. The Q2/3 railgun is a classic example, there has never been a UT single shot hitscan weapon weapon which, in the hands of a skilled player, can be consistantly used with deadly accuracy. In UT you often hit thin air when you are certain you have your enemy in your crosshairs, possibly due to poor prediction in the netcode.

    Movement also tends to feel unnatural in UT. I could never set up the mouse sensitivity to my tastes. It's too sensitive when you make small movements, as if there is in-built mouse acceleration, with id games there is a specific setting where you can adjust this along with mouse pitch and yaw. Air control is virtually none existant, when id first introduced air control with Q3, they got it spot-on.

    The UT engine certainly looks very pretty, but if I was a modder and I wanted maximum exposure I would write it for Enemy Territory like the next version of Urban Terror (a great CS alternative). After all ET is free and is very popular.

    --
    For all intensive porpoises your a bunch of rediculous loosers
    1. Re:Unreal engine physics. by Mia'cova · · Score: 5, Insightful

      I've got to disagree with you on a few points here. While I'm a huge fan of the Q2/3 physics (rocket-jumping, strafe-jumping, plasma climbing...), that's not to say the feel to your movement in the Unreal camp is lacking its own advantages (dodging, lift-jumping, higher air-control). There's a vastly different feel and strong players in one camp really have a tough time jumping back and forth between the two. I think I'm one of the rare people (honestly) who's used to both sets of physics. I can strafe-jump my way around a huge RA3 map and then happily move to 2003/4 and lift jump from the bottom to top of DM-compressed without even thinking about it.

      I mention air control as a plus for the Unreal camp. I say that because there's more air control for Unreal games. Unreal 1 had air control. I'm not entirely sure but I doubt that Q3 was the first id game to have air control. I thought Q2 and maybe even Q1 had air control. Maybe someone could clarify this for me. U1 came out (slightly) before Quake 2 though so Q3 was certainly not the first game with air control.

      The feel of the weapons is more in the hands of the artists and designers than the engine coders. There's some interaction with the physics but if they say to add this much momentum in some direction, it doesn't really have anything to do with the physics engine. Maybe because you slide more in Quake you prefer that feel. Everyone loves the railgun though. It'd be hard not to :)

      As for poor netcode. Sorry but it's just not true. There is a slightly different feel to the two games' netcode, eg I find leading more helpful in Quake though I might just be insane. But when you say the good UT players can't use a hit-trace weapon consistently, you're just wrong. Drop by Cached.net and download some recordings of pro players. I think you'll find that if they're playing Q3 or UT, they're making their shots with deadly accuracy.

      And one last point about the mouse... UT seems just as configurable to me. Finding UT too sensitive for small movements would seem to imply mouse acceleration in Quake, not UT. But that aside, UT has a bunch of options for you too. Pitch, yaw, and master sensitivities, obviously those are there. There are a bunch of options to configure the mouse smoothing as well. You can set it to whatever level of sensitivity you want. There's also some mouse accel, separate menu-only settings, and force-feedback you can toy with if you're interested.

      I really believe that these days it comes down to knowing your game, rather than who does what better. Differences exist for good reason. Maps in Quake are designed to accommodate their physics. They know you can strafe-jump and rocket-jump. In UT, they know you can lift-jump and dodge-jump. I think these differences make for different games and add to the variety we all get to enjoy. I'd hate to lose any of that because people start believing that one physics implementation becomes considered the best.

    2. Re:Unreal engine physics. by mobby_6kl · · Score: 1

      I'm not a Quake guru, but IIRC air control was introduced in one of the updates to Quake1, maybe Quake World? I remember reading something about how the new air control allowed to jump around corners and some other tricks.

      As to how the games feel...well I don't know, Q3 feels much smoother, as if the player is floating but my Q3 playtime is 4-5 hours max (vs about 200 hours in UT99) so I can't really say much more.

    3. Re:Unreal engine physics. by jcupitt65 · · Score: 1
      Q1 and QW had vectoring air control. Try in the low gravity level in the shareware version: jump with a strafe key held down and move the mouse. You can directly control your horizontal movement vector. With a lot of practice you can do a rocketjump to get some speed, then keep hopping and steer around an entire map at 90+ mph.

      Q2 had no air control (I think id thought it was unrealistic). Q3 has limited air control: you can accelerate gently in the direction you point. u2k3 is similar (I think?).

    4. Re:Unreal engine physics. by SynKKnyS · · Score: 1

      Check out Doom 3's physics engine. It is terrible. I shot a laptop into a corner and it stayed in midair for about 3 seconds before flying out at an immense speed. Make a barrel explode and the objects around it are barely affected.

      I am willing to bet in the next generation of game engines, Unreal is going to be the engine all the modders flock to. Have you seen the latest Unreal 3 engine demos with the demonstration of the new Karma physics engine? It is absolutely beautiful. Karma itself may even be better than Havok.

      And I won't speak for Half-Life 2 as that is nowhere to be seen in complete form.

    5. Re:Unreal engine physics. by Anonymous Coward · · Score: 0

      Fair comments about Doom 3, but that's not Karma in Unreal Engine 3, it's Novodex. Karma was pretty hopeless - many Unreal licensees switched to Havok instead, and even UT2004 uses custom stuff in places rather than Karma.

      By all accounts HL2's physics (tuned Havok) is excellent.

  26. Hopefully GTK Radiant D3 will be out soon :/ by 88NoSoup4U88 · · Score: 1, Offtopic
    "Do you think Unreal will continue to nurture the best/most modding talent, now that Doom 3 and Half-Life 2 mods are looming on the horizon?"

    With the current Doom 3 support regarding ALL facets of making game assets ?

    No.

    I trust id for releasing better documents later on ; but still : I played my ass off, only to get busy with editing later that night.
    The official default Radiant editors that are released with id-engined games tend to be very suck compared to ,for instance, GTK Radiant.
    I am seriously wondering how the mappers were ever able to comfortably create maps with this current build :/

    The current editor is filled with bugs, and only people with knowledge of the previous Q3 way of working know how to start off (since there are very few (official) tutorials released).

    I can go on and on ; i love the game, love the engine. But man, when will id learn and release the proper tools (thinking of a decent map editor, GUI documentation, and something they defenitely have overseen ; A Machinima interface/tool with it :/)

  27. As long as you've got an Nvidia card... by leathered · · Score: 1

    UT2k4 works better on Linux. On identical hardware I get about 30% more FPS.

    UT2004 runs poorly on ATI hardware. No doubt due to their pitiful excuse for Linux drivers. Where you see a 30% increase in fps, I see a 30% slowdown at the very least with my 9600 Pro.
    ATI are said to be rewriting their OpenGL ICD and not before time. I wish I held on to my Geforce 3.

    --
    For all intensive porpoises your a bunch of rediculous loosers
    1. Re:As long as you've got an Nvidia card... by andreyw · · Score: 1

      Some of us have video cards that don't have a pitiful excuse for a driver.

      If you knew you were going to play games under Linux, why the @#$% did you get an ATi?

  28. Yay, AirBuccaneers by istewart · · Score: 2, Insightful

    I'm glad to see that mod still in the running, even if it is in second place. It still needs a little bit of polish, but I think it could make it as a standalone game. It's basically a pirate mod with balloons instead of ships. Sadly, the number of players and servers has been decreasing since their last release. A lot of people also didn't seem to understand that the game pretty much forces teamwork. Really, really good players can sometimes handle all 3 stations (steering, cannon aiming, cannon loading/lighting) on a balloon at once, but oftentimes people would take off with only a 1- or 2-person crew. However, when you have a full crew complement, it becomes one of the most fun games i've ever come across.

    But the rope used to get on board a balloon in the air is a bitch, especially when your ping is through the roof like mine usually is.

  29. The new -mod switch by Mia'cova · · Score: 1

    UT2004 introduced a way for modders to contain their entire mods within their own directories, using a -mod switch to launch into the mod. You can switch between mods once you've loaded the game too, of course. There's a listing of these TC-type mods in the community section of the game.

    Small mods or maps, etc tend to clog up your directories as they're treated no differently from the retail content. That integration is nice in its own way but I probably still agree with you.

  30. mapping != modding, and ut is better for modding by Anonymous Coward · · Score: 1, Insightful

    I don't like the ut2004 engine for very specific reasons, but I use it, and I may move to source instead of doom 3.

    1) Unreals vehicles suck, but at least they exist. Where does doom stand here?
    2) unreals outdoor environments are a pain to generate. But, where does doom stand?
    3) Unreals scripting language is easy to use, but somewhat counter-intuitive/odd due to the way objects are passed/they do replication. I haven't coded with doomIII or source, but it would be hard to be more friendly to new modders. My problem with uscript is that it's too primitive for my taste.
    4) Unreal's gametypes provide a great deal of AI and game development support. Onslaught, assault, domination, bombing run? The breadth of classes and functionality is outstanding, and makes variants of standard types and innovation much easier, instead of your basic FPS w bigger weapons mod.
    5) Doom 3 isn't older-machine friendly, and that's a big deal considering many modders arent rich and many long-time players and mod supporters arent wealthy. the final doom III build doesn't run on gforce mx 440, despite what the reviews say. Hell, the intro screen wont run on my 440 and i can run ut2004 with max settings on most maps. I love carmack, but that's just poor coding/optimization/release [and no, i wont buy an nvidia card ever again].

  31. MOD PARENT DOWN, TROLL by Anonymous Coward · · Score: 0

    please read the more thoughtful replies to this troll. some people put some effort into their posts.

  32. Date is wrong... by xactoguy · · Score: 1

    Epic has moved back the dates for Phase 4 and the Grand Finale. They are September 10th and November 15th respectively. More details here

    --


    And so we go, on with our lives
    We know the truth, but prefer lies
    Lies are simple, simple is bliss
  33. I would like to add... by Anonymous Coward · · Score: 0

    That having closely examined God's anus, I have undeniable proof that hyper intelligent extra terrestrial life does indeed exist... and that they call themselves Alice.

    Trust me... I know what I'm talking about and the only reason that I am posting this as an AC is that, well I mean, HOLY SHIT! IS THAT ELVIS?!?

  34. Debate by BigBadBus · · Score: 1
    "Nothing unreal exists". Discuss. Or javelin, shotput etc

  35. What about parents whose kids wreck the PC? by gfecyk · · Score: 1

    There are home usage benefits thae come from designing for security as well. What if I don't want my niece installing Kazza on my living room PC?

    The Internet Cafe is but one example where designing for security has benefits.

    --
    Use Evolution instead of Outlook? Bewa
    1. Re:What about parents whose kids wreck the PC? by Snaller · · Score: 1

      There are home usage benefits thae come from designing for security as well. What if I don't want my niece installing Kazza on my living room PC?


      Then don't let her near the machine ;)

      --
      If Google really cared they would fix Android Chrome to reflow text, instead of discriminating
  36. Next Unreal Engine... by Anonymous Coward · · Score: 0

    "Do you think Unreal will continue to nurture the best/most modding talent, now that Doom 3 and Half-Life 2 mods are looming on the horizon?"

    Perhaps so, but just a few years away is the next Unreal Engine, and it's shaping up to be rather good, see the screenshots for yourself.
    Why go through all the effort of porting your mod to another engine when the current one is fine, and upcoming versions blow the doom3 and HL2 engines out of the water?

    http://www.unrealtechnology.com/html/technology/ ue 30.shtml

  37. Unreal Engine 3 by Anonymous Coward · · Score: 0

    Forget the rest -
    http://www.unrealtechnology.com/html/technology /ue 30.shtml

    lighting? shadows?

    http://www.unrealtechnology.com/screens/p_embry1 .j pg

    bring on Unreal Engine 3

  38. I made the best Unreal Tournament mode ever. by Anonymous Coward · · Score: 0

    I made the best mod, and the most used mod for Unreal Tournament ever. The First AIMBOT. Feel free to check it out:

    Campers 4 Ever Website

    I basically got Dr Sin his job at epic and now they have a security team. Big shit. I've created more jobs than george bush.

    NoClanNeeded

    -Campers 4 Ever-

  39. great to see more NS fans on this board ! [nt] by eurasian · · Score: 1

    ok, some. as most everyone has stated, i'd love to see NS in the nextgen engines. or another RTS/FPS for that matter :D