Still, there are no custom maps: you can't build a tower defense game or anything non-standard, unlike Age of Empires2.
New Release: 0 A.D. Alpha 23 “Ken Wood”
11–20 of 25 posts
Re: New Release: 0 A.D. Alpha 23 “Ken Wood”
#12Re: New Release: 0 A.D. Alpha 23 “Ken Wood”
#13Still, there are no custom maps: you can't build a tower defense game or anything non-standard, unlike Age of Empires2.
0ad comes with atlas, its integrated map editor. Maps also support scripting with Javascript and there are already maps included where waves of enemies get spawned (e.g. Danubis or Jebel Barkal), what you'd probably want for tower defense as well.
Re: New Release: 0 A.D. Alpha 23 “Ken Wood”
#14Re: New Release: 0 A.D. Alpha 23 “Ken Wood”
#15Re: New Release: 0 A.D. Alpha 23 “Ken Wood”
#16"Hellas" gives you random cutouts of actual Greece landscape.
"Egypt" is just Egypt rebuilt at small scale, including 6 pre-built cities.
"Jebel Barkal" has a pre-built city on it, which dominates the map and occasionally launches attacks against the players.
Re: New Release: 0 A.D. Alpha 23 “Ken Wood”
#17Re: New Release: 0 A.D. Alpha 23 “Ken Wood”
#18This is such a great game but the network multiplayer really needs some work. After building a certain number of units into a game the frame rate drops to almost 1FPS.
Splitting the game logic into multiple threads to have at least network related stuff happening in another thread is afaik on the roadmap for the next development cycle.
Re: New Release: 0 A.D. Alpha 23 “Ken Wood”
#19This is such a great game but the network multiplayer really needs some work. After building a certain number of units into a game the frame rate drops to almost 1FPS.
The main problem with multiplayer is that 0ad is still just using a single thread for everything, so all the path finding, rendering etc. competes with network related requests. One effect of that is that the player with the slowest hardware might introduce lag for all players in multiplayer games at the moment. Splitting the game logic into multiple threads to have at least network related stuff happening in another…
What we were able to do was put a hack into the path finding code that bailed on one of the loops after X amount of steps. It made complex paths less accurate (clicking units across the map to attack far away) but actually made the game playable. We could actually control our units whereas with the lag it's completely unplayable late game with 3 players and 3 AI.
Re: New Release: 0 A.D. Alpha 23 “Ken Wood”
#20Still, there are no custom maps: you can't build a tower defense game or anything non-standard, unlike Age of Empires2.
Yes you can build custom maps and yes you can do something like tower defense. 0ad comes with atlas, its integrated map editor. Maps also support scripting with Javascript and there are already maps included where waves of enemies get spawned (e.g. Danubis or Jebel Barkal), what you'd probably want for tower defense as well.