Lou Bagel's Recent Forum Activity

  • No worries, yeah I have worked on multiple (one big one in production also). You can see what is in the store by clicking on the image button under my name (when the store comes back up that is ).

    Happy to add to the discussion when I have time but I will likely miss the conversation unless I am tagged. I am a firm believer of doing things yourself if you can - just thought that some people might appreciate a head start though so I plugged my template.

    No problem, this is a side project for me so not trying to go super fast on it. And plug away, doesn't bother me! (visit me at )

    I think what would be interesting is seeing some formulas. So for example the basic hit formula (for whether a physical attack lands). Probably something simple if a random number modified by the difference in abilities is above a certain number it hits.

    I know to some it might sound like I'm asking for some work to be done for me. I'm sure I will modify whatever formula someone gives me, but as it can take hours and hours of trials to perfect balancing I'd rather start with someone's formula and modify it than create something from scratch.

    I've been recommended to check games (like D&D or board games) rule books to use. But some of that is very very different. Most classic RPGs your heros keep gaining stats (strength, agility, etc) where as D&D is a range from 1-20 (or something like that), never really changes (or at least has a maximum) and you just add one or two to your dice roll if above a certain number. So doesn't really scale well to a infinite scenario...

    Or maybe that is where I am going wrong. Maybe I should start by setting a max and min level and stats (even if unrealistically unobtainable) then I could follow that model...

    I just need to carve out some time to try some stuff out. It helps me to brainstorm while I'm typing though

  • Hey guys, both of those projects look good.

    If you run into problems I would be happy to help when I have the time if you send me a pm (also have a template in the store that could prove useful if you ever struggle with any elements).

    Love the cheesy text by the way.

    Thanks! You've worked on an RPG using Construct before?

    I'd be happy to send PM but also could discuss some stuff in the thread for others benefit.

  • here a little clip of my BS still under heavy working

    https://drive.google.com/open?id=1S7DUO ... pKnmiT-shO

    The music is perfect for a classic RPG! ha, you say you made the music and sounds yourself?

  • Rather than a concern, its more that it allows you more flexibility to include more art if you want. For example, if you're using the same tiles for battles and overworld anyway, it doesn't make make much sense to change layouts.

    If you wanted a lot of different tilesets/environments, you could do a low resolution overworld tileset that includes a lot of variety such as forest, snow, desert, water, ect. and then a more detailed tileset for each of those zones for a zoomed in map that you would load in layouts as needed.

    The other example was characters - if you wanted high resolution art or heavily animated enemies ect, it would make sense to load them as needed in a separate layout rather than have all your enemies loaded in memory all the time, limiting your memory use for other things.

    If you don't expect to run into memory issues, then you probably could stick with just leaving everything on one layout =) Just wanting to chime in as it is pretty normal for JRPGs to load into and out of battles or changing zones, which would be the equivalent of changing layouts for us. It is usually because all the art they want to use in the entire game can't be loaded into memory all at the same time.

    Thanks Oosyrag! That makes perfect sense now. And this one is just a practice project so I might not have a lot of art here my next/real one might!

  • Using layouts will allow you to utilize memory much more effectively. You will have more room for detailed sprites when zoomed in and a greater variety of high quality images in any given area. Or you could use it to have more quality character graphics and animations.

    I think my biggest concern with using layouts is with loading time, but I guess I won't know until I try it out.

    Do you really think I will have those space concerns with this 32x32 art?

  • >

    > >

    > > i love this retro graphics and jrpg games, im actually working on pixelart assets for make one jrpg on C2 ^^, a retro project pixelated 320*180, and 8bit music/sfx done by myself with this straordinary tool http://www.beepbox.co

    > >

    >

    > You are making the assets and music for someone else? Or are you going to be making the jrpg in C2 yourself?

    >

    All by myself. Your prototype is wonderful

    Feel free to get in touch if want to exchange tips on basic setups. Easiest way is probably DM on Twitter: https://twitter.com/LouBagelCombo5

    This isn't my primary project so not moving fast on it, so you may catch up to me quickly.

    Assets are from here: https://www.patreon.com/posts/top-down-starter-15062344

  • i love this retro graphics and jrpg games, im actually working on pixelart assets for make one jrpg on C2 ^^, a retro project pixelated 320*180, and 8bit music/sfx done by myself with this straordinary tool http://www.beepbox.co

    You are making the assets and music for someone else? Or are you going to be making the jrpg in C2 yourself?

  • Anyone make a classic RPG/JRPG in Construct 2?

    Would love to hear how you handled a few things such as menus, battle formulas, and switching between local map and world map (hidden layers? new layout? re-tile the tilemap?) before I decide which way to go.

    Cheers!

    PS You think this text is too cheesy? lol

  • Started on an attempt to make an RPG today ...haven't programmed the attack button yet

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Can you isolate and recreate the issue to share?

    Also have you checked the origin points of your animation frames to make sure they are lined up?

    Edit: It probably does have to do with frame rate. While the leader looks smooth, the distance traveled probably differs per frame, so some frames the recorded distance is slightly farther, and some slightly shorter. The stuttering becomes apparent when you have a reference point such as the follower to the leader (or the viewport, which is following the leader) - If the leader on a given frame is slightly ahead, while the follower on that frame is slightly behind, you'll see a gap widen, and then it pops back as it corrects or overcorrects in the following frame. You can test this by having the viewport follow the follower and see if it starts looking like the leader is stuttering instead.

    As for a solution, I would suggest using the move towards action instead, but that has its own complications like cutting corners and stuttering when catching up as well..

    Edit 2: Also for pixel art, do you have pixel rounding enabled? That is probably the bigger culprit. Try disabling it and see what happens.

    Oosyrag, great analysis, as usual.

    Pixel Rounding is off.

    Following character moves smoothly on his own.

    When switching the view-port to follow the follower the leader does stutter.

    I could recreate but think it might be solved thinking about it logically:

    I agree the main issue is likely the varied framerate. I tried to change it to per second but doesn't seem to work probably due to the fact if the interval is too small it will still only run once per frame. And of course if too large it won't be smooth.

    So if the timing is based on a variable framerate the important part is to keep the follower the same distance from the leader the whole time.

    This seems to work pretty well so far.

    What I did was every tick add a L/R/U/D to a variable on the follower. Then set the position to the player, instead of the NPC as in previous tries, based on the count of each. Then remove the one at the beginning. That's the basics of it at least.

    Thanks again Oosyrag for the insights!

  • did you try the pathfind behavior? maybe it will work smoothly, but maybe will have some delay.

    or you can try to adapt something from this tutorial: https://www.scirra.com/tutorials/626/ma ... ing-camera

    (use the lerp on what you have done with the array)

    I was thinking more along the lines of ideas to smooth this system out. Pathfinding isn't great for short distances like this and I have new coordinates every tick so lerp wouldn't into this system. I could create a system that just records the changes in direction and lerps the distance in between, would just have to make sure to get speed/timing correct.

    I've also tried using 8 direction controls which worked easily except that if the follower gets stuck on a solid it can be thrown off permanently.

    Before moving onto a different system though I wanted to figure out why this isn't working, as to learn from it and see if solvable (before moving on to something completely different). I am thinking it is due to a variable framerate. Does that mean adding delta time in somewhere is the fix?

Lou Bagel's avatar

Lou Bagel

Member since 7 Sep, 2015

Twitter
Lou Bagel has 3 followers

Connect with Lou Bagel

Trophy Case

  • 9-Year Club
  • Jupiter Mission Supports Gordon's mission to Jupiter
  • Forum Contributor Made 100 posts in the forums
  • Forum Patron Made 500 posts in the forums
  • Popular Game One of your games has over 1,000 players
  • Regular Visitor Visited Construct.net 7 days in a row
  • RTFM Read the fabulous manual
  • Email Verified

Progress

16/44
How to earn trophies