ryanhagz's Forum Posts

  • Your .Capx didn't post because your rep isn't high enough. Did you try attaching the actual .capx?

  • Hey uzet1 , I think you're misunderstanding how to use event sheets. You don't need to create an Event sheet for every layout. Now, that's not to say where there are times when multiple Events can be useful even necessary however, if your game's mechanics are simple enough they can be put into one Event sheet and used across multiple layouts (levels).

    For example, if I make an a Event sheet and my player has the 8Direction behavior on, I can make a controls group using 8Direction that will work for all my levels. Here's a screenshot from one of my projects to show you what i mean, [attachment=0:1nukn6kf][/attachment:1nukn6kf]

    As you can see, I have three layouts and one event sheet. Some might say it's better to use separate Event Sheets for each level and then include one common sheet that might have things like controls and settings on it, but this is when groups become your best friend! If you can properly name your groups (and sub groups) you can have all your levels neatly designed and laid out all from one Event Sheet.

    Hope this helps you get a better idea of what's possible and practical.

    For more info, I recommend reading the manual, it has everything you could need for right now and when that's not enough, the forums always have amazing things being made!

    Good luck!

  • Without any .Capx or screenshots there's no way we can help you with your problem. :/

    Upload the file and I'll have a look for you.

  • Just posted the tutorial Monumental along with an updated example showing how to add additional skills if someone wants to!

    It can be found here.

    ...only 4 hours work...well 2, but ya know, closing the tab when you're 95% done a tutorial is never fun...

    Cheers guys!

  • Thanks for the feedback guys! Glad you all liked it.

    I'd be more than happy to post a tutorial for this, I'll work on it tonight!

  • No problem hundredfold glad it did some good for you!

    I'm thinking about adding some kind of preset system for it as well. Maybe create 4 generic classes like, Tank, Mage, Fighter, Assassin and then having it so when you choose one of the presets, it leans towards 2 of the skills more so that would be suited for that particular class (i.e choosing tank will result in your health and armor coming back as the primary skills. Mage - Damage & Energy. Fighter - Armor & damage, etc.)

    Don't know how it'll work out though. If I work out something I like I'll post an update.

  • Hey guys,

    I've been tinkering with this project for generating base stats for players in an rpg style (or any style!) game. The problem I was having was with the math making sure that all the stat points were allocated properly, not going over or leaving any out. Then, I made it so after you generate the stats you can reallocate them as you please with a nice visual to let you know when you can and can't take or give points! What I like about this though, is that you can easily add more points to be allocated or even additional skills to put the points into and it will still work fine so it's scalable.

    All in all, it's a pretty simple system, but I didn't see something else like it so, I figured I'd post it up and see what you guys thought or if anyone could use it for their game. I won't waste your time explaining it here, so if you want to check it out, the capx is included below along with some screen shots.

    The only problem left now is where to properly post this because, I do plan to continue working on it and implementing it into other things however, the system itself is "done" technically!

    [attachment=2:2tpg2pmy][/attachment:2tpg2pmy]

    [attachment=1:2tpg2pmy][/attachment:2tpg2pmy]

    Lemme know what you guys think, hope some of you get some use out of it for learning purposes or otherwise!

  • Without a screenshot or the .capx there is not much anyone can do for you besides assume.

    Post the .capx, and I, and I'm sure others, will take a look at it.

  • charles1311 - It is pinned at the top of the forum for all to see. Also, I think you might want to edit your post, it's FAQ, not FA....

  • If the objective is to keep things balanced on the plate you could set the plate so it rotates/falls left or right randomly then have the player react by correcting the plates balance with the sticks.

    you could try something like

    Every Tick -------------- Plate Rotate random(-10,10) clockwise[/code:1t3ysl0j] that way the plate will rotate either 10 degrees left or right max. then check if the plate has fallen by doing something like 
    [code:1t3ysl0j]Plate angle >= 10 
    or 
    plate angle <= -10 -------------- destroy plate[/code:1t3ysl0j]
    
    I imagine you could even do this with the physics behavior and every tick check the plates angle and position however you'd probably need to do a lot more tweaking.
    
    As far as working with the joysticks goes, just add the gamepad input object into your project then go to Compare axis and check both their Y axis like so,
    [code:1t3ysl0j]Left analog Y axis = 100 
    Right analog Y axis = 100[/code:1t3ysl0j]
    
    Hope it helps!
  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Use the 'Solid' behavior on the crate as well and they will not overlap, they will stack as though they are solid objects. As far as dealing with the rest of it goes, most of it is handled by the physics behavior. If you have 3 crates stacked and knockout the bottom one, the other 2 will fall as though gravity is working on them.

    Hope it helps!

  • That's the spirit!

  • Told ya...

    Such a simple fix! lol I tried that, just didn't delete the original else, I had 2 for both animation changes.

  • Hey there!

    My name is Ryan, I live in the US, I'm 19 years old and started learning web development 10 years ago. I've since worked with many different game and modeling engines, such as, Unity, Maya, Blender, and Unreal. I've also, moved beyond Web Development and have a fundamental understanding of languages like, Python, C++, and C#. I'm a pretty nice guy and to be honest, I'm just here to learn and help!

  • Hmmm, that is kind of strange. I thought it might have to do with interfering with the default controls of platform behavior, so i changed the fight animation to a different key, and the same result, it plays the first frame of the Fight animation but doesn't continue. I'm not very knowledgeable about animations yet. perhaps someone more knowledgeable like inquiesco or Wisdoms could help you.