lionz's Forum Posts

  • From the discussions here :

    and here :

    Some black screen resolutions have been "It should work if you either turn off WKWebView or add the CorHttpd plugin."

    That's all the info I have from searching. Black screen seems to be a regular occurence though and could have different reasons.

  • Anything that looks like a JRPG instantly excites me for some reason. And 90s Lara Croft mmmm

  • What elements of the game are you looking to replicate? You won't be able to make a 3D world but it will be possible to replicate some of the systems from the game as long as they work in 2D.

    • Add puzzles
    • Add zombies
    • Add nazis
    • Add chainsaws
  • By save do you mean exiting the game and then load the game and it has saved what's in the inventory? You could look at save games for that, where you can store the state of the game.

    The problem mentioned at the bottom is probably some faulty logic but it would be just a guessing game without a capx or possibly a screenshot of the relevant events.

  • What kind of event logic were you using to make it disappear and re-appear? To share with dropbox, it creates a dropbox folder in C:\users\Dropbox. In that folder is a Public folder. If you drop your file into there it gets uploaded to Dropbox, you can then right-click on the file and select Copy public link to get the url to share on here. Alternatively you can upload it via the Dropbox website once you login.

  • I think 426 is setting picked to false on the newly select enemy instead of the previous one? The first 3 events probably need some kind of rework. I also don't think 425 and 426 should be checking at exactly the same time, from the logic anyway.

  • You could use the slider bar object and depending on its value you can change the volume of the game.

  • The logic affecting it is event 8, the inverted left mouse click button down. Not sure what you've tried to accomplish there but if you disable that logic it works.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • This looks like the sort of thing you want?

    If not, there should be something suitable in the addons section of the forums :

  • It's definitely possible. Others could contribute the discussion on the best way to pull it off but you could do it by way of sprite animations to show the movement. It looks like it could even be done by having one object move to the left as the other is moving to the left. Construct 2 incorporates many of the mobile inputs like touch, hold, drag & drop. These could be useful. The 'one at a time' looks like it could be done by simply moving objects across the screen using X,Y movement and then make use of layers to make sure that the ones moving off screen are no longer visible. There will be many ways to do this kind of thing. I was taking a look at the 3D carousel style where the objects are in a kind of ring where the one in view is biggest, this can be achieved with slider bar objects and increasing size as it comes closer to the centre. For the 'autoplay' there are timers or 'every x seconds' events to achieve this. C2 is without a doubt capable of making all of these things.

  • Yeah it's possible. You could even simulate one of those 3D looking ones.

  • Yes I helped with the stamina bar too, I recognised the project. Just PM if you need help they're only little fixes.

  • The solution is in here somewhere

  • You're not wrong, this is so confusing. Are you trying to build the whole game in one layout? That's what it reads like but there's no need to do that. The tilemap will always be fine performance-wise as long as you don't use it to display large images. You mention 'draw' a lot so I assume you are concerned about performance issues around loading so many tiles. The game will only load a layout at a time, so just do one level per layout, should be fine?