I want to make it so that when one shot is fired using the space bar key, everyone starts to shoot at this guy. How do I do that? This is what I have right now:
For now all they do is absolutely nothing...
the ready is like this:
Help?
if ("space".equals(Greenfoot.getKey()))
{
ready = 1;
reload = 100;
} if(ready == 1)
{
shoot();
}
if (ready == 2)
{
runAround();
}