Tower Defense thread.
Moderator: Moderators
- BlackLiger
- Posts: 1371
- Joined: 05 Oct 2004, 21:58
A L P H ASatirik wrote:the icons are ugly
edit : the missiles don't fit their tubes (if you understand what i say :))
*I should probably add this, we are working on an alpha going "OH THAT LOOKS LIEK CRAP" is not useful and not why we are showing you shots. The shots are so you guys can see progress and let us know(PLEASE) What you like in the progress. Alpha is a stage where there may or may not be placeholders, shitty build pictures? yeah that is probably a place holder, use some common sense. Well texture models, odds are they are going to stay.typically includes temporary material and multiple product-breaking issues.
On the issue of *ZOMYGOSH SUKS THAT YOU DON'T HAVE MAZE"
Here are a few answers pick your favorite which I feel should be #1
1. Maze can be done but we are doing traditional first
2. Unit pushing can push units INTO towers making them stuck
3. maze is shallow as all you need is two openings to open/close and you can hold the swarms just fine.
Can I haev alpha?
No, mainly because we will hear a lot of bugs that we already fixed. We are working at blazing speeds right now and making huge progress. Odds are any alpha bugs are fixed already and you really want the alpha to play it. It isn't done, a beta is playable, an alpha is setting up groundwork. To give out an alpha would be to show you a shitty version that is at best a crude example of the final product. We have ample done as an example of progress(keep in mind this is less then a handfull of days time).
Scripted and textured units:
12 turrets.
5 creeps.
texture but not scripted:
3 creeps(will be fixed within the next two hours(LARGE OVERESTIMATE))
Lua Scripting
moving along fine, we have upgrade, build anywhere, pathing, gold system independent of spring metal an energy, wave announcements, progress, timer bar and count. Several other things are being worked on.
in wc3 td it's scripted as " if (can't reach destination) then (attack towers)". should work in spring too afaik.smoth wrote:3. maze is shallow as all you need is two openings to open/close and you can hold the swarms just fine.
not to complain, i'll be very happy with a non-mazing td too. :D
i have to concede smoth is pretty cool when he's not busy going batshit insane.
- GravitySpec
- Posts: 17
- Joined: 09 Aug 2007, 22:57
Wow, you really need to start reading things. Go back to page six and read the reminder about ALPHA. You of all people should know that the suggestion isn't needed. Seriously neddie read my post.neddiedrow wrote:I like that, but you may need to push the counters up visually, right now they overlap with units selected.
It isn't. you do not have time for that.pintle wrote:how is fps mode going to feature?
the red machine gun is a level 3 and the green tower is a level 2... as in I had to upgrade them.Mars wrote:And make all towers uppgradeable.
Ohh this is interesting I want to understand how to use LUA someday. Some good examples and stuff is really needed to learn from. This is just the stuff, custom game mechanics...
I hope the code is readable, but god I hate the textiness of LUA....
wish it was brackets... /end random rant
I hope the code is readable, but god I hate the textiness of LUA....
Code: Select all
local function HideCmdDescs(unitID)
local cds = Spring.GetUnitCmdDescs(unitID)
if (cds) then
for i = 1, cds.n do
if ((cds[i].id >= 0) and (cds[i].id ~= CMD_DEPLOY_READY)) then
Spring.EditUnitCmdDesc(unitID, i, { hidden = true })
end
end
end
end