Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Simon

Pages: 1 ... 272 273 [274] 275 276
4096
Forum Games / Re: Puzzle/Riddle Game
« on: June 08, 2009, 08:19:43 PM »
Was it plumbing-related? No.
Pipe repairs? No.
A series of horrifying murders involving a blow to the head, drilling out their brains, unscrewing their ears, and cleaning it with a towel? No.
And you lacked your sanitary latex gloves. No. :-)

-- Simon

4097
Forum Games / Re: Puzzle/Riddle Game
« on: June 08, 2009, 01:35:49 AM »
Whee :)

This is one that happened to me in real life. I'm a college student and live in an apartment. One day, I lacked a certain item for a particular task. I still managed to get the job done using a hammer, a screwdriver, a pipe wrench and a towel. What did I want to do?

Any yes/no-questions are possible.

-- Simon

4098
Forum Games / Re: Puzzle/Riddle Game
« on: June 07, 2009, 08:57:45 AM »
Then he knows he's going to die because of the missing ground removing skills, there's no future for him besides nuke? (Exploder removes ground.)

4099
Forum Games / Re: Puzzle/Riddle Game
« on: June 05, 2009, 10:56:52 PM »
I love these.

Skill is one of the original eight skills?
If so, a blocker? Bomber?
Are any ground removing skills yet available after the skill assignment?

-- Simon

4100
Non-Lemmings Gaming / Re: Top Six DOS Games
« on: June 04, 2009, 08:09:51 AM »
Can't believe that nobody has written the following two games yet :-)

  • One Step Beyond
  • Pushover



Otherwise,

  • L2
  • ONML
  • L3
  • L1

-- Simon

4101
General Discussion / Re: Desktop Pics?
« on: June 01, 2009, 11:14:36 AM »
This is how my desktop looks like. :-D



-- Simon

4102
I'm currently in Level 8 with all lemmings saved so far using the DOS version, and I like the level pack very much. You've used a lot of fresh ideas the developers didn't even touch! The levels aren't longer than necessary for the core ideas. This is good because L3 discourages from using its action replays...

I'm looking forward to continue when I have the time.

-- Simon

4103
Lemmings Main / Re: Thoughts on a Game Engine for Lemmings
« on: April 12, 2009, 09:03:57 AM »
But L1 is a little bit broken in multiplayer. :-)

-- Simon

4104
Lemmings Main / Re: The Perfect Blend...
« on: April 08, 2009, 01:25:11 AM »
Quote from: timfoxxy_236
I just thought that all games are made with some sort of existing game engine (and therefore would be faster to build and release to the community). However as I can see that its not the case

Maybe it's just a mixup of what everyone thinks upon hearing "game engine".

I wouldn't really call the library Allegro an "engine" because it's basic idea is to be a wrapper for platform specific functions, e.g. it invokes DirectX unter Windows. It's still listed on the Wikipedia page with all game engines, even if I'd call it a library only.

Libraries like these are pretty standard for indie games!

For me, a game engine is rather something that saves you writing a certain separated part of the game (usually game mechanics). If a big game manufacturer wants to make a modern 3D shooter, they will consider using an existing physics engine. If one writes code that moves fancy debris pixels around in an indie game with 2D spaceships shooting each other, we could refer to this rather isolated part of the logic as the particle engine.

-- Simon

4105
Lemmings Main / Re: The Perfect Blend...
« on: April 08, 2009, 12:24:00 AM »
To just make some sort of lemmings sequel is an achievement on its own

Yes, that is true. I now feel bad for saying "you have to [...] to make it perfect." Didn't want to sound demanding - it was just that this topic is called "The Perfect Blend", heh.

Quote from: GuyPerfect
In my case, almost universally, one of the project goals is to create a game that everyone can enjoy.

That is good. A game just feels right even for a veteran if it appeals to everyone. I encourage you to keep this idea for any future development. The only thing to watch out for is to not overload the game with features. This can be hard if you'd like to include something from every game, all the brainstorming in this thread would have to be properly filtered first.

