Originally posted by Kellan
Total Annihilation (the game, not the prospect) is da bomb. 
TA2 is coming, at some point. This is good. Cavedog aren't doing it though. That may be baaaad....
Yes, but the Brainz™ (nothing to do with Headz, kiddies) behind TA, Chris Taylor, has said repeatedly that he is going to do an RTS after he completes Dungeon Seige, which he has. I haven't heard anything official about this RTS yet, but I know it's a-comin'!

And as for TA2 - meh... a license isn't much good if it only covers the name/storyline of a game that had virtually no story. It'll probably rock, yeah, but who knows. Any word on the developer, namely, who?
ROFL! On the "
About" page of Gas Powered Games (Chris Taylor's gig), there's this one guy whose bio is as follows:
Eric Tams
Content Engineer
Startup State Startup$ {
Trigger OnHandleMessage$( EVENT_GOT_COMPUTER ) {
SetState Alive$;
}
}
State Alive$ {
event OnEnterState$ {
LearnProgram$( "Basic" );
Writegames$( "RPG" );
Playgames$( "ALL" );
}
Trigger OnHandleMessage$( EVENT_ENTERED_HIGHSCHOOL ) {
SetState HighSchool$;
}
}
State HighSchool$ {
event OnEnterState$ {
LearnProgram$( "Pascal" );
Writegames$( "RPG" );
Playgames$( "ALL" );
}
Trigger OnHandleMessage$( EVENT_HISTORY_CLASS_REQUIRED ) {
DropOut$( "Sophomore Year" );
SetState CollegeAtUtahStateUniversity$;
}
}
State CollegeAtUtahStateUniversity$
{
event OnEnterState$ {
LearnProgram$( "C", "C++" );
Writegames$( "RPG" );
Playgames$("ALL");
}
Trigger OnHandleMessage$( EVENT_GRADUATED ) {
SetState Job$;
}
}
State Job$
{
event OnEnterState$ {
DrinkCoffee$( "Too Much" );
Writegames$( "RPG" );
}
Trigger OnHandleMessage$( EVENT_FREE_TIME ) {
FoldOrigami$( "Micro Origami" );
PlayHandball$( "Lose" );
SpendTimeWithBestSisterInWholeWorld$();
Playgames$( "ALL" );
}
}