C-7's Forum Posts

  • I just meant Desura; I read on their site they don't accept games using 'game engines' or something like that, but that was a while ago.

    They accept them. I had a game for sale on their made with CC.

  • This is extremely impressive! The sound is great, too. I like it a lot!

  • Try Construct 3

    Develop games in your browser. Powerful, performant & highly capable.

    Try Now Construct 3 users don't see these ads
  • I do mostly for PC. There's plenty of a market there and, really, a better one in a lot of ways.

    But once webgl becomes standard on at least android tablets, I'll include touch controls for Courier to give the user more options with which to play. But I develop for PC first and foremost since it provides the highest-quality target platform.

  • For starters, we could get rid of or combine all the dang sticky threads. That would double the amount of space on the front page. It's really a 2:3 ratio of sticky threads to creation threads.

    But a released/in-progress division alone may be worth it. Also, you could have a 'showcase' section where a few games get the limelight for a week at a time or something.

  • I've got this working in my game. You'll have to prepare your audio a little differently than perhaps you're used to. For this to work, don't worry about clean cut-offs so that the two audio tracks join together perfectly. Leave in the overhang of the last note of the intro and have a good start to the main loop.

    Use the system > compare two values expression. If Audio.PlaybackTime("intro") = 2.3, then play your main loop.

    To do this, you'll have to have at least your "intro" audio file in the Sounds folder since the audio engine doesn't seem to be able to play multiple files from the Music folder simultaneously. You'll also probably need to preload on the previous layout to avoid a wait at the start of the layout.

  • Here's a shot showing the entrance to the first dungeon (sewer labyrinth) and the entrance to an abandoned, ancient city. Access is currently locked, but it will come about later in the story.

    <img src="http://www.adamprack.com/materials/oldentrance.png" border="0" />

    Also, all mapping is complete for what is necessary to go public. I have a bit of animating and eventing to finish up, have it tested, and it'll go live!

  • Tokinsom what version are you running? I had bad crashes for a few versions, but 134 fixed it. I guess there were issues with the webgl renderer. If you're not on 134 or 135, that may do it. If you're updated, I got nothing.

  • Just a quick update:

    A sewer

    <img src="http://www.adamprack.com/materials/dngn02.png" border="0" />

    and a home lab.

    <img src="http://www.adamprack.com/materials/lab.png" border="0" />

  • I really like to do lists particularly because i generally have several tasks that need attention at a time, so I need the added reminder. It also helps me prioritize, but priorities aren't the be-all-end-all. If something isn't clicking with you and there's something else of similar importance that needs done, jump ship immediately. If you look at it as a total amount of hours needed for whatever, you're still investing wisely.

    Most of my game isn't built linearly (ie, not built in the progression the player will get to each layout), so it's nice whittling away on several different things and then bringing it all together/bridging the gaps. You still have all of the detail work building up, but you get large, sweeping progress in spurts--which feels great.

  • Nice Game :D

    Thank you very much! I hope to issue an update for it once Courier goes public to tidy up things I've noticed over time. I'm glad you enjoyed it!

  • I know you're worried about walls, too. You could take BluePhaze's example, but modify if a bit and have like 8 "zones" around the player. One above, one beside, one diagonal, etc all the way around. It could even be 8 invisible sprites that define how big of an area you want cleared. Then, if a black "cover" sprite comes into contact with one, set it to invisible UNLESS the visibility zone is overlapping a wall object. You would have to do some testing to get the right balance, but that should work for rooms and hallways just fine, I think.

  • You could also use the simpler method vee41 suggested, but add in a one-off event of "On collision."

    so On collision, deduct 5hp

    AND

    Every second, yada yada

    So the initial impact does something and the timer very simply continues doing what it was doing, but without the possibility of escaping at least SOME damage.

  • THX1138666

    That's some really nice-looking pixel art! Very nice looking game.

  • It isn't the object count, it's the effects! It sounds to me like you put the black effect on each of the objects and then placed them around. So it has to calculate that effect for each object every tick. This is horribly inefficient and would slow down any computer. I have far more objects than you are describing in my scenes with shadow sprites and it has essentially no impact. But I'm also not using effects to achieve it.

    There are two solutions that will drastically improve performance. The first, which is the better option, is to make separate shadow sprites for your objects, place them on a shadow layer, lower that layer's opacity. Import your shadow sprites at 100% opacity and then lower the shadow layer's opacity so they blend with each other. Effects, especially blur, are really expensive to run. You should really only be using them for more dynamic elements. Ie, use blur only on an object where the blur needs to change or go away dynamically.

    The other, which is a kind of middle ground, is to put all of your objects on the layer and then apply your black effect to the layer, not the objects. This way, it processes the effect once over a larger area instead of potentially 500-600 times with how your were describing. I would go with the other option I described and pre-bake as much as possible, though. I have far more than 1,000 objects on my layouts with no ill effect, and my computer is far weaker than yours.

  • Kyatric

    Yep, they're still in it and everything is fine. During the massive debug I just made a duplicate of the game and deleted things from there. Once 134 rolled out, I just reverted to my original file and all was well. From the 134 change log, it looks like 9-patch objects were having issues and I hadn't tried removing those yet, so that may have been it. Regardless, thanks for the help and I'm glad the update cured it all!