Quote from: timfoxxy_236
I just noticed that Simon has already gotten into one of those engines for a sequel that he has been making. Is it sort of like what Ive been describing?

For L++, I use Allegro and Enet. Allegro is a game library for C(++), it is pretty low-level. It offers routines for graphics, input, timers, sound, etc., but not any physics. Allegro lets one do enough low-level stuff to learn quite a lot about game programming while still being platform independent. An alternative to Allegro would be SDL.

Enet is a simple networking library. It's a bit more comfortable than working with sockets directly, but my client/server logic looks similar to what one would write with bare sockets. So I've again learned something while using it. :-)

Quote from: GuyPerfect
I strongly believe in building new projects from the group up from scratch. Using some arbitrary software package or even code from previous projects promotes laziness more than good practice.

This is correct up to a certain level. The most low-level code that still produces graphics will probably be platform specific. I think it's okay to abstract this away a bit.

On the other hand, I wouldn't ever write a Lemmings clone in Gamemaker. It's point-and-click development that does lots of things for you and has a scripting language for the strange stuff. Many developing decisions aren't made by the creator, the tool does it for him. The resulting games won't run on Linux, not even under Wine, and I think older versions' scripting code won't work with newer Gamemaker versions. I have a friend who could rant about this evil tool every day. ;-)

-- Simon

4106
Lemmings Main / Re: The Perfect Blend...
« on: April 07, 2009, 11:33:30 PM »
What do you want to make exactly? A game for hardcore Lemmings fans - or a game that a broader audience might play?

I read this article linked to from gamedev.net some time ago. The author talks about what he calls "core support": Pick a simple concept and stick with it throughout the game. Everything else in the game should enhance the player experience of that main concept.

Why is a lemming explosion such a nice thing to watch in L1, and why does the rope trap have 39 frames of animation, all while the Exiter animation is rather boring in comparison? Why did the designers add in the awesome nuke button if hitting ESC gets the job done as well? :-)

So whatever you're going to include from L2 or - even more remote - Paintball, try to keep the concept simple. Just as you've said, L1 has cemented what people expect from a Lemmings game. It is manoevering lemmings around hundreds of fun ways to die.

Multiplayer adds to the core perfectly, sacrifice (i.e. kill) some of your lemmings to send your opponents' complete hordes to doom (kill kill kill)!

On the other hand, making a game just for the hardcore fans is fine as well. I love L2 for example, so add in everything from that game and then add even more, I won't ever complain. :-D But then you really have to make it a good tool - with action replay, savestates etc. and the best level editor in the world - to deliver something perfect.

-- Simon

4107
Lemmings Main / Re: The Perfect Blend...
« on: February 20, 2009, 09:48:47 AM »
Hi!

Quote from: Guy Perfect
Quote from: Clam Spammer
Fast forward and replay features are huge for reducing frustration. EricLang's level editing and playtesting program, Lemmix, also inclided frameskip and savestates, which might be worth considering.
In addition to adjustable release rate, these are good ideas. I can't see save states being a part of the main product, though.

In my opinion, a good game is always a good tool as well. Providing savestates would increase the user efficiency of trying new ideas in a level. I'd opt for anything that helps! (in singleplayer at least, heh. :-D)

Quote from: Guy Perfect
I should probably also have mentioned that I would like to make a multiplayer option in some way.

If you're planning competetive multiplayer, I think I've got some interesting ideas to share. While writing L++, which has networked multiplayer, there were lots of unexpected design corrections.

Although I use identical game mechanics for singleplayer and multiplayer, a multiplayer level calls for a very different skillset. The Amiga/SNES two-player mode used the regular skillset of Climber, Floater, ..., Digger. This is ideal for the singleplayer mode, however:

Lemmings control should be a little more direct in multiplayer than in singleplayer.

With more direct control, not every single level has to be a huge bunch of terrain, and we get a better chance to recover from other players' sabotage attempts. Thus, I implemented some skills from L2. As you are keen to improve upon what's already there in L1, such a concept might fit to your game as well!

