Skip to main content

User login

What is OpenID?
  • Log in using OpenID
  • Cancel OpenID login
  • Create new account
  • Request new password
Register
  • Home
  • Browse
    • 2D Art
    • 3D Art
    • Concept Art
    • Textures
    • Music
    • Sound Effects
    • Documents
    • Featured Tutorials
  • Submit Art
  • Collect
    • My Collections
    • Art Collections
  • Forums
  • FAQ
  • Leaderboards
    • All Time
      • Total Points
      • Comments
      • Favorites (All)
      • Favorites (2D)
      • Favorites (3D)
      • Favorites (Concept Art)
      • Favorites (Music)
      • Favorites (Sound)
      • Favorites (Textures)
    • Weekly
      • Total Points
      • Comments
      • Favorites (All)
      • Favorites (2D)
      • Favorites (3D)
      • Favorites (Concept Art)
      • Favorites (Music)
      • Favorites (Sound)
      • Favorites (Textures)
  • ❤ Donate

Primary tabs

  • View
  • Collections
  • Comments(active tab)
  • Followers
  • Friends
  • Favorites
In engine/misc.txt, you can
Thursday, February 18, 2021 - 08:55

In engine/misc.txt, you can set "save_onload=false" to disable saving when changing maps. You can then use "save_onexit=false" to disable auto-saving when the player exits the game. You may also want to set "save_oncutscene=false" if you plan on using cutscenes.

To then save the game manually, you can use "save_game=true" in an event.

First, you should check flare
Tuesday, February 16, 2021 - 10:53

First, you should check flare_log.txt in your Settings folder for any detected errors (https://github.com/flareteam/flare-engine#settings)

Second, it's worth reviewing the Animation Definitions wiki page (https://github.com/flareteam/flare-engine/wiki/Animation-Definitions) if you haven't already.

As a matter of fact, the
Monday, February 15, 2021 - 12:14

As a matter of fact, the project I mentioned that was using Flare had a map system just like that. They were able to accomplish it by creating a "book" that had the world map as a background. Each location on the map was a button that executed the "intermap" event to send the player to the correct map.

For switching days, you would
Thursday, February 11, 2021 - 09:45

For switching days, you would actually need "requires_not_status=tuesday,wednesday,thursday,friday,saturday,sunday". A much easier way would be to flip to logic and use "requires_status=monday".

I did some testing and was surprised to see using "requires_status" didn't work. Turns out, for whatever reason, the key you want is called "visible_requires_status" instead. "visible_requires_status=06:00" will do what you want. If there's truly no reason for this naming difference, I'll extend the engine to support both.

You can use "requires_status"
Wednesday, February 10, 2021 - 11:11

You can use "requires_status" for powers/upgrades in the powers tree, and events can use "set_status". So combining those two should let you control skills with events.

I didn't know you were using Linux. I would recommend building it yourself if you haven't already (it's not too hard). Here's a quick guide: https://github.com/flareteam/flare-engine/blob/master/INSTALL.engine.md#...

Sorry, no way to increase
Tuesday, February 9, 2021 - 15:53

Sorry, no way to increase stats directly with an event.

As for the bug, I just pushed a fix for it: https://github.com/flareteam/flare-engine/commit/084e645b5c23b9b3cb3f84b...

I've also made a Windows build if you need it to try: https://drive.google.com/file/d/1I_HSDIpXprYYaWCmSb0XE71xZxE--h7N/view?u...

The Powers menu was
Tuesday, February 9, 2021 - 12:16

The Powers menu was refactored for version 1.07, so I think the code was cut there. Should be fixable.

Looks like it might be an
Tuesday, February 9, 2021 - 10:54

Looks like it might be an engine bug. I just tried something similar and I had to click the upgrade button, even though there was no power point requirement. I've opened an issue here: https://github.com/flareteam/flare-engine/issues/1766

No, nothing like that is
Monday, February 8, 2021 - 10:44

No, nothing like that is possible currently.

You should set the "power
Sunday, February 7, 2021 - 07:11

You should set the "power_damage" property on the event. On the power, you should add something like this:

modifier_accuracy=absolute,1000

Pages

  • « first
  • ‹ previous
  • …
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • …
  • next ›
  • last »