Burvey's Forum Posts

  • No problem. Sometimes it's just easier to see then to read what to do.

  • You can't format one part of the text differently then another part of the text using the textbox object. You can use 2 different text boxes if you want. Or Rex makes a plugin called TagText that lets you format text pretty much however you want.

  • In one of my games I have a text box where the player can type in a word, like a type of animal. That word is set to a variable and then I play an audio clip based on the variable. So, for example if they type the word "cat" in the box, the audio file "cat" will play. Same with "dog", "chicken" or whatever. My question is, how do I play a default sound if the word they type into the box isn't an audio file that I have in the project. For example, if they were to add the word "house" or "asdf" or just leave the box blank, I can play something like incorrect.wav

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • You probably want do do something like if W and D are down simulate movement (choose either right, down or both if using 8 directions instead of 4), and set animation to back.

  • Check out the behavior called Pin

  • I've done it both ways, with IDs and with different sprites.

  • Yeah, I was going to say you should start a new project, import all your images etc and copy your event sheets over and see if that fixes it for you (don't forget to make sure you set up all the object properties etc again as well or you wont be able to copy the event sheets). If you would like a fresh pair of eyes to take a look at the capx feel free to PM me. I will delete it afterwards and I won't share it with anyone. Either way, good luck.

  • I just wanted to confirm that after upgrading to the latest NW.JS version the system save works as intended. The issue persists in the older version. Thanks again.

  • Glad you got it figured out.

  • The first thing I would do is disable the layout scaling and run the game to see if it fixes it or not and then you can go from there.

  • Is it a sprite or tilemap object? Are you scaling it at all? Is the image size in the editor the same as the size in the layout?

  • Yes, I understand that preview and export use separate storage so that's not the issue. I am using an older version of nw.js because it was causing other issues with other games when I updated last time, so I rolled back. Maybe that has something to do with it. I will see if I can update to the latest version on another computer and test it there. Thank you for your help.

  • Thank you everyone for the input. Learned something new which is always a good thing! I think switching each slide to it's own layout would be the easiest way to go in this instance for sure.

  • It's just about impossible to protect the images. All anyone has to do is play the game, record it, then use a video editor to grab frame by frame images. A little editing and they have every sprite in the game including the animations. Someone with very little skill could do that. If someone were to have more skill they could use other more complicated ripping methods. Think about this, Nintendo and the other big game companies have multi million dollar budgets to put towards protecting their assets, yet you can do a google image search for just about any game ever made and find full game sprite sheets for them.

    The code is a little harder to steal after you minify and make an exe file, however programs like C2 make the coding so easy that with a little time and effort just about anyone can make a clone of a games mechanics. As an example, there were about 10,000 flappy bird clones out the day after it became famous (I'm exaggerating but you get the point). Same with match 3 puzzle games etc... Heck there's an entire genre of games called metroidvania based on clones of metroid and castlevania.

    In my opinion, just do everything you can to make it HARDER for the assets to be stolen (minify, encrypt, make exe) and if you have issues then get a good lawyer.