Reply to Re: help with object moving script
If you don't have an account, just leave the password field blank.
Well, after you call one procedure, it is executed and the initial procedure is continued. Try to use a return after each procedure call, like this:
if (&x_cor == &start_cor)
{
if (&my_dir == 6)
{
move_away();
return;
}
}
if (&x_cor == &start_cor)
{
if (&my_dir == 6)
{
move_away();
return;
}
}






