Directional Scanner usage

Temp102

Member
Hi Everyone,

I was wondering if anyone has an example on how to use to the new Directional Scanner feature of the wrapper?

Thanks
 

rogeruk

Member
Hi Everyone,

I was wondering if anyone has an example on how to use to the new Directional Scanner feature of the wrapper?

Thanks
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..
 

Temp102

Member
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..
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?
 

Temp102

Member
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?
It seems that no what value I enter StartScan is always returning false?
 

CyberTech

Rest in Peace
Staff member
Hi Everyone,

I was wondering if anyone has an example on how to use to the new Directional Scanner feature of the wrapper?

Thanks


d-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.
 

Temp102

Member
d-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.
Well that would be a very good reason why it doesn't work :p
 

Temp102

Member
Just wanted to touch base; Has this been implemented yet? I'm still getting object not set to reference?
 
Top Bottom