dop2000's Recent Forum Activity

  • A global or local variable. An instance will also work, if you wish.

  • Going back one version should probably be okay. But sometimes Scirra makes changes to the file structure and then downgrading your project may break something.

    Since your project loads and runs fine in 424, don't worry about it.

  • Yes, it's possible. Unpack C3P file to a folder, or save it as folder project.

    Then edit project.c3proj file with Notepad. Change the "savedWithRelease" value. For example, "savedWithRelease":42402 means r424.2

  • It's probably all those "trigger once" conditions, you are using them wrong. Remove them and use Timer behavior when you need to schedule something.

    Also, your event #18 runs on every tick, and you have "Wait 1.5" in it, which means that everything else in this event will run many times with a 1.5s delay. And will continue running for 1.5s even after the "doorknob" sound stops playing. Don't use "wait" in non-triggered events.

    The whole thing can be done in the same event where you play the sound:

    Audio play doorknob sound
    Wait 1.5s
    Dialogue set visible
    Dialogue typewriter text ....
    Wait 2.5s
    Dialogue typewriter another text ....
    
    
    
  • for two weeks now

    You should've asked earlier! There are many ways to do this. Here is one of the easiest, without families or instance variables.

    dropbox.com/scl/fi/ab0ujefk2oqnuvh87tmnh/DragDrop_pots.c3p

  • If you can't do this with particles, use sprites. Spawn them in a circle, then tween their position to the character center.

    Every 0.1s : 
     Character spawn Sprite
     Sprite move 100px at angle random(360)
     Sprite Tween position to (Character.x, Character.y), destroy at the end
    
  • Here is what the events should look like:

    If any "else" condition is red, delete it and re-create again (press X).

  • You should probably not use "On key pressed", it's a trigger. You need "Is down" condition, which can be repeated.

    Key A down
    and Key D down : Simulate jump
    
    Else
    Key A down : Simulate left
    
    Else
    Key D down : Simulate Right
    

    You can re-arrange these events and/or remove "Else" condition, depending on what keys you want to have the priority.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Just needed to add a 'stop animation' action.

    Better set animation speed to 0 in the animation editor.

  • The only possible option is to set the background in Index.html file. I read about this, but never tried myself.

  • Not sure what you mean. In Array.at(0,3) expression the number 3 is the y-index. You can use a variable and increment it. For example:

    Number y=0
    
    Every 5 seconds 
     -> Add 1 to y
     -> Text set text to Array.at(0, y)
    

    Or a loop:

    Repeat 10 times
     -> Wait (loopindex) seconds
     -> Text set text to Array.at(0, loopindex)
    
dop2000's avatar

dop2000

Member since 26 May, 2016

Twitter
dop2000 has 279 followers

Connect with dop2000

Trophy Case

  • 10-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
  • x14
    Great Comment One of your comments gets 3 upvotes
  • Delicious Comment One of your comments gets 10 upvotes
  • Email Verified

Progress

30/44
How to earn trophies