I didn't check fishes db properties, but in any kind you can do this:I wonder how i can check if my current target is a fish.
"isSwim" could also be true for players.
Maybe the "factionId" = 172?
Any hint or idea?
List<string> fish = new List<string> { "fish1", "fish2", "fish3" };
if (fish.Contains(me.target.name)) Log("Fish targeted");
Yes, thanks. But with this approach i do need to know all fish names, which i don't. This is only meant for some additional safety during automatic target facing within an extra task during sport fishing and i want to keep this check as simple as possible. Isn't there any kind of NPC type fish stuff in AB?