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
Great game, I got through all
Saturday, August 15, 2015 - 05:12

Great game, I got through all three levels. Do you have plans to make this game as a standalone with no need to use a browser? I really liked that bats had different kind of path and other creatures since that added a bit more challenge to the game.

Yay, I got first victory from
Friday, August 14, 2015 - 13:53

Yay, I got first victory from level Arena! I am not sure if spearman is worth of 150 gp since I think archer is much more effective due longer range. Spearman could be between footman and archer around 75 gp.

Nice game and quite
Friday, August 14, 2015 - 04:46

Nice game and quite challenging too...

Nice looking characters!
Tuesday, July 28, 2015 - 02:05

Nice looking characters! Would it be possible to have separate image for whole character and separate for the background? Using these charaters would much easier if whole character would have plain character with transparent background.

Yes, GPLv3 is fine.
Sunday, April 26, 2015 - 12:06

Yes, GPLv3 is fine.

Hmm, you could try running
Thursday, April 23, 2015 - 03:40

Hmm, you could try running this command "sudo apt-get install ia32-libs". It might help if you have 64bit system. Seems that I have installed way before compiling the Flare so this was missing...

Hmm, I did not encounter this
Thursday, April 23, 2015 - 03:36

Hmm, I did not encounter this problem. You could try typing "echo $DISPLAY"

If it shows empty line then type "export DISPLAY=:0.0" and after this try running the flare again from same terminal.

I tried to search help for that error message but helps very a bit different and I am not sure which might help for you if above one does not help.

I think there is no need to
Wednesday, April 22, 2015 - 04:26

I think there is no need to clean the mess. I'll teach you couple of command. First

command cd changes the directory. ls list content of current directory. So first type "cd flare"

and then "ls" and it should like something like this:

flare-engine           SDL2-2.0.3               SDL2_mixer-2.0.0

flare-game             SDL2-2.0.3.tar.gz        SDL2_mixer-2.0.0.zip

freetype-2.5.5         SDL2_image-2.0.0         SDL2_ttf-2.0.12

freetype-2.5.5.tar.gz  SDL2_image-2.0.0.tar.gz  SDL2_ttf-2.0.12.tar.gz

Depending what packets you downloaded. Also flare-engine and flare-game might be in your home folder.If they are easiest way to clean these two is use file browser and just delete those two directories. So last time you couldn't compile SDL2_ttf since you were missing freetype.So if you can see freetype-2.5.5 directory just go there and type "./configure" "make" and "sudo make install"After this "cd .." "cd SDL2_ttf-2.0.12" "./configure" "make" and "sudo make install"After this you should have working and installed SDL2. "cd .."#Clone the game repositorygit clone  https://github.com/clintbellanger/flare-game #Clone the engine repositorygit clone https://github.com/clintbellanger/flare-engine # Go to Flare enginecd flare-engine # Configure built systemcmake . # Build flaremake # Go go Flare-game dircd ../flare-game #Create symlink to flare executableln -s ../flare-engine/flare # Go to mods dircd mods #Create symlink to flare default modln -s ../../flare-engine/mods/default # Go to Flare gamecd .. # Try running the Flare./flare #In my case it did not work at this moment I had to following:#Go to configure folder cd ~/.config/flare #Copy mods configuration to config foldercp ~/flare/flare-engine/mods/mods.txt . # Open settings.txt to text editorgedit settings.txt #Look for hwsurface=1 and change that 0 and save file#Try running Flare again cd ~/flare/flare-game./flare

Sorry, I missed compiling
Tuesday, April 21, 2015 - 04:28

Sorry, I missed compiling FreeType2 Library. So before compiling SDL2_ttf go to working directory:

cd ~/flare #Assuming you made flare folder into your home folder.

#Get freetype source codes

wget http://download.savannah.gnu.org/releases/freetype/freetype-2.5.5.tar.gz

# Decompress it

tar xvf freetype-2.5.5.tar.gz

# Go to folder

cd freetype-2.5.5

# Configure build system

./configure

# Compile it

make

# Install it

sudo make install

# and now continue build SDL2-ttf

# Go back to working dir

cd ..

# Go to decompressed folder

cd SDL2_ttf-2.0.12

#Configure your built system

./configure

# Compile SDL2 ttf

make

# Install it

sudo make install

 

Now continue from previous instructions.

You should type all these
Monday, April 20, 2015 - 05:07

You should type all these commands into terminal. Just open one terminal and type all commands there. Commands are make assumptions about your folders so these must be run in right order or you need to manually make sure you are in right folder. That's one reason why I put comment before each command. Second thing is that you should never run a command which you do not understand what it does.

./configure is a script to make building configurations that match on your system. It should write in terminal and in folder which contains that script.

Pages

  • « first
  • ‹ previous
  • …
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • …
  • next ›
  • last »