Me:SetVelocity

Tenshi

Active Member
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:

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[]
	}
 

Amadeus

The Maestro
Staff member
Yea, I don't know why that would be there. It should be best to just wait after docking and then warp out. If there is something in your way at that point, then you're screwed no matter what you would have done.
 

chockobot

Active Member
I find there are some stations that I just get stuck on. It's usually if I undock then try to warp to a stargate opposite from where I undocked.
 

Me.Name

Active Member
Something I've used ingame for a while is make a bookmark at least 150km strait out from the undock point. If you issue a warp to 0m to this bookmark as soon as you are able, you will instantly go to warp (already at max velocity and aligned). I use this to get industrials out of stations in low-sec. Best to use a BM at 300km or more then anyone camping the station can't target you.

I haven't tried warping to a BM with ISXEve yet. I guess I should have checked if that feature was available before making this post. :eek:
 

Cr4zyb4rd

Active Member
Those insta-undock bookmarks were lifesavers back when I played, saved me a lot of grief with high-sec suicide gankers and whatnot. If you're in a particularly nasty area, pick an odd distance to set your bookmark or mix them up a bit, because eventually people will just get wise and park a scrambler at 150k or whatever.
 

CyberTech

Second-in-Command
Staff member
I put that there because some people have stations with very close ejection points; when they undock from the station, if the destination they attempt to warp to is behind the station, they can't turn around and warp to it except in a very small (Read fast/agile) ship b/c of running back into the station pre-warp.

Thus the max velocity for 20 seconds first, which in all stations i know of, will take you away from the station itself.
 
Top Bottom