dop2000's Forum Posts

  • Check the position of the Origin image point in all animation frames in the sprite. If you don't want your character to move, it needs to be in the middle of the image (horizontally).

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • My guess is that Google Spreadsheets API is not suitable for tasks like this. It probably takes some time to update data on their servers.

    Why did you decide to use spreadsheets? There are lots of services much better suited for leaderboards - Firebase, Playfab, Gamesparks etc.

  • You need to save the project as a single .capx file and share it, .caproj file is not enough.

  • loadingprogress possibly doesn't work in Cordova export, only in Web (HTML5).

  • F4 runs the project in preview mode. You need to actually export the game to test. And if loadingprogress doesn't work in exported game, then log a bug report on github.

  • This is English forum, you need to post in English. Here is the Russian Construct community forum:

    c2community.ru/forum

    .

    Are you testing in preview? Maybe you need to export to HTML5 for loadingprogress to work properly. If you are sure it works in runtime 2 and doesn't work in runtime 3, you should log a bug report:

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

  • When image point doesn't exist, it will return the same position as the origin point. So you can use this condition to check if image point is defined:

    Sprite.ImagePointX("name")≠ Sprite.X
    or Sprite.ImagePointY("name")≠ Sprite.Y
    
    
  • Try googling about the .piiq virus. There are many videos that explain how to decrypt and restore files.

  • You can simply compare Y coordinate. For example:

    Player On Collision with Block
    Player compare Y > (Block+20)
    ............. Block spawn Coin
    
  • You do not have permission to view this post

  • You do not have permission to view this post

  • .piiq is an encrypted file, removing the extension will not help. There may be ways to decrypt it without paying ransom money to hackers, google offers a few youtube videos describing how to do this.

  • Unfortunately, project.c3proj is the most important file.

    You can try to create a blank project, then add all layouts, layers, event sheets, objects, behaviors, effects - with the same names as in your old project. (look up names in the unaffected folders).

    After that save the new project as a folder, get the project.c3proj from it and and try injecting it into your old project.

    This may be a difficult task and I am not sure if this will work. Don't forget to make backup copies of everything on every step!

  • You can call Construct 3 function, and inside the function you can stop music and change variables.

    Try c3_callFunction("FunctionName", [parameters]);

    Here is an example with iFrame, I guess calling functions from the parent index.html should work the same way:

    howtoconstructdemos.com/communicating-with-an-iframe-in-construct