Exploder with knockback - This is the main way to dislodge enemy blockers, at the expense of an own lemming. One can even use it to punish players who hoard all their lemmings directly under the entrance hatch, which could be very boring. Sneak a few lemmings in, BOOM, everyone's flying all over the place. :-D

Before I included this Exploder, we had to limit the blocker skill strictly. Blockers placed on steel were absolutely permanent, and if the goals weren't set on steel, you could simply dig away all the gound under enemy goals. Remember, removing terrain is easier and faster than re-building it. For this reason, the original Amiga/SNES levels often didn't feature blockers at all, which limits the level terrain possibilities harshly. For almost every terrain, blockers are needed to control lemming flow. But the stronger they are, the better of a strategy hoarding/trailblazing (using a single hero) becomes. Thus, this exploder regulates it again, which is what we want.

Walker skill - This works exactly as in L3: It reverts workers back to walkers, including blockers, or turns walkers around. This is the more direct lemming control mentioned above. It's pretty important if you need fast and accurate control of a few certain lemmings, which is common in multiplayer.

Jumper skill - This allows to extract a single lemming from a well-hoarded crowd, and generally makes it easier to get around. However, if we were going to include the Jumper in every multiplayer map, along with walker, blocker, knockback exploder, a lot of the eight possible skill panels are already full. :-) The map creator must be able to choose what skills to give, like for singleplayer levels.

More building skills - This should remedy the fact that it's easier to destroy terrain than to build up to new places. Platformer and especially Roper seem like ideal additions to a multiplayer game.

Level design - Every player wants to make a path from his hatch(es) to his goal. Thus, for maximum fun, have the players' paths cross each other - early, and often. Of course, give enough space and freedom to allow different strategies, but always make them interfere with each other by having crossed paths!

Quote from: GuyPerfect
Revolution's connecting edges made things a lot more interesting, though I'm not sure there's any good way to present that with a flat display...

For multiplayer, this is very important because it balances the starting positions.

I don't know how to implement it the best way. I myself just scroll freely over the edges and let the stuff from the other side scroll into view, so that one can't notice any seam. Of course, this feels odd at first if the level size is one screen, but you can scroll freely in all four directions. :-D

-- Simon

4108
General Discussion / Re: ...And A Happy New Year!
« on: January 03, 2009, 03:52:55 PM »
Heh, I got the very same idea the day before yesterday. :D

http://www.gravity-strike.de/forum/read.php?4,5294,5297#5297

-- Simon

4109
Lemmings Main / Re: Is lemmings really over?
« on: November 05, 2008, 03:16:03 AM »
Putting Lemmings on the PSP seemed like a logical move. A full-price puzzle game for the PC is pretty difficult to push into the market nowerdays, I think. You might find real puzzler gems in the bargain bin of a computer store, but that's often scratchware done by smaller companies.

It's not that likely, but if Sony is going to release another big Lemmings game on the PC, I hope they don't alter too much. I like L2 very much, but even I would be sceptical about tons of new skills or game mechanic twists these days. ;-)

I don't follow the Lemmix/Lemmini community that well - I did play ccexplore's awesome port of the Genesis levels, but that's it been for me until now, in spite of several clever level designers out here. In my opinion, however, such community-driven games are the very best way to keep Lemmings alive at its core. :-)

-- Simon

4110
Help & Guides / Re: lemmings 2 ending
« on: October 29, 2008, 02:49:33 AM »
You need at least 30 lemmings from each tribe along with a full gold talisman. You will get the golden piece for a tribe if you achieve a gold medal on all ten levels.

Most levels require to save every lemming in order to get gold. If the intended solution loses a few lemmings, then you'll get gold for losing at most that many. :-)

As you already have 30 lemmings from each tribe in the ark, you'll only have to replay levels without a gold medal, not the levels after them. If you save 50 on Sports level 1, finish the tribe and later get 58 (= gold medal) on Sports 1, you don't have to replay Sports 2 with 58 instead of 50 if you already have gold there.

-- Simon

Pages: 1 ... 272 273 [274] 275 276