The Minerva Half-Life 2 Mod 31
Via GameSetWatch, an interview with Adam Foster. The creator of the Minerva Half-Life 2 mod talks about the reasons he's putting time and energy into a fan-made labour of love. From the article: "Single-player mapping ...does have quite a tradition, and sadly it often seems to be looked down upon by many gamers. It's somehow regarded as 'easy,' with multiplayer maps being the only true form of expression. I suppose the countless fullbright cubes packed with zombies must put off a lot of people, as do the endless bare BSPs which need to be run from the game console..."
Am I the only one.... (Score:1)
Re:HL:2 Mods (Score:2, Informative)
Not sure if you would call it MUST-PLAY, but it is very good mod.
A few other fun ones: Hidden Source (fun and unique multiplayer mod), Eclipse was posted on slashdot awhile back - its good but only has an hour or so worth of gameplay, Garry's mod also, but everyones heard of that.
Re:HL:2 Mods (Score:2)
Garry's Mod (Score:2)
If you enjoyed Half-Life 2 (Score:5, Informative)
Another thing lost... (Score:4, Insightful)
You are so correct. Co-op is still a lot of fun. (Score:2)
Re:You are so correct. Co-op is still a lot of fun (Score:1)
Designwise, levels are difficulty-balanced for single player. Co-op requires re-balancing, or the development of some algorithmic way of balancing, neither of which are trivial.
If co-op is effectively adding more players to the single player campaign, somewhere you have to find the
Re:You are so correct. Co-op is still a lot of fun (Score:2)
Re:You are so correct. Co-op is still a lot of fun (Score:1)
A lot of next-gen ideals really seem to be a poorly hidden excuse to shift more units of periphery stock, rather than advancing gameplay in any real shape or form. I know that economics plays a huge role in this but I still don't see the balance between selling games and making games fun.
Co-op pla
Re:Another thing lost... (Score:2)
Re:Another thing lost... (Score:2)
(The licence for the map
Re:Another thing lost... (Score:1)
Re:Another thing lost... (Score:2)
Deathmatch arena. In a fucking Sonic game. I couldn't belive my eyes. No time attack vs. mode (if you want versus), no coop (there're two characters available through the game if you choose the "hero" missions, one's computer controlled), nothing. I was very underwhelmed.
I'm glad I'm not alone! (Score:2)
More network co-op, game companies!! Pretty please!
Re:Another thing lost... (Score:1)
Re:Another thing lost... (Score:1)
Too Many Stories? (Score:1, Offtopic)
I sure hope this section isn't using up some kind of quota on the whole site.
My 0.02
Re:Too Many Stories? (Score:1, Offtopic)
Re:Too Many Stories? (Score:1, Offtopic)
Re:Too Many Stories? (Score:1, Offtopic)
My objection is more the number of topics for which story after identical story is posted:
This particular story is novel and interesting, though -- I'm surprised you picked to complain on.
Re:Too Many Stories? (Score:2)
Say Hi to "Ford Prefect" if he shows up here (Score:2, Informative)
Re:Say Hi to "Ford Prefect" if he shows up here (Score:5, Informative)
Cheers! I'm not sure about the 'love' bit (aaargh! Nerds! Gerroff me!) but the sentiment is definitely appreciated.
I'd be working on the second map right now, but I've been a bit distracted by the awesome, gloriously insane DayHard [smanu85.it] single-player mod. I'm not sure how best to describe it - it's a very buggy but even funnier take on the Half-Life 2 story, complete with film and game references, lavatory humour and the inexplicable, copyright-busting presence of Jack Carver from Far Cry (may contain quizzical expressions, idiocy, covert television watching and leering at the ladies).
It's kind of like the anti-MINERVA if you like. You'll either love it or you'll hate it, but regardless, I highly recommend reading the walkthrough if you get even slightly stuck. It's a bit confusing to navigate at times - it's like some old point-and-click adventure game with some of the more cryptic puzzles.
But anyway. I've started up Hammer again, and opened metastasis_2.vmf. Back to populating this map with gameplay!
Re:Say Hi to "Ford Prefect" if he shows up here (Score:2)
gymsock ok?
Re:Say Hi to "Ford Prefect" if he shows up here (Score:2)
that's one of those sad moments when you realize you spend too much time on
what is the music used in the mod? if it is original content, then pass on a big thumbs u
Feasibility of Single Player Mods (Score:5, Interesting)
Singleplayer and coop support are a lot more feasible for developers than people would expect, compared to multiplayer. For one thing, MP is usually implemented on top of the SP infrastructure anyway, meaning that coop is not really a big stretch after basic multiplayer is added. In many cases, it would actually be more efficient to implement coop MP first, and then build competitive and team-based MP on top of that. The decision to do otherwise is a marketing strategy, rather than a technological one. SP usually sells the game, and competitive MP keeps it alive and builds a community around it. Coop has less success with this.
As far as design is concerned, it splits into two major fields: netcode and AI. First, your netcode must be as efficient as possible, which means being VERY selective about what type of data your game server spends bandwidth on, which means using a lot of simulated stuff. For example, I personally believe that trying to get map data a piece at a time while the player is playing the map is a serious no-no. The client should be forced to download the map and supporting files such as sounds and textures (preferably from a dedicated mirror), have them verified, and then run this local copy before he is allowed to log into the server as a player.
Netcode must also be built into each object created in the game, which is probably the hardest part. For example, the client doesn't usually need to know a monster's health unless the player has the ability to ask. It's the server's job to keep that information. If a monster's behavior changes because of an increase or decrease in health, then the player is sent THAT information rather than the health. Also, as far as explosions and gratuitous special effects are concerned, the server should usually just say the equivalent of "A rocket just exploded at these coordinates. Render it yourself." to the client. And one player doesn't need to know that another has a shotgun hidden in his inventory, unless he pulls it up as his active weapon.
Then there's the matter of relevancy culling, to decide what is not a priority for transmitting. The monster you're fighting right now is relevant. The flags in a CTF team game are always relevant no matter where they are. The appearance of your teammate's HUD is not relevant. The guy who just got himself fragged on the other side of the map is probably not relevant, unless you saw it through the scope of your sniper rifle at the time. The straight-flying rockets you just fired are not relevant except as they first spawn, because their physics is simulated on the client, and the server will tell you if/when they hit something.
The second part of this design is the map itself, mostly relating to AI. The policy of "stupid code + smart data" has never been so important here. If your bots don't know how to use a weapon, then it's usually the WEAPON that's badly coded, not the bots. The same is true for maps. Only the most bare minimum AI code should exist in the code for bots and monsters (though this is still usually quite a bit). Anything "special" that they need to do should usually be a feature that is scripted by the mapper using custom or preexisting actors, rather than hardcoded into the game's AI by the coder. As an example, the Unreal engine has always relied on AI navigation of its maps through a network of "PathNodes" that mappers place throughout all the reachable areas in the map. This is what enables a bot to concievably navigate a maze-of-the-minotaur style map better than a typical Human player could. (I do not know enough about other gaming engines to comment on them.)
As a result, reasonably selective netcode combined with gametype- and map-centric AI is the most effective way to design a game engine. The kicker is that most of this is not really even a programming endeavor, but is better considered to be an extension of the d
Enjoyed the mod but... (Score:1)