ryrydawg's Forum Posts

  • Is there a new way? I am still using the Intel XDK to compile the project files

  • Your best bet is to read through the manual, Once you have an understanding how arrays, variables, conditions and actions work, it's very easy <img src="{SMILIES_PATH}/icon_e_smile.gif" alt=":)" title="Smile">

    Construct does all the hard work for you <img src="{SMILIES_PATH}/icon_e_smile.gif" alt=":)" title="Smile">

    Here is a great channel that cover almost everything you need to know

    https://www(dot)youtube.com/user/EnglishAcorn

    Happy game making dude!

  • Hey!

    Here is the method I used. I'm sure there are easier ways of doing this but anyway

    Create a variable that changes when the value of the slider changes

    Create different animations for your sprite

    Set the animation to the variable value

    Here is the capx

    https://onedrive.live.com/redir?resid=E ... ile%2ccapx

  • GenkiGenga

    alextro

    Thanks so much for the help!

    Can't believe how simple it was

    Have a good one!

  • Hey everyone, been scratching my head for hours on this.

    I have a "card" that should snap to an empty placeholder.

    I have the placeholders in a family called deck that has an instance variable called "hascard"

    When the card overlaps with the placeholder, it sets the variable to 1

    When overlap is inverted, sets the variable to 0

    If the card is dropped below the black line, it should snap to a placeholder with the variable value being 0.

    Is this possible when using families?

    I have linked the capx if you wanna take a look

    https://onedrive.live.com/redir?resid=E ... ile%2ccapx

    Cheers,

  • I figured it out!

    Create a variable for your level

    Create a for loop from index 0 to variable name (Which is "level" for me")

    Add action for creating your object

    Here is a screen shot for anyone who wants the same thing.

  • Oh, how to play,

    The top boxes with lines are your angle selector. Click it once then click on the screen to place it.

    Once placed, you can drop and drag. to destroy the line, drag it to the top of the screen

    The goal is to get the pink ball to hit all the green boxes and then hit the exit door at the bottom with using the least angled lines as possible.

    The on off switch changes the angled lines to become bouncy or not.

  • Hey guys,

    I'm working on a little ball drop game and I'm trying to figure out how to create a loop ( i'm guessing a for loop ) so that when the player clicks next level, it adds 1 to level variable and then creates an extra green box per level

    So, level 1 -> 1 green box

    level 2 -> 2 green boxes

    level 3 -> 3 green boxes

    and so on. I know this can be hard coded in but I would like the game to be endless.

    If anyone has an Idea or something better than a loop, please shout <img src="{SMILIES_PATH}/icon_e_smile.gif" alt=":)" title="Smile">

    Here is the link to the game capx if you wanna have a bash : https://onedrive.live.com/redir?resid=E ... file%2crar

    Thanks everyone!

  • Do you mean "www.dukygames.com" ???? And can you put my game (Hidden Jewels)?

    Google Play : Amazon:

    Unfortunately not, my site is so basic right now. I'm just an enthusiast. Not a pro

    The site is www dukgames com

    I'll still be happy to put your game up

  • Oh sorry, the link is www (dot) dukgames (dot) com

  • Hey everyone.

    I hosted a site for some of the games I am currently working on.

    If you have anything you have finished, you can send it on over and I will put it up on the website.

    I don't have anything to offer in return besides the advertising you might get on your game.

    Contact me at if you interested.

    Keep well

  • Easiest way I did it was... Just compare the X values of the AI to your player.

    Shooter/Platformer : enemy.x >player.x+100 = Simulate left . This will cause AI to not overlap your player

    • Assign a platform behavior to the enemy and use the event wall is to left/right - Simulate jump.

    Shooting: Use another condition : enemy.x is greater than 0 but less than 300 ( Insert shoot action )

    Top down: Just use line of sight and move towards player.x/y

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Oh, and if anyone has any ideas of improving the collision when fighting, that would be great. It's definitely the biggest issue so far

  • Thanks for the replies everyone!

    vybr, I didn't know you could do that :/ ! It does help a lot!! Thanks man!

  • Hi ryrydawg!

    Yep, the layout is 10,000 x 10,000 px, but only around half of it is currently used for the play area. When I start building out the actual areas I plan on having each one be at least twice that size if I can. It will all depend on how well I can optimize the game with the current test map.

    Awesome man. I was worried that creating a layout that size would cause issues but clearly it doesn't.

    Thanks again