alextro's Forum Posts

  • I think I have encountered something like this. First you need to enlist what color (probably animation frame) are exist in current active stage. Put the list array for easier indexing access to their value. Then you can compare each color count through a loop checking.

  • If this is all about pop-up menu, check my example: dropbox.com/s/3zlh62rlf104hbb/menu_mag.capx

    If you want randomize string in array just use expression such array.At(int(random(array.Width))).

  • Were the problem persist when you switched preview to different browser?

  • I'll be happy then since I have an account there and there was targeted platform for Kongregate in C2.

  • You need to upload it in first place along with your zipped html5 file. If not then there won't be any c3p file to be downloaded.

  • What were you put in array? Object type name, object properties, or number?

  • Exported file should be a html5 with included in a folder then you zipped it before uploading to the arcade. There is a dashboard panel to help you completed additional information & media.

  • Turn out the new method to generate border proven to be much much simpler and you can use full collision shape for the tile. Thanks to "just enough" collision shape of the border sprite, previous censor isn't required but rather using the border itself as a detector. Now it's variable free: dropbox.com/s/0c08ihjdzy3an3q/efficient_pad%20border_area.capx

    If only I discovered it earlier. Nonetheless it's a journey for better cleaner blocks of code.

  • You can set boolean whether something has been done or not. I'll work on that matter if you want to wait me modify the file.

  • Feels like Ninja Gaiden mixed up with Chip 'n Dale (Because of audio?). Pretty intens

  • List each item value/status in a list or array then you can picking them randomly later.

  • Separate them by different global variable or store them in array so you can add them later as text.

  • Sorry to say this but your or condition (event 38) doesn't make any sense either z or x is not being pressed down while conflicts with two previous condition that require one of these two keys down. Why not just just use normal condition without inversing and without using or condition? If two keys being pressed down at the same time they won't able to shoot.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • You do not have permission to view this post

  • Use array if indexing data if you prefer hash table style. Alternatively use dictionary object if you just want storing keyword/name and it's definition/description. Calling string from dictionary is pretty straightforward, you call the "key" name and you get the value it's defined. While array use number to get value based on index position. So yes you can change any text (or variable value) referring to certain word or description.