dop2000's Recent Forum Activity

  • Check out "Blend modes" template in Construct 2.

    Both objects need to be on the same layer and this layer should have "Force own textures=Yes"

  • Add NWJS object to the project. On start of the layout run "NWJS Set window not resizable" action.

  • Add Drag&Drop behavior, set Axes=Horizontal Only in properties.

  • First of all, remove rex's Container plugin from your project, and WebStorage too. These are very old, long deprecated plugins.

    The problem is not with the containers, but with wrong usage of "Else" in event 39. "Else" doesn't mean "all other instances". It means that if previous event didn't pick any instances, only then the "else" block will be triggered.

    You need to remove "Else" and change the event to this:

    Hitbox is NOT B -> Shield set invisible

    (add "Hitbox is B" and then invert it)

  • Op probably means that moving pathfinding objects are colliding with each other. This question is asked about once a week on this forum..

    makevideogamesnow123 I have two examples you can try. Also, search the forum, you may find many other solutions.

  • Doesn't look like an infinite loop to me. Is there another loop in the parent event?

    What happens when you run it? Does it work if you disable "Repeat choose(0,1,2)" line?

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Any touch/click means a new "On touch end" event is triggered, and that's why animation frame is changed again. You can add a condition "objThumbsUp is NOT visible" to the event. Or, better yet, instead of "On touch end" use "txtCorrect On Drop"

  • Your code is very wrong..

    "On start of layout" can not be nested in a sub-event and after a "Wait". Move it to make it a top level event. "On collision" sub-events also can not be there, they will never work.

    Also, your first event "NivActuel=5.75" runs on every tick. And inside of this event you have "Wait 3.5 seconds". This creates hundreds of wait-threads, which can cause all kinds of problems and bugs. Try to never use Wait inside of events which run on every tick!

    .

    I found your older post where Sam Dimanche have already pointed exactly the same issues. Did you even read his comment?

  • Try sending it in the url parameter:

    Ajax Post to Url "http://localhost/yourscript.php?register_pseudo=" & Register_pseudo.text

    You may need to modify your php file.

    Also, check the browser console log for any errors.

  • Here is my version:

    dropbox.com/s/tvy796w1hhe68g7/BoundedScroll.c3p

    (I hope I understood the task correctly)

  • Add a "deadzone" - only set the angle if any of the axes value is greater than (-5,5)

    abs(Gamepad.Axis(0, 2))>5
    or abs(Gamepad.Axis(0, 3))>5
     -> Player set angle to angle(0, 0, Gamepad.Axis(0, 2), Gamepad.Axis(0, 3))
    
  • You can't access properties for objects that don't exist on the currently running layout. It's as simple as that.

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