thinkpadius's Forum Posts

  • 6 posts
  • I really wish the autosave feature would wait until I am done typing stop interrupting me right in the middle of creating an event. It's just a small annoyance that builds up over time when you get on a roll you know?

    I'd love it if there was a save in background feature. Otherwise, I'm having a great time with the software.

  • If you hadn't posted this, I probably would have gone insane looking for a solution. I had the exact same problem. And of course, Construct won't let you switch preview browser mid-development, which means that I really have to hold off on music until the end of development. Luckily, all I had to do was toggle my music disabled for the time being, and I'll re-enable it at a later date.

    Hopefully it will work when I'm ready to export the game.

  • ou could also make that with exel ;) There is a nice plugin for it

    What's the plugin and where can I find it?

  • The way I've been thinking about it is to have one sprite (like a ship or something) represent the entire crew on its journey. As the crew encounters random events, the best crew member from the 6 is chosen to resolve those events. It's more like they're playing cards in a way.

    They won't ever be managed as individual sprites encountering an enemy, but rather as a group and the player decides which crew member has the best stat to solve this issue. Then it becomes a simple number test.

    ---

    Regardless, I still run into the issue that if I wanted to add many crew members to choose from, I still have to add that information into Construct 2 in a very inconvenient and cumbersome way. Whereas something like a csv, tab separated, or excel based listing system is more efficient.

    Thank you for your help though. Knowing that an array is the general direction I should look in gives me some help.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • I'm working on a turn based strategy game with minor RPG elements involved. You start the game by choosing 6 crew members from a list and then go on your journey.

    Each crew member has 5 stats that I want to keep track of and can be modified by the player as they gain xp etc.

    This game is intended for offline play as its own executable.

    I feel like I'm missing a part of the logical process or I'm missing some knowledge. How would I make something like this work?

    * Can I create an excel file that has the names and stats and have the game access that information?

    * It seems that creating an array would be ludicrously time-consuming considering that I want to give the player many different crew members to choose from. Is there a way to do the work in a text file and then load it into the game?

    * Furthermore, given that the player chooses 6 out of many crew members for his/her journey, what would be the best system for having the game "know" which crew members the player has chosen.

    Oddly enough, most of the other aspects of the game fall into place once I know this. I also believe this is an issue of missing a piece of knowledge or technique. Any advice would help. Particularly any advice on JSON and arrays, which frankly are just words to me right now. It's like no matter how many times I read the manual on JSON or Arrays, I just can't get it.

  • Hi,

    I've come up with a simple solution that should apply for all instances of using the same key to pause and unpause. It should also work for any other toggle or toggleable events that you might need.

    I've included an image here to show you what it's like: i.imgur.com/NI1oOAJ.jpg

    If that image doesn't come through then here's the basics:

    1) Create a Global Variable and set it to 0

    2) here's the way I input the actions

    | System Every Tick

         | Keyboard on [Key] pressed

            | System [Global Variable] = 0 : Toggles an action, like pause or creating an object etc.

            |                             : Set [Global Variable] to 1

            | System Else                  : un-toggles any previous action, or does a new set of actions.

            |                             : Set [Global Variable] to 0

    That's the basic skeleton. The program will check to see if the variable is 0 or not 0 and will take action based on that. It will be a toggle-able event as long as you remember to reset the Global Variable each time.

    I hope that's clear enough.

    <img src="http://i.imgur.com/NI1oOAJ.jpg" border="0" />

  • 6 posts