hello
how can i make dragons,ww flyable creatures to make em not fly while following the owner? they always fly while following
i think this is the code but how i can add it to flyonly when distance increases between owner

public override bool CanFly
{
get
{
return true;
}
}

even i make this

return false;

they still fly!
 
Last edited:
i added this to greaterdragon.cs but it still fly while it follows the owner

Flying = false;

public override bool CanFly
{
get
{
return false;
}
}
 
Last edited:
Back