Start a directional scan at the given angle and range.Hi Everyone,
I was wondering if anyone has an example on how to use to the new Directional Scanner feature of the wrapper?
Thanks
That doesn't seem to do anything.Start a directional scan at the given angle and range.
StartScan(int angle,int range)
Angle of the scan. Default is 360.
Range of the scan. Default is 2147483647.
Get the results of the last started scan with the given angle and range. Default is the same as StartScan.
GetScanResults(int angle, int range)
Not really much you can do with this, you can scan and add the results to a list and then work on the list. Eg.. you could make an alarm if a ship is found on the directional scan..
It seems that no what value I enter StartScan is always returning false?That doesn't seem to do anything.
EVE.ISXEVE.DirectionalScanner directionalScanner = ship.Scanners.Directional;
List<DirectionalScannerResult> results = directionalScanner.GetScanResults(360, 2147483647);
But its always returning 0 for the count?
Hi Everyone,
I was wondering if anyone has an example on how to use to the new Directional Scanner feature of the wrapper?
Thanks
Well that would be a very good reason why it doesn't workd-scan was added to the wrapper based on pre-release code; it's not actually released in isxeve yet. I had actually forgotten it wasn't released yet, and was reminded last week; it should be out fairly soon.