Reply to Re: enemy attack script
If you don't have an account, just leave the password field blank.
Are you doing the targeting and shoot in a loop in the void main?
void main(void)
{
//load graphics, set health and stuff
loop:
//dinks cordinates, get monster cordinates
//fire
wait(1000);
goto loop;
}
void hit(void)
{
goto loop;
}





