Show Posts
|
|
Pages: [1]
|
|
1
|
Developer / DevLogs / Re: Tile Empires - Multiplayer Turn-Based Strategy
|
on: March 29, 2013, 10:34:41 AM
|

Docks - Construction | 
Docks - Built |

Fishing Boat | 
Catapult |
Getting the next test game to the state where I wanted it has taken longer than I expected (of course). Most of the time I have spent on Tile Empires lately has been bug fixing - bugs like armies walking on water and conquering an enemy not giving you the land and buildings they owned. Though, I have been able to get some new features in. Docks, fishing boats, and catapults. Docks are the most basic version of a port. You can build fishing boats from this basic version and military ships from the larger versions. Fishing boats act kind of like mobile food producers. They give a 25% chance of food for each adjacent empty pure water tile. I'm hoping this will give a non military incentive for building lakes, rivers, and oceans. They have 1 hit point and do no damage in combat. Catapults finally make it easier to get through enemy walls and buildings. They have 1 hit point and do no damage to other units. If used to attack a structure such as a wall or capital, they do 10 points of damage each attack. Right now you have to move right up on your target to deal damage with catapults, but once I've implemented ranged attacks - they will be able to attack structures from a few tiles away. I think I'm going to add in watch towers and messenger stables. Then I'll get the next game ready by setting up accounts and doing the random spawn process into the world for each player.
|
|
|
|
|
2
|
Developer / DevLogs / Re: Terra Incognita
|
on: February 18, 2013, 09:37:48 AM
|
Here's a small preview of some of our (still very WIP) tiles as hex with the 32x36 size:   Your hex tiles look to be turning out great. I can't wait to see more.
|
|
|
|
|
3
|
Developer / DevLogs / Re: Tile Empires - Multiplayer Turn-Based Strategy
|
on: February 18, 2013, 09:10:01 AM
|
You said it runs in the browser: what tech are you using? HTML5? Java? Unity? The main graphical client is in Flash. I wish I could have done it in HTML5 or Unity. But when I first started working on this a few years ago, Flash was the only thing I had to work with (software and knowledge-wise).
|
|
|
|
|
4
|
Developer / DevLogs / Re: Tile Empires - Multiplayer Turn-Based Strategy
|
on: February 16, 2013, 12:49:14 PM
|
I'm especially excited to hear about the queuing, since that's a huge problem with online games these days - you're either at your computer or you lose.
I'm glad other people are excited about this idea. Just please don't be too disappointed when the next test game starts. I haven't implemented the queuing yet. I'm trying to get more of the core game play working before I finish up the action queue. I'm a little curious about the interface though - is it going to be mostly mouse-only? I was just thinking that if it is point-and-click for the most part, you might be able to port this fairly easily to mobile markets once you have a little more time, if the game is mostly web-based.
Yeah for the most part it is just point and click, click and drag, and a few keyboard shortcuts to make actions quicker. Here is another neat little thing I just finished putting together. It is a time lapse of the world map while players are placing their tiles during the past test game. This is over the course of about 2 months. http://www.youtube.com/watch?v=KhaWS_6SnyA | 
Crude example map
Right now there are plains, water, arctic, forest, desert, and mountain tiles. |
|
|
|
|
|
6
|
Developer / DevLogs / Re: Tile Empires - Multiplayer Turn-Based Strategy
|
on: February 15, 2013, 06:49:00 AM
|
signed up; looking forward to it  Yay! Thanks! Being unable to queue new tiles seems like a pretty big advantage to those that check in every hour early on in the game. The process of world creation is a very interesting premise though.
I've currently got the game set up to give everyone 15 starting tiles, and initially you gain 2 random tiles per turn. Your tile inventory space starts at 10 tiles. So after you place your initial tiles, you could go 5 turns without missing any placement opportunity. Then there is also the option to build structures that would give you more tile inventory or tiles per turn. So I would say, yes it is still a disadvantage but maybe not as big as you might think. Interesting concept, and those graphics are lovely too, very Transport Tycoon-ish. You made them yourself?
I licensed a small bit of pixel art from a guy that just had it lying around not being used for anything. So I'm using his pixel/isometric style as a basis for everything. To answer your question though, some of the buildings are directly from his work. I love the concept and I'm looking forward to this game so much! (yep, I did sign up  ) Do you intend having 100 players on one server? Awesome! Thanks! I'm probably going to keep adding as many players as I can get on one server until the server starts to take a performance hit. I would say the real problem would be the number of concurrent users logged in actively doing stuff and the turn calculations for a large number of players. Yes, doing mountains properly can be very hard. The biggest issue about mountains IMHO is that they are made of one single material; stone. This leaves you with a very little toolset to define a shape within the silhouette of the mountain. What makes the problem even worse in your case is that you have very little lighting in your sprites. Light seems to come evenly from all directions, so you don't have dark and bright sides of you objects (very apparent on your houses). I would recommend that you try to add a really hard lightsource to your mountains and work yourself through the shape by adding those strong contrasts between lit and unlit areas on the mountain, that should help to define the shape of mountains a lot (rock tends to have very strong, high contrast in shading). http://revnadinedraytonkeen.files.wordpress.com/2011/03/mountain_2.jpgAt first I tried to make the light source for everything more at an angle, but it never looked right. So I went with an overhead type light source with exaggerated shadows to give it a better feel. Thanks for the mountain advice! I'll have to give that a try this weekend.
|
|
|
|
|
7
|
Developer / DevLogs / Re: Tile Empires - Multiplayer Turn-Based Strategy
|
on: February 14, 2013, 06:45:52 AM
|
One tiny nitpick: the mountains from your screenshot seem to be of a different style than the rest of the tiles. I have no artistic eye but they just stand out to me as wrong looking.
You are totally right! I have not been able to create a mountain tile graphic that fits the style like everything else does. The current mountains are better than my massive stone blocks that used to be in there though. Hopefully I'll figure it out eventually. Here is an older screenshot with some of the older mountains in the upper left corner. Pay no attention to the bookshelf UI  
|
|
|
|
|
8
|
Developer / DevLogs / Re: Tile Empires - Multiplayer Turn-Based Strategy
|
on: February 14, 2013, 05:36:14 AM
|
Do turns queue up to be spent like many php games such as Earth 2025, and kin have done?
Not really the same way. You can queue up actions to happen, but turns do not store up to be spent. For instance, you could queue up troop movement to explore an area or queue up some buildings to be constructed when the resources become available. The only action you probably wouldn't be able to queue up is placement of tiles since you won't know what tiles you will have during the next few turns (although it wouldn't be impossible).
|
|
|
|
|
9
|
Developer / DevLogs / Re: Tile Empires - Multiplayer Turn-Based Strategy
|
on: February 14, 2013, 05:11:18 AM
|
I'm not too fond of games that take real-world time, but I'm intrigued
I feel the same way about real-world time games. Just to let you know, with the new turn every hour there is not any sort of required player interaction to keep things moving along. You don't have to click your crops each turn to harvest them. You don't have to click on the structures being built to keep the construction process going. You just tell stuff what to do, and if it takes multiple turns it will take care of itself. Back to the real-world time thing though, it is basically a way to keep the game from progressing too much while someone might be at work or asleep. With the current 1 turn per hour you could check your empire before work, at lunch, and after work - and you would probably do fine going towards the end of the game.
|
|
|
|
|
10
|
Developer / DevLogs / Tile Empires - Multiplayer Turn-Based Strategy
|
on: February 13, 2013, 07:20:20 PM
|
 My current empire used for testing Basic IdeaTile Empires is a multiplayer turn-based strategy game played in your web browser. The world is completely void when each game begins, and players build the land from scratch as the game progresses. When the game starts, each player is given a starting tile with a capital on it. Then each turn the player receives more land tiles to expand their territory with. TurnsInstead of having to wait for every player to finish the turn, a new turn begins every hour. All resource gain, land tile distribution, and other mechanics that rely on turns happen at this time. Puzzle/Planning AspectI'm trying to make land placement and building construction almost like a puzzle game underneath the greater overlying strategy portion of the game. To show you what I'm talking about - players can build farms to gather food from crops. But for the crops to be harvested, they must be adjacent to a farm. Then for the farm to stockpile this food, it must be connected by a road to either a warehouse or the player's capital. The cabins that harvest wood work almost exactly the same except with forest tiles instead of crops.  StrategyPlayers will eventually expand their lands to a point where they "bump" into another player. Then military development will become more important. Currently there is only the basic military unit to fight with, but I plan on rolling out new units such as knights that have more hit points, scouts that ride horses and can explore faster, ships that move over water tiles, and siege units that can only attack structures for massive damage. In the first screenshot posted you can see some stone gates and walls that will aid in defense.  Not something you want to find on your border! (borders need work) Thanks For Reading!I have been working on this on the weekends for awhile now, and it is finally to a playable state. The previous game that just ended had 25 players in it. I am trying to get around 100 players in the next game that will be starting in the next few weeks. If you would like to help me with playing and testing Tile Empires, please use this handy google form. In addition to posting updates here, I will also be posting updates I make during development to my Tile Empires Dev Blog.
|
|
|
|
|
12
|
Developer / DevLogs / Re: NAKED FARMER
|
on: January 03, 2013, 03:02:44 PM
|
I'm strangely addicted to this game. I finally got to a point where I felt like I could survive forever, but then I got cocky running around outside my farm and died. This is really really fun! I can't wait for the next update! Have to share my farm. 
|
|
|
|
|