InputSimulator in C# and eve online

more infos you find here ( if you want to use on A-bot): Avoiding to struggle - a guide for beginers

				yield return new BotTask //open windowprobes
					{
						Effects = new[] { MotionParamExtension.KeyboardPressCombined(new[] 
						{
								   VirtualKeyCode.LMENU, VirtualKeyCode.VK_P
						}) }

					};

if you want to use on a Sanderling script,
if (probeScannerWindow == null)

Sanderling.KeyboardPressCombined(new { VirtualKeyCode.LMENU, VirtualKeyCode.VK_P });

more examples for a sanderling script you finde at ( and check the master branch/last commit on git):

and here

2 Likes