jobel's Forum Posts

  • and I don't mean that as a slight against C2.. just most of us making games on here aren't pros and don't make moving parts so veteran-like!

  • This seems like a bug, but I can't be sure as I've never used the Drag Drop behavior before.

    I have a sound playing for when you drag&drop successfully into a box and a different sound for when you miss the target. Both sounds play the first time through. If you continue drag and dropping then only 1 sound plays (and it varies which sound). I tried it in Chrome and in Firefox, same results.

    The fact that it varies makes me feel its the code... I'm probably overlooking something, but I can't see it.

    Can someone take a look?

  • wow.. I literally just want to give up after seeing your first devlog video... you are really attacking this thing.. you got some true motivation! And you have a great eye for effects... I suppose it helps to be a great artist, but still your use of special effects seems quite seasoned. Watching the trailer I forgot I was looking at a game made in C2...

    Like that electrified teleport beam in your game.. I've been trying to make a beam weapon attack look good in my game for over a month now. I have it looking okay, but not even close to yours. It doesn't behave well and glitches.. I've tried everything..

    I'd say good luck, but with your skills and motivation you don't need luck.. just a matter of time before you do really well for yourself!

    cheers!

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • C2 is not a big investment... at all. Even the Business License is dirt cheap compared to other pro-applications out there (PhotoShop). You can use it for free up to 100 Events which is more than enough to test it's performance for yourself.

    Learning to use C2 would never waste anyone's time. It will only make you better. It will teach you about game programming.

    When will people learn that it's not the tools that matter, it's what you do with them? You can make a great game out of a cardboard box...

  • [quote:2g0a0cmc]

    So for instant a Character object, can have several item objects bound to it. And when I need to for instant calculate the weight of items that a character is carrying I can just do.

    "Pick Item.owner_UID = Character.UID"

    hmm that's a good idea...

    How do you keep the data across layouts? global variables? Like if you were to go to a character screen, where do you store the player's attributes and how do you access them? In a combat layout you probably need access to that same data. How do you transfer it without using a global table or array?

    I guess I hadn't thought of C2 not supporting a plugin.. that would be bad.. that CSV plugin makes life REALLY easy, since using arrays is a little cumbersome in C2. Or rather, not very descriptive.

    With the CSV plugin you can just refer to columns and reference the row by ID....

      NAME   HEALTH  AC  GOLD
    1 Harry    50     5  201
    2 Zorn     30     8  0
    3 Kaz      80     5  25
    
    CSV_table.At("HEALTH", str(Player1.ID)) [/code:2g0a0cmc]   //  ID is the first column without a header.. so if ID is '1' it will return 50
  • music can be textural or like a soundscape as well!

    check out the beginning to Elliot Goldenthal's "Agnus Dei" from the ALIEN 3 soundtrack

  • well I can honestly say I haven't seen anything like it. I love your follow through... you obviously have a vision and are going with it.

    The game overall is pretty intuitive, I only got stuck in one area, but I figured it out. The collage style is very original and I really liked the contrasting images. The overall artsy feel and look is great, and many times I wanted to stop and check out the artist vision of the collage. The music is great, but the pacing of it makes it feel like I have to get through the game fast. I think with it's artistic style some slower paced music would maybe help.. maybe just in some places. In some ways I wish it were less a "game-game" and more like an exploration game so I could just go through and experience the collages which seem really interesting. I really liked how there was some models and a "sexy" element to it, as well as a darkness that's kind of hard to explain.

    I do feel more work should go into the player character, just something more complex and special since it's not just "another game asset" it's supposed to be the character I'm playing.

    The blatant Shutter Stock watermarks are kind of hilarious...

    Overall it's great and I hope you finish it!

  • I'm using Chrome and as soon as I start a new game the music plays but the game is frozen. At first the mouse is making my guy turn, but then that stops and the game is frozen.

    looks good so far though!

  • I like the style of how you do "cut scenes".. very creative... and helped with that eerie feeling.

    And I too thought the game looked a bit small. Maybe add an option button to scale the whole thing up x2? but I guess it's your layout size that is small?

    I'm a sound/music person myself... so I would definitely say it could benefit from some ambient/texture sound design to help convey that alien environment. I kept thinking it was small bugs and flies. Also some textural (non melodic) music could also add a lot of depth to it.

    And I didn't understand the rush mechanic really.. I seemed to go the wrong way when I did it..so I didn't use it much. I liked the having to move the rocks or boulders into the holes to cross into new areas, that was a clever level design and keeps things nice a separate.

    Overall great effort so far!

  • wow cool... VERY HANDY to have... thanks!

  • 5,409 events? that seems incredible.. I've been working on a game over a year and I am up to 487 events... wow, you're a champ!

    I used to love games like Pool of Radiance on the C64 and it totally reminds me of that.. good times!

    Are you using the CSV plugin from rexrainbow? it's a great thing to use for lookup tables and databases..seems like you need a TON of that...

  • DUTOIT thanks for this... I'm sort of doing it that way except not recreating the object which is probably the way to go. thanks! this helps!

  • Ashley thanks, I added 3 Events: On Space Pressed, On Up Arrow Pressed, On Down Pressed. That fixed it.

    I guess I was worried it was making the code do unnecessary checks, but then I realized I already have code checking for space bar presses, but since there's an Action that is triggered it must somehow not block the rest? I'm happy it works but still a little foggy on why it works.

    Yaay, I can use Firefox again..

  • I to have a game with OnKeyDown...I'm having the same problem except only in Firefox. In Chrome the screen doesn't bounce around at all. but Firefox moves up (just a little bit) with up arrow and the same for the down arrow. It's very annoying.

    list3ner seems like a decent work around, but that can't be the way to solve it.

    Anyone else know?

  • mindfaQ I never saw this post until now, and the link is no longer good..

    I'm still looking for a good way to do this... I've used an image and text, pinned the text to the image with bullet behavior. When the image gets to a certain point I Set Position to the beginning of the stock ticker. It works for a bit, but then all the objects start to vary distances apart.. and if you let it sit long enough, they overtake eachother! there has to be a better way..

    if anyone has any suggestions...