Project

General

Profile

Bug #2256

EVE:DronesEngageMyTarget[] no longer works

Added by NostraThomas 5 months ago. Updated 5 months ago.

Status:
New
Priority:
Normal
Assignee:
-
Category:
-
vbulletin_issue_id:

Description

The method EVE:DronesEngageMyTarget no longer works. It used to cause any active drones in space to attack the currently active target, similar to EVE:Execute[CmdDronesEngage](which still works).

To reproduce, get in a ship that has a Drone Bay, stock the bay with any kind of combat drone, and fly to any asteroid belt in any system (All belts will spawn NPC pirates, but they might not always be there initially).

Launch drones from the drone window (Or use MyShip:LaunchAllDrones), lock the NPC target, and run the following script:

function main()
    {
        variable index:activedrone ActiveDrones
        variable index:int64 DronesToEngage
        variable iterator DroneIterator
        variable int Selected = 0
                          
        ; Determine if our drones are already engaging the target
        Me:GetActiveDrones[ActiveDrones]
        ActiveDrones:Collapse
        ActiveDrones:GetIterator[DroneIterator]
        if ${DroneIterator:First(exists)}
        {
            do
            {
                DronesToEngage:Insert[${DroneIterator.Value.ID}]
            }
            while ${DroneIterator:Next(exists)}
        }

        ; NOTE: THIS METHOD USED TO WORK. NOW IT SEEMS LIKE NOTHING HAPPENS
        EVE:DronesEngageMyTarget[DronesToEngage]
}

 

The intended affect is the drones will engage your locked target, however nothing will happen

#1

Updated by NostraThomas 5 months ago

It should be noted that a workaround for this is to use ActiveDrone.ToEntity:EngageMyTarget. As long as this method still works it's possible to engage individual drones on the active target.

Also available in: Atom PDF