A wonderful game! I love the idea! I've been begging for a good tank game, and you have done it! I was thrilled. However, (you knew this was coming), there are some small glitches. I'd list them if they weren't already in the preceding comments. Keep up the good work :3
Kongregate and its members, I can see where this is going with this stupid Kreds thing along with the tshirts. Do NOT allow kong to just become a merchandise site. This is a FREE games site! Don't let them turn into some pay to play site!
I am in LOVE with the drones! First try of the last level proved they are for later in level, when your main base is secured, but they are the perfect mechanism for success!
I am having a problem with this. I have the ship instance name as ship like it says, but when i hit the enemy ships, nothing happens. the code for the enemy ship is class EnemyShip extends MovieClip
{
var speed;
function onLoad()
{
_x = 700;
_y = Math.random()*250 + 50;
speed = Math.random()*5 + 5;
}
function onEnterFrame()
{
_x -= speed;
if(_x < -100)
{
this.removeMovieClip();
}
if(this.hitTest(_root.ship))
{
explode();
}
}
function explode()
{
this.removeMovieClip();
}
}