Saurygiel's Forum Posts

  • https://m.youtube.com/watch?v=V6Ifv0iGbPM

    A video that shows off the improved skins and walking animations. Slightly outdated.

  • Bumps?

    Recently started making my first animations. All walking and running animations are now finished so the last thing to do is finish the map, spawning, and AI until the next playable update

  • Bumpo!

  • Try this, under the sprite you want the nearest picked of, choose Event "Pick Nearest/furthest"

    Set the X & Y to the X & Y position of your player.

    Looking through examples I've posted in the past, there is also the turret behavior, that you could use to set the angle when the target is within range:

    https://dl.dropboxusercontent.com/u/854 ... Range.capx

    (this example is like zombies turning toward the player when within range, and slowly moving that direction.)

    Thank you so much! <img src="{SMILIES_PATH}/icon_e_biggrin.gif" alt=":D" title="Very Happy">

  • I played it for a little bit, as you say it's very early in development i'd say keep it up.

    I think the "sprint" should recharge abit faster, it's very slow.

    *Screeches in excitement*

    But no, really, thanks

    The stamina is a pretty iffy subject for us, as at night (once I turn the day/night cycle on) you can sleep and regen your stamina AND health 3x faster. I think since each time of day will be a little while it would a be a good experiment to try and lower it even more.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Bump!

    I mean, I guess it's sort of understandable that no one really cares about it too much. It is pretty weird looking and probably no one cares about dinosaurs but it was worth a shot. :/

  • Kind of confusing to me, but I have another problem that involves setting the angle of something every tick towards another instance, but it selects a random instance.

    So is it possible to select the closest instance to the player somehow? Like when you select the action it asks for an X and Y coordinate.

    Is there a way I could select the closest of that instance relative to the player through that?

  • Me and my friends dream game, (hopefully) coming to life. I present to you Pixelsaurs: Land of the Giants <img src="{SMILIES_PATH}/icon_e_biggrin.gif" alt=":D" title="Very Happy">

    "Grow. Survive. Adapt. Dominate. Evolve.

    Take control of the many species of Cretaceous South America in an attempt to do what they do best: Survive. Hunt and grow overtime through the infinite leveling system and upgrade your stats as you see fit. Learn and adapt strategies overtime and unlock skin customizations for all of your dinosaurs through every playthrough.

    If your looking to unleash the dinosaur in you, welcome, to the Land of the Giants."

    Link to the demo: https://www.scirra.com/arcade/rpg-games/pixelsaurs-land-of-the-giants-demo-4492

    Link to our trello for feedback, suggestions, a roadmap, artwork, and other stuffs: https://trello.com/b/vHYUVbNd/galaxy-pixel-games

    I would love to hear some feedback. It's VERY early in development, but the next update will include a new playable dinosaur, a whole new map, and new species in the form of AI. <img src="{SMILIES_PATH}/icon_e_biggrin.gif" alt=":D" title="Very Happy">

  • Well, I recently started too, and I might be able to give some advice on a few things.

    1. Try to get your friends into construct, or find / make friends online (like I have) that can help you with certain aspects that you aren't very capable in doing (For example, one of my friends is a sprite artist, another is an animator for those sprites, and I am the C2 coder). This can give you more confidence in what you can create.

    2. People might say to start with something small, but I instead went with my dream game, as crazy as I was. Think about what your passionate about, what your interests are, and build upon it. Think about some genres and games you love to play and put your own twist on it, follow your dream.

  • You could post the cap.x of your game on here and the community can help you out by testing your game and telling you if it is too hard or something.

  • Does touch option work for ANY thing, (ex : Touchscreen Laptop or Iphone) and I mean anything. or do I have to select a different option besides tap.

    I'm pretty sure it works for anything. You could afterall save the cap.x of your game to a touch laptop of yours if you have one and test it on there. Or you can import the game on your phone (you can look up tutorials for this) to play it and test the touch feature.

  • You could put an instance variable on the sprite playing the animation called CrouchDetection

    And set it so every tick you are crouching set CrouchDetection to 1

    Then add and Else event and the action to set it to 0 so when your not crouching it will be 0

    And finally add a condition to your event that allows you to attack, and make it so the normal attack animation only plays when CrouchDetection equals 0, or make it so that the crouch attack animation only plays when CrouchDetection equals 1.

  • So, I have an AI that pathfinds towards another AI and attacks them.

    The hunted AI is spotted by the hunting AI it sets an instance variable called PursuitDetection to one on the hunting AI. Every 0.5 seconds PursuitDetection is equal to one, it is supposed to find and move along a path towards that specific hunted AI that was detected. The problem is that the pathfinding selects a random hunted AI on the whole layout.

    Is it possible to, when setting a target for the pathfinding, to select the closest 'hunted AI'.X and 'hunted AI'.Y to the hunting AI?

  • Thanks, I'll try this method out now. Hopefully I can get over this problem once and for all!

  • Alright, what about when spawning in new prey? If I spawned a destination object with it, how would I make sure it binds to that specific prey instance?

    Sorry, I think I'll look up how containers work first, I've never used them before.