Unsure if this is an ISXEve issue or a usage issue in EVEBot.
In the Undock code, it uses Me:SetVelocity[100] and waits 10 seconds, presumably to clear the station for warp.
What actually happens however is it goes to full speed and does a 180 right back into the station, and my ship gets stuck and is unable to warp.
I removed that line, and changed the wait to 20 to work.
New code below:
In the Undock code, it uses Me:SetVelocity[100] and waits 10 seconds, presumably to clear the station for warp.
What actually happens however is it goes to full speed and does a 180 right back into the station, and my ship gets stuck and is unable to warp.
I removed that line, and changed the wait to 20 to work.
New code below:
Code:
function Undock()
{
call UpdateHudStatus "Undock: Waiting while ship exits the station (13 sec)"
Miner.RunStartTime:Set[${Time.Timestamp}]
EVE:Execute[CmdExitStation]
do
{
wait 130 ${Entity[CategoryID,3].ID(exists)}
}
while ${Me.InStation}
Config.Common:SetHomeStation[${Entity[CategoryID,3].Name}]
call UpdateHudStatus "Undock: Exited station, waiting 20 seconds to clear."
;Me:SetVelocity[100]
wait 200
call UpdateHudStatus "Undock: Done waiting."
This:UpdateModuleList[]
}