dop2000's Recent Forum Activity

  • I don't know if you can copy to clipboard directly on Android, but you can use Share plugin. When "Share" window is shown to the user, there is an option to copy to clipboard.

  • It seems to work fine for me. If you create several stage sprites, you will see that bezoerkers are moving to the nearest stage.

    What you need to do is remove all "Trigger once" conditions from all events in your code! Don't add this condition to "For each" loops, or when dealing with multiple object instances. It can cause all kinds of bugs when used incorrectly.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • You need to use double quotes for all text tags and values.

    "{""FirstName"":""" & FirstName.text & """,""email"":""" & .....

    It will be much easier to put all values into a JSON object and send JSON.ToCompactString

  • See this demo:

    dropbox.com/s/ab0uil41nt3itfj/ClimbSwingingRope.capx

    It's difficult to do this with 8direction behavior actions, you'll need to disable or ignore its controls while the player is climbing the vine.

  • I don't really understand how you are planning to use Canvas.. You want to read individual pixels from Canvas and change their color, one by one? This will be very slow!

    For Mega Man game the easiest solution is to add multiple character sprites for different colors, and switch them like skins.

  • Your events should look something like this:

    Every 1 second
    Character Pathfinding not moving
    Character hunger>=5
    For each Character
     Bar pick nearest to Character
    	Character find path to Bar
    
    Character on path found 
    	Character move along the path
    

    If this doesn't help, please post your project file or code screenshot.

  • This is the correct way. Are you able to use these addons in a blank project?

  • If you run your project in debug mode, you can notice that the character Y coordinate is not exactly at the floor level, but a fraction of a pixel above it. It's how Platform behavior works.

    So you need to move the top tile a few pixels up, or decrease the height of the collision polygon on character sprite.

  • To load it into C2 array directly, it needs to have a specific header.

    {"c2array": true, "size": [100, 1, 1],"data":..........
    

    If this is 1-dimentional array, you can parse it using tokenat/tokencount expressions. Remove characters "[", "'", "]" from the string, then parse:

    Set s to replace(s, "[", "")
    Set s to replace(s, "]", "")
    Set s to replace(s, "'", "")
    
    Repeat tokencount(s, ",")-1
    	Array insert tokenat(s, loopindex, ",")
    
    
  • Don't think this kind of app is possible with Construct.

  • I hear this static noise, but I don't know how to fix it, sorry. Maybe you should report this as a bug?

    github.com/Scirra/Construct-3-bugs/issues

  • Set UserMedia object as Global (in object properties). Don't add it to the second layout, it will appear there automatically.

dop2000's avatar

dop2000

Member since 26 May, 2016

Twitter
dop2000 has 280 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