evebot:courier missioner.

zach

Member
is there any way to set this up to use a viator? eg so it cloaks as soon as it activates the warp drive when jumping.
 
is there any way to set this up to use a viator? eg so it cloaks as soon as it activates the warp drive when jumping.

You could try to use this method in the courier missions script:

PHP:
method Activate_Cloak()
	{
		if !${Me.Ship(exists)}
		{
			return
		}

		variable iterator Module

		This.ModuleList_Cloaks:GetIterator[Module]
		if ${Module:First(exists)}
		do
		{
			if !${Module.Value.IsActive} && ${Module.Value.IsOnline}
			{
				UI:UpdateConsole["Activating ${Module.Value.ToItem.Name}"]
				Module.Value:Click
			}
		}
		while ${Module:Next(exists)}
	}
 
Top Bottom