Settings with "Warp to" code - "Approach" and "Dock"

Good evening my friends, I have a BOT for personal use and eventually I make some implementations in it, to work in a more appropriate way with my needs.

I’m finding it difficult to make the code to click on the “Approach” and “Dock” menu to work, currently only the “Allin to” and “Warp” menus are working properly.

Can anybody help me?

The codes I have are:

            yield return new MenuPathTask
			{
				RootUIElement = memoryMeasurement?.InfoPanelCurrentSystem?.ListSurroundingsButton,
				Bot = Bot,
				ListMenuListPriorityEntryRegexPattern = new[] { new[] { retreatBookmark }, new[] { @"warp|approach", ParseStatic.MenuEntryWarpToAtLeafRegexPattern } },
			};

            yield return new MenuPathTask
			{
				RootUIElement = memoryMeasurement?.InfoPanelCurrentSystem?.ListSurroundingsButton,
				Bot = Bot,
				ListMenuListPriorityEntryRegexPattern = new[] { new[] { retreatBookmark }, new[] { @"dock", ParseStatic.MenuEntryWarpToAtLeafRegexPattern } },
			};

Sounds like you are thinking about EVE Online. I add the eve-online tag to your post so people can find it.

this … my friend, to close this topic, I was able to solve