Miner- Not opening ore hold in stations

Spaceboy

Active Member
The title says it all, anyone know of a code fix to force the ore hold open in stations? Without good luck in it staying open between docking the bot will go into a loop trying to dump ore. Is there a simple line that can be added someplace to make sure this window is open and if not to open it?
 

titboy

Member
The title says it all, anyone know of a code fix to force the ore hold open in stations? Without good luck in it staying open between docking the bot will go into a loop trying to dump ore. Is there a simple line that can be added someplace to make sure this window is open and if not to open it?

Hi, what i did was just adding

Code:
if ${EVEWindow[Inventory].ChildWindow[ShipOreHold](exists)}
        {
            EVEWindow[Inventory].ChildWindow[ShipOreHold]:MakeActive
        }
        else
        {
            MyShip:Open
            wait 2
            EVEWindow[Inventory].ChildWindow[ShipOreHold]:MakeActive
     }
to line 280 in core/obj_Station.iss
 

Spaceboy

Active Member
Ok so I spoke too soon. Even with this modification it's still not working.

It does open the active ship, it's just not switching to the ore hold.


Edit-
I ended up editing out the conditions and am just force opening ship then cargo, a working condition would be great though:

EVEBot\Branches\Stable\Core\obj_Station.iss
Lines 280-282
Code:
MyShip:Open
wait 20
EVEWindow[Inventory].ChildWindow[ShipOreHold]:MakeActive
 
Last edited:
Top Bottom