dop2000's Recent Forum Activity

  • Ah, I see what's going on. Your event runs on every tick and creating many copies of this sprite.

    Run the game in debug mode (Shift+F4) and find this object in the list on the left - you will see it has many instances.

    Make sure to only create one instance! Use a triggered event, for example "On start of layout"

  • This is pretty weird. Are there any effects on this sprite? Perhaps "Alpha clamp", or something similar?

    Can you still see the shadow in Construct editor?

  • Maybe the typeInterval is not set correctly, move it to "On Created" event.

    If it doesn't help, run the project in debug mode (Shift+F4) and check Message object - how many instances are there, what values are in instance variables etc.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • There are a few addons you can try:

    construct.net/en/make-games/addons

    But it may be easier to create these shadows in Photoshop.

  • But I’d also like to configure a specific number of bullets per shot.

    You can add another nested loop:

    On turret shoot
     for 1 to numberOfShots
     for 1 to numberOfBullets
     -->create bullet object
    

    Also use instance variables on turrets.

    You can spread shots and bullets, for example:

    On turret shoot
    ..for 1 to numberOfShots 
    -->Wait (loopindex-1)*0.3
    
    ....for 1 to numberOfBullets 
    ----->create bullet object
    ----->Set bullet angle to self.angle+random(-5,5) degrees
    

    The shots will be fired with 0.3s delay between them, and bullets will fly in 10 degrees cone.

  • The last event on your screenshot (every tick) is not needed, delete it.

  • According to the documentation, enable/disable physics collisions action "affects all instances of both object types". So it ignores the picked scope.

    And it's also buggy, doesn't always work:

    dropbox.com/scl/fi/hcgy4exoxsrbf1vxok568/PhysicsCollisionsBug.c3p

  • It probably uses a third-party Tween plugin, which is not supported in runtime 3.

    Try opening the project in old versions of Construct, for example r189

    editor.construct.net/r189

    If it opens, try switching the project to Runtime 3 in project properties. If the editor doesn't allow this, then you will need to manually remove Tween plugin from all events and objects. Then save the project, then you should be able to open it in recent release of C3.

  • That's still not correct. You are not picking family members! All archers will move to the same GoodArmy instance, even if it's very far away and there are better targets nearby.

    And "Add target" action should not run on every tick. It's usually done once when the object is created, or on start of the layout.

  • Start a timer. In "On timer" event spawn a new object.

    There are plenty of tutorials and detailed documentation:

    construct.net/en/make-games/manuals/construct-3/behavior-reference/timer

  • You can use Timer behavior. Or increase a variable every 1 second, and check if it's >=5 seconds.

  • "Tap" is a gesture, it means short touch and release.

    What you are probably looking is "On object touched" and "On touch end" triggers.

    You can also add more checks, for example: while recording is in progress, if the finger is no longer touching the object -> stop recording.

dop2000's avatar

dop2000

Member since 26 May, 2016

Twitter
dop2000 has 262 followers

Connect with dop2000

Trophy Case

  • 8-Year Club
  • Entrepreneur Sold something in the asset store
  • Jupiter Mission Supports Gordon's mission to Jupiter
  • Forum Contributor Made 100 posts in the forums
  • Forum Patron Made 500 posts in the forums
  • Forum Hero Made 1,000 posts in the forums
  • Forum Wizard Made 5,000 posts in the forums
  • Forum Unicorn Made 10,000 posts in the forums
  • x5
    Popular Game One of your games has over 1,000 players
  • x2
    Coach One of your tutorials has over 1,000 readers
  • Educator One of your tutorials has over 10,000 readers
  • Regular Visitor Visited Construct.net 7 days in a row
  • Steady Visitor Visited Construct.net 30 days in a row
  • Enduring Visitor Visited Construct.net 90 days in a row
  • Unrelenting Visitor Visited Construct.net 180 days in a row
  • Continuous Visitor Visited Construct.net 365 days in a row
  • RTFM Read the fabulous manual
  • x3
    Quick Draw First 5 people to up-vote a new Construct 3 release
  • x13
    Great Comment One of your comments gets 3 upvotes
  • Delicious Comment One of your comments gets 10 upvotes
  • Email Verified

Progress

28/44
How to earn trophies