Yay, finished the game 100% now after 5 hours of intense playing and 3 nights of intense sleeping. I only used the tips and tricks thing to find 5 remaining ice creams. Good job robotjam, longanimals and turbonuke, its a brilliant game, 5/5!
More improvements: An arrow or something like that to show where are you shot from.
When pointing a player, you should see the players team and name clearly so that you can know if hes your own or enemy.
My missiles do come out from the tip of my ship but they wont move and my missile class coding is exactly the same as in the picture, what am i doing wrong??? Help me!
I did manage to get the ship roll across the screen but when i added the control text thingy for right arrow my ship didnt react at all, whats wrong. Heres the scrip ive written there so far:
class Ship extends MovieClip
{
var velocity;
function onLoad()
{
velocity = 10;
}
function onEnterFrame()
{
if( Key.isDown(Key.RIGHT) )
{
_x = _x + velocity;
}
}
{
_x = _x + velocity;
}
}