dop2000's Recent Forum Activity

  • Download links for both Stable and Beta releases in the first post now contain a singe json file and an icon. Does this mean the desktop app is officially retired?

    Could anyone please share the latest stable version? The one I have is C80 from 22-Feb-2020.

  • First of all, don't use "Trigger once" when multiple instances are involved, this is a common mistake which always causes problems.

    If you have multiple pressure plates and doors on the level, you need to use "For each plate" as the top condition. Also, you need to add a "state" variable to the plate. Here is how I would do this:

    For each Plate
    
     Enemies overlapping Plate
     or Box overlapping Plate 
     	Plate state="up"
    		: Plate set state "down"
    		: Plate move to (down)
    
     Else 
    	Plate state="down"
    		: Plate set state "up"
    		: Plate move to (up)
    
    
    

    You can also add all objects that can step on the pressure plate into a family, this will make things even easier.

  • You need to use a different action - AJAX Request URL "Myarray" & int(random(10)) & ".json"

  • I don't think it's possible with Construct.

    In the latest beta you can prevent your phone from going to sleep, but there is no way to wake it up.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • It's hard to tell what can be the problem, but from my experience with this plugin, you should avoid doing anything else that can utilize random generator until you finish building the level.

    Don't create any particles, don't use choose() or random() expressions in other events that can run during or before dungeon generation.

  • Of course it's possible, but the solution depends on how your objects are organized. If you have a separate sprite with player's icons, the easiest option is to put it into the same container with Player sprite. Then the icon will be picked automatically inside the loop

    For each Player order by TurnCount
    	PlayerIcon set Y to 500+loopindex*40
    
  • It depends on the game and platform. For mobile devices you should probably try to keep it under 1-2K checks per tick.

  • Do you want to display player names? Then it can be something like:

    Every 0.5 seconds
     Set RankingText text to ""
     For each Players order by TurnCount
    	RankingText append Players.name & newline
    

    where RankingText is a large text object that can fit many lines.

  • 5800 checks/sec equals to less than 100 checks per tick - it's nothing.

    But if all these checks happen in one tick, this may cause micro lags of slow mobile devices.

  • So you want to display the list of player sorted by an instance variable? You can easily do this with "For each (ordered)" system event.

    For each Players ordered by Players.TurnCount

  • Sure, my email is in this post.

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