.net (_eve.Execute(ExecuteCommand.CmdDronesReturnToBay) crashing client

SPEC1AL1ST

Member
drons is already launched

using (new FrameLock(true))
{
EVE.ISXEVE.EVE _eve = new EVE.ISXEVE.EVE();
_eve.Execute(ExecuteCommand.CmdDronesReturnToBay);
}

innerspace exits with an crash error

something I'm doing wrong?

thanks in advance
 

stealthy

ISX Specialist
drons is already launched

using (new FrameLock(true))
{
EVE.ISXEVE.EVE _eve = new EVE.ISXEVE.EVE();
_eve.Execute(ExecuteCommand.CmdDronesReturnToBay);
}

innerspace exits with an crash error

something I'm doing wrong?

thanks in advance
Yes.
You're using a framelock instead of using the ISXEVE_onFrame event to drive your code.
 
Top Bottom