[MOD] Miscellaneous IZ Combat Tweaks

The place to discuss scripting and game modifications for X Rebirth.

Moderators: Scripting / Modding Moderators, Moderators for English X Forum

w.evans
Posts: 2963
Joined: Tue, 18. Nov 14, 16:23
x4

Post by w.evans »

13.Jul.2015 - MICT_Supp2 updated to v0.08

Enhanced targeting was sometimes generating null targets - FIXED
Squad refueling was not working in X:R 3.60 Beta 3 - FIXED
Squad refueling now also works OOZ.

.......
w.evans
Posts: 2963
Joined: Tue, 18. Nov 14, 16:23
x4

Post by w.evans »

13.Jul.2015 - MICT_supp2 updated to v0.09

Found small ships and drones running MICT. Made sure that this does not happen by:

Adding a check to make sure that only capital ships (size l and xl) can run MICT,
Small ships found running MICT while escorting MICT ships have their scripts reset to move.escort
Drones found running MICT while escorting MICT ships are destroyed OOZ. (Will not work IZ.)

Sorry about this. The added checks should prevent this from happening in the future.

.......
w.evans
Posts: 2963
Joined: Tue, 18. Nov 14, 16:23
x4

Post by w.evans »

13.Jul.2015 - MICT_supp2 updated to v0.10

A slightly better solution to the drone problem:

Drones found running MICT will head home and dock rather than be instantly annihilated.

Affected drones and their mother ship have to be OOZ for this to work. Orphaned drones caused by vanilla or other mods will not be affected by this fix.

NB: This particular drone problem is a rare bug characterized by drones flying in formation with their parent capital ship. (Itself not a bad thing, but I decided to try to fix it before trying to figure out a way to use it.) If you have not observed this behavior, then you were probably not affected by the bug in the first place.

I have determined that it was not caused by this mod alone, but by this mod in combination with certain other mods which were used in a very particular way, and is unlikely to affect normal playing. (Of course, what constitutes normal playing is debatable since this is an X game!) Am publishing this fix anyway, and this fix, along with the the added checks from the patch before this one (from this morning!) should prevent this problem from occurring again.

.......
Sparky Sparkycorp
Moderator (English)
Moderator (English)
Posts: 8074
Joined: Tue, 30. Mar 04, 12:28
x4

Post by Sparky Sparkycorp »

You've been prolific - nice one :)
w.evans
Posts: 2963
Joined: Tue, 18. Nov 14, 16:23
x4

Post by w.evans »

Hey Sparky,

Just got a load of work done, and now I'm mostly waiting while I'm between jobs, so thought might as well. That, and CulunTse got me looking at the code again to get things working with the Linux build, and things started moving from there.

That last bug was a pain in the ass, though! Still no idea how it happened in the first place. Should be impossible with the scripts that are running. And a bug like that kinda nags at me until I get it fixed.
w.evans
Posts: 2963
Joined: Tue, 18. Nov 14, 16:23
x4

Post by w.evans »

14.Jul.2015 - MICT_supp2 updated to v0.11
  • MICT ships escorting non-combat ships will always act aggressively towards hostile targets in the vicinity of the ship that they're escorting.
  • If separated from their squadron commander by at least 5km, and in-zone, MICT ships will jump to within 1km of their squadron commander.
  • If separated from their squadron commander by at least 5km, and out-of-zone, MICT ships will warp to within 1km of their squadron commander.
    (NB: If they are multiple sectors away from each other, ships will jump from sector-to-sector and use jump gates as normal.)
helgard
Posts: 43
Joined: Sun, 2. Mar 14, 11:30
x4

Post by helgard »

w.evans wrote:14.Jul.2015 - MICT_supp2 updated to v0.11
  • MICT ships escorting non-combat ships will always act aggressively towards hostile targets in the vicinity of the ship that they're escorting.
  • If separated from their squadron commander by at least 5km, and in-zone, MICT ships will jump to within 1km of their squadron commander.
  • If separated from their squadron commander by at least 5km, and out-of-zone, MICT ships will warp to within 1km of their squadron commander.
    (NB: If they are multiple sectors away from each other, ships will jump from sector-to-sector and use jump gates as normal.)
Nice :o :)
w.evans
Posts: 2963
Joined: Tue, 18. Nov 14, 16:23
x4

Post by w.evans »

helgard wrote:
w.evans wrote:14.Jul.2015 - MICT_supp2 updated to v0.11
  • MICT ships escorting non-combat ships will always act aggressively towards hostile targets in the vicinity of the ship that they're escorting.
  • If separated from their squadron commander by at least 5km, and in-zone, MICT ships will jump to within 1km of their squadron commander.
  • If separated from their squadron commander by at least 5km, and out-of-zone, MICT ships will warp to within 1km of their squadron commander.
    (NB: If they are multiple sectors away from each other, ships will jump from sector-to-sector and use jump gates as normal.)
Nice :o :)
Cheers!

Forgot to add that the new jump and warp features will only activate if the ships are not currently engaged in combat. If they're in combat, they'll individually maneouver relative to the target.
w.evans
Posts: 2963
Joined: Tue, 18. Nov 14, 16:23
x4

Post by w.evans »

Could someone please take a look at this snippet? It's not working the way I expect, and I think there's something I don't understand with the way that the logic flow works.

The conditions are kind of complicated and, I think, irrelevant to the problem, so I'll start with simplified pseudo-code:

Code: Select all

<attention min="unknown">

...

  <do_if value="not B?">
    <do_if value="@A">
      <set_value name="B" exact="true"/>
      <remove_value name="A">
    </do_if>
    <do_elseif value="not @A and not @B">
      <set_value name="A" exact="true"/>
    </do_elseif>
    <do_else>
      ERROR
    </do_else>
  </do_if>

...

</attention>
Upon first running, it's supposed to first run:

Code: Select all

    <do_elseif value="not @A and not @B">
      <set_value name="A" exact="true"/>
    </do_elseif>
Then:

Code: Select all

    <do_if value="@A">
      <set_value name="B" exact="true"/>
      <remove_value name="A">
    </do_if>
Then this snippet isn't supposed to run at all until "B" is removed somewhere else.

.......
Problem is, it runs:

Code: Select all

    <do_elseif value="not @A and not @B">
      <set_value name="A" exact="true"/>
    </do_elseif>
Then, so far so good:

Code: Select all

    <do_if value="@A">
      <set_value name="B" exact="true"/>
      <remove_value name="A">
    </do_if>
Then gets stuck at:

Code: Select all

    <do_else>
      ERROR
    </do_else>
which I don't understand because it's supposed to never get to that do_else.

.......
Here's the actual code:

Code: Select all

<do_if value="$target.isoperational and (@$target.pilot.command.value == command.attackobject) or (@$target.pilot.command.value == command.attackenemies) or (($target.primarypurpose != objectpurpose.fight) and ($target.shield lt $target.maxshield)) and not $MICT_SquadAttack?">

	<!-- MICT: Go blow something up, unless someone beat you to it; in which case, look for something to blow up. -->
	<do_if value="@$MICT_SquadAcquired and @$MICT_OOZ_enemy.isoperational">
		<do_if value="$MICT_FeedbackAll or $MICT_FeedbackCombat">
			<show_notification caption="'=== MICT Squad Maneouvering ==='" details="'%1 \n Subordinate of %2 \n\n Set to Attack %3 \n Target DPS: %4 \n Target Distance to Squadron: %5 \n\n ATTACK NODE 2'.[this.ship.knownname, $target.knownname, $MICT_OOZ_enemy.knownname, $MICT_OOZ_enemy.dps.all, $MICT_OOZ_enemy.distanceto.{$target}]" queued="false" priority="9"/>
			<write_to_logbook category="general" text="'%1 \n Subordinate of %2 \n\n Set to Attack %3 \n Target DPS: %4 \n Target Distance to Squadron: %5 \n\n ATTACK NODE 2'.[this.ship.knownname, $target.knownname, $MICT_OOZ_enemy.knownname, $MICT_OOZ_enemy.dps.all, $MICT_OOZ_enemy.distanceto.{$target}]"/>
		</do_if>
		<set_value name="$MICT_SquadAttack" exact="true"/>
		<remove_value name="$MICT_SquadAcquired"/>
		<run_script name="'fight.attack.object'" sinceversion="5">
			<param name="target" value="$MICT_OOZ_enemy" />
			<param name="escort" value="$target" />
			<param name="pursuedistance" value="this.ship.maxradarrange" comment="make sure to be the same distance as max attack range" />
			<param name="allowothertargets" value="false" />
			<param name="debugoutputchance" value="$debugoutputchance" />
		</run_script>
	</do_if>

	<!-- MICT: If someone else beat you to it, then you haven't acquired a target after all. -->
	<do_elseif value="@$MICT_SquadAcquired and not @$MICT_OOZ_enemy.isoperational">
		<remove_value name="$MICT_SquadAcquired"/>
	</do_elseif>

	<!-- MICT: If no target has been designated, find a suitable target. -->
	<do_elseif value="not @$MICT_SquadAcquired and not @$MICT_SquadAttack">
		<create_list name="$MICT_enemies"/>
		<find_gravidar_contact name="$MICT_enemies" object="this.ship" functional="true" maybeattackedby="this.ship" multiple="true"/>
		<do_if value="this.ship.maxcombatrange.primary ge 8000 or this.ship.maxcombatrange.secondary ge 8000">
			<do_all exact="$MICT_enemies.count" counter="$i">
				<do_if value="$MICT_enemies.{$i}.exists and $MICT_enemies.{$i}.isoperational and ($MICT_enemies.{$i}.isclass.ship_l or $MICT_enemies.{$i}.isclass.ship_xl) and $MICT_enemies.{$i}.dps.all gt @$MICT_OOZ_enemy.dps.all">
					<set_value name="$MICT_OOZ_enemy" exact="$MICT_enemies.{$i}"/>
					<do_if value="$MICT_FeedbackAll or $MICT_FeedbackCombat">
						<show_notification caption="'=== MICT Squad Maneouvering ==='" details="'%1 \n LR Subordinate of %2 \n\n Target Acquired: %3 \n Target DPS: %4 \n\n NODE 3'.[this.ship.knownname, $target.knownname, $MICT_OOZ_enemy.knownname, $MICT_OOZ_enemy.dps.all]" queued="false" priority="9"/>
						<write_to_logbook category="general" text="'%1 \n LR Subordinate of %2 \n\n Target Acquired: %3 \n Target DPS: %4 \n NODE 3'.[this.ship.knownname, $target.knownname, $MICT_OOZ_enemy.knownname, $MICT_OOZ_enemy.dps.all]"/>
					</do_if>
				</do_if>
			</do_all>
			<set_value name="$MICT_SquadAcquired" exact="true"/>
			<remove_value name="$MICT_enemies"/>
		</do_if>
		<do_else>
			<do_all exact="$MICT_enemies.count" counter="$i">
				<do_if value="$MICT_enemies.{$i}.exists and $MICT_enemies.{$i}.isoperational and @$MICT_OOZ_enemy.distanceto.{$target} gt 0">
					<do_if value="$MICT_enemies.{$i}.distanceto.{$target} lt @$MICT_OOZ_enemy.distanceto.{$target}">
						<set_value name="$MICT_OOZ_enemy" exact="$MICT_enemies.{$i}"/>
						<do_if value="$MICT_FeedbackAll or $MICT_FeedbackCombat">
							<show_notification caption="'=== MICT Squad Maneouvering ==='" details="'%1 \n SR Subordinate of %2 \n\n Target Acquired: %3 \n Target Distance to Squadron: %4 \n\n NODE 4.1'.[this.ship.knownname, $target.knownname, $MICT_OOZ_enemy.knownname, $MICT_OOZ_enemy.distanceto.{$target}]" queued="false" priority="9"/>
							<write_to_logbook category="general" text="'%1 \n SR Subordinate of %2 \n\n Target Acquired: %3 \n Target Distance to Squadron: %4 \n\n NODE 4.1'.[this.ship.knownname, $target.knownname, $MICT_OOZ_enemy.knownname, $MICT_OOZ_enemy.distanceto.{$target}]"/>
						</do_if>
					</do_if>
				</do_if>
				<do_else>
					<set_value name="$MICT_OOZ_enemy" exact="$MICT_enemies.{$i}"/>
					<do_if value="$MICT_FeedbackAll or $MICT_FeedbackCombat">
						<show_notification caption="'=== MICT Squad Maneouvering ==='" details="'%1 \n SR Subordinate of %2 \n\n Target Acquired: %3 \n Target Distance to Squadron: %4 \n\n NODE 4.2'.[this.ship.knownname, $target.knownname, $MICT_OOZ_enemy.knownname, $MICT_OOZ_enemy.distanceto.{$target}]" queued="false" priority="9"/>
						<write_to_logbook category="general" text="'%1 \n SR Subordinate of %2 \n\n Target Acquired: %3 \n Target Distance to Squadron: %4 \n\n NODE 4.2'.[this.ship.knownname, $target.knownname, $MICT_OOZ_enemy.knownname, $MICT_OOZ_enemy.distanceto.{$target}]"/>
					</do_if>
				</do_else>
			</do_all>
			<set_value name="$MICT_SquadAcquired" exact="true"/>
			<remove_value name="$MICT_enemies"/>
		</do_else>
	</do_elseif>
	<do_else>
		<do_if value="$MICT_FeedbackAll or $MICT_FeedbackCombat">
			<show_notification caption="'=== MICT Squad Maneouvering ==='" details="'%1 \n Subordinate of %2 \n\n Something went wrong with the OOZ Combat routine. \n This node should not run.'.[this.ship.knownname, $target.knownname, $MICT_OOZ_enemy.knownname]" queued="false" priority="9"/>
			<write_to_logbook category="general" text="'%1 \n Subordinate of %2 \n\n Something went wrong with the OOZ Combat routine. \n This node should not run.'.[this.ship.knownname, $target.knownname, $MICT_OOZ_enemy.knownname]"/>
		</do_if>
	</do_else>
</do_if>
User avatar
Marvin Martian
Posts: 3614
Joined: Sun, 8. Apr 12, 09:40
x4

Post by Marvin Martian »

Do you think it is a good idea to use do_elseif

Code: Select all

<do_elseif value="not @$MICT_SquadAcquired and not @$MICT_SquadAttack">
in the do_elseif befor you remove $MICT_SquadAcquired, so the condition could be true at this moment, but the script will not take care anymore

i think a new do_if istead of do_elseif would be a good idea

then i would use less times @
in case of @$MICT_OOZ_enemy.isoperational better take care $MICT_OOZ_enemy exists

Code: Select all

<do_if value="@$MICT_SquadAcquired and @$MICT_OOZ_enemy.isoperational">
could work like

Code: Select all

<do_if value="$MICT_SquadAcquired? and $MICT_OOZ_enemy? and $MICT_OOZ_enemy.isoperational">
because i think to remember ES change the logik if the condition fails on any point, the next part won't be checked anymore
so if $MICT_SquadAcquired or $MICT_OOZ_enemy not exists, $MICT_OOZ_enemy.isoperational won't checked and can't produce an error
w.evans
Posts: 2963
Joined: Tue, 18. Nov 14, 16:23
x4

Post by w.evans »

Thanks for taking the time to look, Marvin. And sorry it's a bit of a mess.
Marvin Martian wrote:Do you think it is a good idea to use do_elseif

Code: Select all

<do_elseif value="not @$MICT_SquadAcquired and not @$MICT_SquadAttack">
in the do_elseif befor you remove $MICT_SquadAcquired, so the condition could be true at this moment, but the script will not take care anymore

i think a new do_if istead of do_elseif would be a good idea
But I don't want

Code: Select all

<do_elseif value="not @$MICT_SquadAcquired and not @$MICT_SquadAttack">
to ever run at the same iteration of the script as the do_elseif before. So that, per run of the script, only one <do_if ...> or <do_elseif ... > in that routine would run. Later took out " and not @$MICT_SquadAttack" from that condition since it's redundant.
Marvin Martian wrote:then i would use less times @
in case of @$MICT_OOZ_enemy.isoperational better take care $MICT_OOZ_enemy exists
Used "@$MICT_OOZ_enemy.isoperational" because the variable "$MICT_OOZ_enemy" is initialized further down. So, if I understood it correctly, if "$MICT_OOZ_enemy" hasn't been initialized yet, it'll output a "0" and won't fulfill the condition. "$MICT_OOZ_enemy.exists" would check to see if the object referred to by the variable "$MICT_OOZ_enemy" exists, wouldn't it? Or does it check for the existence of the variable?
Marvin Martian wrote:

Code: Select all

<do_if value="@$MICT_SquadAcquired and @$MICT_OOZ_enemy.isoperational">
could work like

Code: Select all

<do_if value="$MICT_SquadAcquired? and $MICT_OOZ_enemy? and $MICT_OOZ_enemy.isoperational">
because i think to remember ES change the logik if the condition fails on any point, the next part won't be checked anymore
so if $MICT_SquadAcquired or $MICT_OOZ_enemy not exists, $MICT_OOZ_enemy.isoperational won't checked and can't produce an error
Ah, yes!

Code: Select all

<do_if value="$MICT_SquadAcquired? and $MICT_OOZ_enemy? and $MICT_OOZ_enemy.isoperational">
is clearer. I'll write that in, thanks. Still, if it gets stuck at that point, it shouldn't go further down to the do_else, should it?

Actually, I think the problem might be here:

Code: Select all

<do_if value="$target.isoperational and (@$target.pilot.command.value == command.attackobject) or (@$target.pilot.command.value == command.attackenemies) or (($target.primarypurpose != objectpurpose.fight) and ($target.shield lt $target.maxshield)) and not $MICT_SquadAttack?">
I noticed that the game sometimes removes redundant parentheses, and I think that "and not $MICT_SquadAttack?" isn't being considered since it's getting tied to the or condition immediately before. Changing that to:

Code: Select all

<do_if value="$target.isoperational and not $MICT_SquadAttack? and ((@$target.pilot.command.value == command.attackobject) or (@$target.pilot.command.value == command.attackenemies) or (($target.primarypurpose != objectpurpose.fight) and ($target.shield lt $target.maxshield)))">
makes it so that it doesn't get to the problematic <do_else> anymore, and the script is flowing the way I expect it to.

The problem now is that:

Code: Select all

   <!-- MICT: Go blow something up, unless someone beat you to it; in which case, look for something to blow up. -->
   <do_if value="@$MICT_SquadAcquired and @$MICT_OOZ_enemy.isoperational">
      <do_if value="$MICT_FeedbackAll or $MICT_FeedbackCombat">
         <show_notification caption="'=== MICT Squad Maneouvering ==='" details="'%1 \n Subordinate of %2 \n\n Set to Attack %3 \n Target DPS: %4 \n Target Distance to Squadron: %5 \n\n ATTACK NODE 2'.[this.ship.knownname, $target.knownname, $MICT_OOZ_enemy.knownname, $MICT_OOZ_enemy.dps.all, $MICT_OOZ_enemy.distanceto.{$target}]" queued="false" priority="9"/>
         <write_to_logbook category="general" text="'%1 \n Subordinate of %2 \n\n Set to Attack %3 \n Target DPS: %4 \n Target Distance to Squadron: %5 \n\n ATTACK NODE 2'.[this.ship.knownname, $target.knownname, $MICT_OOZ_enemy.knownname, $MICT_OOZ_enemy.dps.all, $MICT_OOZ_enemy.distanceto.{$target}]"/>
      </do_if>
      <set_value name="$MICT_SquadAttack" exact="true"/>
      <remove_value name="$MICT_SquadAcquired"/>
      <run_script name="'fight.attack.object'" sinceversion="5">
         <param name="target" value="$MICT_OOZ_enemy" />
         <param name="escort" value="$target" />
         <param name="pursuedistance" value="this.ship.maxradarrange" comment="make sure to be the same distance as max attack range" />
         <param name="allowothertargets" value="false" />
         <param name="debugoutputchance" value="$debugoutputchance" />
      </run_script>
   </do_if> 
isn't working properly. The node is firing when it's supposed to, and does not fire when it's not supposed to, but the <run_script ... > doesn't stick! Ship's command changes only briefly to "attack $MICT_OOZ_enemy," then immediately reverts to "escort."

.......
edit: And for users of MICT, don't worry. This code isn't in any of the uploaded copies (yet).
w.evans
Posts: 2963
Joined: Tue, 18. Nov 14, 16:23
x4

Post by w.evans »

GOT IT!

Apparently, <find_gravidar_contact ... > does NOT use this.ship.maxradarrange. So the ships were detecting, and targeting, ships that were beyond their radar range and, since they were instructed to not engage targets beyond their radar range, they'd just sit tight with that target locked in like the good, disciplined, obedient puppies that they are.

Fixed it by adding "this.ship.distanceto.{$MICT_enemies.{$i}} le this.ship.maxradarrange" to the target prioritization thing. Works as expected now.

Now, just to cut this thing down and take out all of the redundant stuff.
w.evans
Posts: 2963
Joined: Tue, 18. Nov 14, 16:23
x4

Post by w.evans »

16.Jul.2015 - MICT_supp2 updated to v0.12

In celebration of combining MICT and MOCT into the MCT, MICT Squadrons now rock OOZ!

If:
  • a MICT Squadron Commander acquires a target and attacks (whether actively via attack command, or passively via attack all enemies or patrol command), or
  • MICT ships are escorting a civilian ship, and that ship's shields get reduced by a single Joule,
MICT Squadrons will actively seek out enemies and engage according to MICT doctrine.

MICT ships in squadrons will only engage ships detected within their radar range, and will stay within radar range of their Squadron Commander.
MICT Squadrons warping or moving to stay close to their commander tightened and made more reliable. When not engaging, they should try to stay within a kilometer of their Squadron Commander.

Enhanced target acquisition is now also active for MICT Squadrons OOZ:
  • Long-ranged MICT ships will only acquire hostile capital ships, and will fight from, and stay at, long range. They will prefer the most dangerous ships that they detect.
  • Short-ranged MICT ships will close to engage acquired hostile capital ships and fighters. They will prefer ships or fighters that are closer to their Squadron Commander.
  • MICT squadron ships will individually engage one ship at a time, and will stick with an acquired target until it's destroyed.
.......
BlackRain
Moderator (Script&Mod)
Moderator (Script&Mod)
Posts: 7465
Joined: Mon, 15. Dec 03, 18:53
x4

Post by BlackRain »

Hey w.evans. I have been checking out this mod and obviously there are some issues with using this and WWX due to the different move.escort.capital scripts used. I was hoping you would let me incorporate the changes you made in your MICT.move.escort.capital into my BR.move.escort.capital script?? I think that is the only thing not working with WWX, everything else should work fine.

Also, I made changes to the sennin frigate besieger (changed speed and removed 2 of the HIVI turrets which should make it perform weaker OOZ I think)
w.evans
Posts: 2963
Joined: Tue, 18. Nov 14, 16:23
x4

Post by w.evans »

Hey BlackRain,

Sure!

Wait, should I do anything to my move.escort to make it compatible with WWX? It calls MICT.move.escort.capital at:

sel="//attention[@min='visible']//do_if[@value='$target.isclass.ship_m or $target.isclass.ship_l or $target.isclass.ship_xl']" pos="before"

and

sel="//attention[@min='unknown']//do_if[@value='$target.isclass.ship_m or $target.isclass.ship_l or $target.isclass.ship_xl']" pos="before"

I THINK that your changes will overwrite mine, in any case.

ps. I doubt that the HIVI turrets will make much of a difference. It'll give the ship a range advantage at certain angles, but won't do much damage OOZ. Speed has a huge effect, though. Talorcans are actually viable OOZ! (Affects both offence and defense.)
BlackRain
Moderator (Script&Mod)
Moderator (Script&Mod)
Posts: 7465
Joined: Mon, 15. Dec 03, 18:53
x4

Post by BlackRain »

w.evans wrote:Hey BlackRain,

Sure!

Wait, should I do anything to my move.escort to make it compatible with WWX? It calls MICT.move.escort.capital at:

sel="//attention[@min='visible']//do_if[@value='$target.isclass.ship_m or $target.isclass.ship_l or $target.isclass.ship_xl']" pos="before"

and

sel="//attention[@min='unknown']//do_if[@value='$target.isclass.ship_m or $target.isclass.ship_l or $target.isclass.ship_xl']" pos="before"

I THINK that your changes will overwrite mine, in any case.

ps. I doubt that the HIVI turrets will make much of a difference. It'll give the ship a range advantage at certain angles, but won't do much damage OOZ. Speed has a huge effect, though. Talorcans are actually viable OOZ! (Affects both offence and defense.)
Heya, well in WWX, the ships do not use the default escort scripts. I set it up so all ships use my escort script. The only way to make it compatible would be to edit the escort file to include the changes (which I already did on my own PC but did not upload anything, well just did it now, haven't checked it yet to see how it works)

Have you tried getting ships escorting a lead ship to boost with the lead ship yet? I have been trying but haven't been successful :( It does very strange stuff. I settled on a warp command after 20 seconds to ensure that all following ships will warp to where the lead ends up or close to it. I guess it wont matter with your in sector jump changes, though.
w.evans
Posts: 2963
Joined: Tue, 18. Nov 14, 16:23
x4

Post by w.evans »

Ah! Will completely bypass both my move.escort and MICT.move.escort.capital, then. All is well. Thanks!

.......
edit: sorry, missed this:
BlackRain wrote:Have you tried getting ships escorting a lead ship to boost with the lead ship yet? I have been trying but haven't been successful Sad It does very strange stuff. I settled on a warp command after 20 seconds to ensure that all following ships will warp to where the lead ends up or close to it. I guess it wont matter with your in sector jump changes, though.
Haven't gotten it to work yet either. Just thought of something that might work: have everyone in a squad set a variable when they're ready, and wait until everyone's set before starting to boost. Haven't tried that yet, though, so don't know if it'll work.
Last edited by w.evans on Thu, 16. Jul 15, 22:55, edited 1 time in total.
BlackRain
Moderator (Script&Mod)
Moderator (Script&Mod)
Posts: 7465
Joined: Mon, 15. Dec 03, 18:53
x4

Post by BlackRain »

w.evans wrote:Ah! Will completely bypass both my move.escort and MICT.move.escort.capital, then. All is well. Thanks!
Yes, with me just adding in your code to my escort script, it will function the same way. If you have no qualms with it, I will upload as such assuming it all works. The rest of your work should function fine as normal. By the way, if you ever get a chance and wouldn't mind looking at my patrol script I would appreciate it. Any ideas or modifications you might come up with (to improve it) would be greatly appreciated. I have tweaked it over time but it is more like a butcher with a butcher knife than a surgeon with a scalpel haha. I am sure things could be done much better or improved. I am going to be working with Rubini on it as well so if you are interested in working with us for our new joint mod venture, would be a big help.
w.evans
Posts: 2963
Joined: Tue, 18. Nov 14, 16:23
x4

Post by w.evans »

BlackRain wrote:Yes, with me just adding in your code to my escort script, it will function the same way. If you have no qualms with it, I will upload as such assuming it all works. The rest of your work should function fine as normal.
No problems on my end.

And missed a question of yours that I sort of answered in an edit of the post before this one that you might have missed.

.......
edit: Ha ha! We're both post edit-ers. Missed this:
Blackrain wrote:By the way, if you ever get a chance and wouldn't mind looking at my patrol script I would appreciate it. Any ideas or modifications you might come up with (to improve it) would be greatly appreciated. I have tweaked it over time but it is more like a butcher with a butcher knife than a surgeon with a scalpel haha. I am sure things could be done much better or improved. I am going to be working with Rubini on it as well so if you are interested in working with us for our new joint mod venture, would be a big help.
Sure, I'll take a look. Just have the time to do this again because I'm between jobs at the moment, though, so I don't know how long I can commit.
w.evans
Posts: 2963
Joined: Tue, 18. Nov 14, 16:23
x4

Post by w.evans »

Just a quick data dump of a log from a MICT Squadron attacking a zone patrolled by two PMC Taranis, each with fighter escorts.

Forgot to mention that the battle is OOZ.

The MICT Squadron consists of:

One Sucellus (F3/STK 01 - Sucellus) - Squadron Commander
Two Stromvoks (F3/FGT 01 - Stromvok, and F3/FGT 02 - Stromvok) - assigned to F3/STK 01 (Assign new Commander)

.......
<!-- Squadron Commander (F3/STK 01) acquires target with highest dps within radar range. Ignores fighters and goes straight for a Taranis. -->
<entry time="792363.732" text="F3/STK 01 - Sucellus
LR Subordinate of FT(C/E) 01 - Lepton

Target Acquired: PMC Warden Destroyer Taranis
Target DPS: 972280
Distance to Target: 32240
NODE 3"/>

<!-- F3/STK 01 engages target. -->
<entry time="792365.046" text="F3/STK 01 - Sucellus
Subordinate of FT(C/E) 01 - Lepton

Attacking PMC Warden Destroyer Taranis
Target DPS: 972280
Target Distance to Squadron: 34520

ATTACK NODE 2"/>

<!-- F3/STK 01 determines heading which will inflict the highest damage to the target. -->
<entry time="792365.86" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 32088
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>

<!-- F3/STK 01 moves to engage. -->
<entry time="792366.787" text="F3/STK 01 - Sucellus jumping to target.
Moving to attack PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 32008"/>

<!-- F3/FGT 02 cycles through all targets within radar range to determine which one is closest to the Squadron Commander. Settles on one Taranis. -->
<entry time="792366.841" text="F3/FGT 02 - Stromvok
SR Subordinate of F3/STK 01 - Sucellus

Target Acquired: PMC Warden Destroyer Taranis
Target Distance to Squadron: 60096

NODE 4.2"/>
<entry time="792366.841" text="F3/FGT 02 - Stromvok
SR Subordinate of F3/STK 01 - Sucellus

Target Acquired: PMC Fighter Squadron Triath Vanguard
Target Distance to Squadron: 59376

NODE 4.1"/>
<entry time="792366.841" text="F3/FGT 02 - Stromvok
SR Subordinate of F3/STK 01 - Sucellus

Target Acquired: PMC Fighter Squadron Triath Vanguard
Target Distance to Squadron: 59032

NODE 4.1"/>
<entry time="792366.841" text="F3/FGT 02 - Stromvok
SR Subordinate of F3/STK 01 - Sucellus

Target Acquired: PMC Warden Destroyer Taranis
Target Distance to Squadron: 31996

NODE 4.1"/>
<entry time="792366.841" text="F3/FGT 02 - Stromvok
SR Subordinate of F3/STK 01 - Sucellus

Target Acquired: PMC Warden Destroyer Taranis
Target Distance to Squadron: 25916

NODE 4.1"/>

<!-- F3/FGT 02 cycles through all targets within radar range to determine which one is closest to the Squadron Commander. Settles on one Taranis. (most likely the same one as the Taranis that FGT 02 acquired.) -->
<entry time="792368.401" text="F3/FGT 01 - Stromvok
SR Subordinate of F3/STK 01 - Sucellus

Target Acquired: PMC Warden Destroyer Taranis
Target Distance to Squadron: 59984

NODE 4.2"/>
<entry time="792368.401" text="F3/FGT 01 - Stromvok
SR Subordinate of F3/STK 01 - Sucellus

Target Acquired: PMC Fighter Squadron Triath Vanguard
Target Distance to Squadron: 59616

NODE 4.1"/>
<entry time="792368.401" text="F3/FGT 01 - Stromvok
SR Subordinate of F3/STK 01 - Sucellus

Target Acquired: PMC Fighter Squadron Triath Vanguard
Target Distance to Squadron: 59248

NODE 4.1"/>
<entry time="792368.401" text="F3/FGT 01 - Stromvok
SR Subordinate of F3/STK 01 - Sucellus

Target Acquired: PMC Warden Destroyer Taranis
Target Distance to Squadron: 31872

NODE 4.1"/>
<entry time="792368.401" text="F3/FGT 01 - Stromvok
SR Subordinate of F3/STK 01 - Sucellus

Target Acquired: PMC Warden Destroyer Taranis
Target Distance to Squadron: 25788

NODE 4.1"/>

<!-- F3/FGT 01 engages target. -->
<entry time="792369.982" text="F3/FGT 01 - Stromvok
Subordinate of F3/STK 01 - Sucellus

Attacking PMC Warden Destroyer Taranis
Target DPS: 972280
Target Distance to Squadron: 25668

ATTACK NODE 2"/>

<!-- F3/FGT 02 engages target. -->
<entry time="792370.694" text="F3/FGT 02 - Stromvok
Subordinate of F3/STK 01 - Sucellus

Attacking PMC Warden Destroyer Taranis
Target DPS: 972280
Target Distance to Squadron: 25600

ATTACK NODE 2"/>

<!-- F3/FGT 01 determines that it will do the most damage by keeping the target on its right side. (All of the Stromvoks' armaments are situated on the sides of the ships.)
Moves to engage. -->
<entry time="792370.694" text="F3/FGT 01 - Stromvok Vector Right.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 25540
Shield Strength: 600000 / 600000
Target Max Range: 8947.25"/>
<entry time="792371.186" text="F3/FGT 01 - Stromvok jumping to target.
Moving to attack PMC Warden Destroyer Taranis
Min distance to Target: 3520
Max distance to Target: 7040
Distance to Target: 25504"/>

<!-- F3/FGT 02 determines the same. Moves to engage. -->
<entry time="792371.295" text="F3/FGT 02 - Stromvok Vector Right.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 24916
Shield Strength: 600000 / 600000
Target Max Range: 8947.25"/>
<entry time="792372.275" text="F3/FGT 02 - Stromvok jumping to target.
Moving to attack PMC Warden Destroyer Taranis
Min distance to Target: 3520
Max distance to Target: 7040
Distance to Target: 24840"/>

<!-- F3/STK 01 is in position, and fires at the target. -->
<entry time="792389.985" text="F3/STK 01 - Sucellus fighting PMC Warden Destroyer Taranis OOZ
at Range: 15816 at Quadrant: FCC
Attack Strength: Max: 232961.203 Actual: 279553.469
has 60 combat drones
Defence Officer Rating: 100
Target Status: Shields: 1238715.5 Hull: 2100000"/>
<entry time="792392.116" text="F3/STK 01 - Sucellus fighting PMC Warden Destroyer Taranis OOZ
at Range: 15838 at Quadrant: FCC
Attack Strength: Max: 234411.172 Actual: 281293.406
has 60 combat drones
Defence Officer Rating: 100
Target Status: Shields: 668749.375 Hull: 2100000"/>

<!-- F3/STK 01 periodically checks to make sure that the heading that deals maximum damage has not changed. (From turrets getting damaged, for example.) Maintains optimal range.
This is a full five-star crew, so it checks and adjusts fairly often. -->
<entry time="792392.824" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15846
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792392.824" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15846"/>
<entry time="792392.934" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15846
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792392.934" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15846"/>
<entry time="792393.043" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15846
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792393.043" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15846"/>
<entry time="792393.153" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15854
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792393.153" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15854"/>
<entry time="792393.262" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15854
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792393.262" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15854"/>
<entry time="792393.37" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15854
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792393.37" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15854"/>
<entry time="792393.479" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15854
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792393.479" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15854"/>
<entry time="792393.588" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15854
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792393.588" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15854"/>
<entry time="792393.698" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15854
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792393.698" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15854"/>
<entry time="792393.807" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15862
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792393.807" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15862"/>
<entry time="792393.916" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15862
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792393.916" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15862"/>
<entry time="792394.025" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15862
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792394.025" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15862"/>
<entry time="792394.134" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15862
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792394.134" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15862"/>
<entry time="792394.242" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15862
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792394.242" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15862"/>
<entry time="792394.351" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15862
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792394.351" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15862"/>
<entry time="792394.459" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15868
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792394.459" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15868"/>
<entry time="792394.568" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15868
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792394.568" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15868"/>
<entry time="792394.677" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15868
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792394.677" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15868"/>
<entry time="792394.786" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15868
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792394.786" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15868"/>
<entry time="792394.894" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15868
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792394.894" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15868"/>
<entry time="792395.003" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15868
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792395.003" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15868"/>
<entry time="792395.112" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15876
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792395.112" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15876"/>
<entry time="792395.221" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15876
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792395.221" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15876"/>
<entry time="792395.329" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15876
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792395.329" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15876"/>
<entry time="792395.438" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15884
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792395.438" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15884"/>
<entry time="792395.438" text="F3/STK 01 - Sucellus fighting PMC Warden Destroyer Taranis OOZ
at Range: 15884 at Quadrant: FCC
Attack Strength: Max: 235861.141 Actual: 283033.375
has 60 combat drones
Defence Officer Rating: 100
Target Status: Shields: 0 Hull: 1960877.5"/>
<entry time="792395.547" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15884
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792395.547" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15884"/>
<entry time="792395.656" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15884
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792395.656" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15884"/>
<entry time="792395.765" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15884
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792395.765" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15884"/>
<entry time="792395.873" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15884
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792395.873" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15884"/>
<entry time="792395.982" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15892
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792395.982" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15892"/>
<entry time="792396.091" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15892
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792396.091" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15892"/>
<entry time="792396.2" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15892
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792396.2" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15892"/>
<entry time="792396.309" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15892
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792396.309" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15892"/>

<!-- F3/FGT 01 gets into position and starts firing. -->
<entry time="792396.364" text="F3/FGT 01 - Stromvok fighting PMC Warden Destroyer Taranis OOZ
at Range: 5324 at Quadrant: FCC
Attack Strength: Max: 6403.2 Actual: 7683.84
has 0 combat drones
Defence Officer Rating: 100
Target Status: Shields: 681778 Hull: 2099943.5"/>

<entry time="792396.418" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15892
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792396.418" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15892"/>
<entry time="792396.527" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15892
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792396.527" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15892"/>
<entry time="792396.635" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15898
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792396.635" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15898"/>
<entry time="792396.744" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15898
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792396.744" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15898"/>
<entry time="792396.853" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15898
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792396.853" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15898"/>
<entry time="792396.961" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15898
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792396.961" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15898"/>
<entry time="792397.07" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15898
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792397.07" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15898"/>
<entry time="792397.179" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15906
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792397.179" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15906"/>

<!-- F3/FGT 01 switches to Vector Left (keeps the target at its left side), probably due to damage sustained on the turrets on its right side. -->
<entry time="792397.233" text="F3/FGT 01 - Stromvok Vector Left.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 5292
Shield Strength: 600000 / 600000
Target Max Range: 8947.25"/>
<entry time="792397.233" text="F3/FGT 01 - Stromvok keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 3520
Max distance to Target: 7040
Distance to Target: 5292"/>
<entry time="792397.287" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15906
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792397.287" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15906"/>

<!-- F3/STK 01 fires another barrage. Target's shields are down. -->
<entry time="792397.342" text="F3/STK 01 - Sucellus fighting PMC Warden Destroyer Taranis OOZ
at Range: 15906 at Quadrant: FCC
Attack Strength: Max: 235861.141 Actual: 283033.375
has 60 combat drones
Defence Officer Rating: 100
Target Status: Shields: 0 Hull: 1439873.5"/>

<entry time="792397.396" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15906
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792397.396" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15906"/>
<entry time="792397.505" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15906
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792397.505" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15906"/>
<entry time="792397.613" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15906
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792397.613" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15906"/>
<entry time="792397.722" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15906
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792397.722" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15906"/>
<entry time="792397.831" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15914
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792397.831" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15914"/>

<!-- It looks like F3/FGT 01 and FGT 02 engaged a different Taranis from the one that F3/STK 01 has engaged. FGT 02 gets in position and starts firing. -->
<entry time="792397.886" text="F3/FGT 02 - Stromvok fighting PMC Warden Destroyer Taranis OOZ
at Range: 6064 at Quadrant: FCC
Attack Strength: Max: 43543.199 Actual: 52251.84
has 15 combat drones
Defence Officer Rating: 100
Target Status: Shields: 567431.563 Hull: 2099943.5"/>

<entry time="792397.94" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15914
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792397.94" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15914"/>
<entry time="792398.049" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15914
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792398.049" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15914"/>
<entry time="792398.158" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15914
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792398.158" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15914"/>
<entry time="792398.267" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15914
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792398.267" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15914"/>

<!-- The Stromvoks' crews aren't as good as the Sucellus' crew, so they don't check and adjust as often. -->
<entry time="792398.321" text="F3/FGT 02 - Stromvok Vector Left.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 6080
Shield Strength: 600000 / 600000
Target Max Range: 8947.25"/>
<entry time="792398.321" text="F3/FGT 02 - Stromvok keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 3520
Max distance to Target: 7040
Distance to Target: 6080"/>
<entry time="792398.376" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15922
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792398.376" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15922"/>
<entry time="792398.43" text="F3/FGT 01 - Stromvok Vector Left.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 5254
Shield Strength: 600000 / 600000
Target Max Range: 8947.25"/>
<entry time="792398.43" text="F3/FGT 01 - Stromvok keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 3520
Max distance to Target: 7040
Distance to Target: 5254"/>
<entry time="792398.485" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15922
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792398.485" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15922"/>
<entry time="792398.594" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15928
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792398.594" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15928"/>
<entry time="792398.703" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15928
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792398.703" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15928"/>
<entry time="792398.812" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15928
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792398.812" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15928"/>
<entry time="792398.922" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15928
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792398.922" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15928"/>
<entry time="792399.031" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15928
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792399.031" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15928"/>
<entry time="792399.14" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15928
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792399.14" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15928"/>
<entry time="792399.249" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15936
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792399.249" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15936"/>
<entry time="792399.358" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15936
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792399.358" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15936"/>
<entry time="792399.413" text="F3/FGT 02 - Stromvok Vector Left.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 6115
Shield Strength: 600000 / 600000
Target Max Range: 8947.25"/>
<entry time="792399.413" text="F3/FGT 02 - Stromvok keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 3520
Max distance to Target: 7040
Distance to Target: 6115"/>
<entry time="792399.468" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15936
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792399.468" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15936"/>
<entry time="792399.577" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15936
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792399.577" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15936"/>

<!-- FGT 01 fires another barrage. Target's shields are down. -->
<entry time="792399.631" text="F3/FGT 01 - Stromvok fighting PMC Warden Destroyer Taranis OOZ
at Range: 5206 at Quadrant: FRU
Attack Strength: Max: 6403.2 Actual: 7683.84
has 0 combat drones
Defence Officer Rating: 100
Target Status: Shields: 0 Hull: 1945131.125"/>

<entry time="792399.631" text="F3/FGT 01 - Stromvok Vector Left.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 5206
Shield Strength: 600000 / 600000
Target Max Range: 8947.25"/>
<entry time="792399.631" text="F3/FGT 01 - Stromvok keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 3520
Max distance to Target: 7040
Distance to Target: 5206"/>
<entry time="792399.686" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15936
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792399.686" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15936"/>
<entry time="792399.795" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15944
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792399.795" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15944"/>
<entry time="792399.904" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15944
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792399.904" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15944"/>
<entry time="792400.013" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15944
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792400.013" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15944"/>
<entry time="792400.122" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15944
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792400.122" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15944"/>
<entry time="792400.23" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15944
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792400.23" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15944"/>
<entry time="792400.339" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15952
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792400.339" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15952"/>
<entry time="792400.448" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15952
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792400.448" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15952"/>
<entry time="792400.502" text="F3/FGT 02 - Stromvok Vector Left.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 6142
Shield Strength: 600000 / 600000
Target Max Range: 8947.25"/>
<entry time="792400.502" text="F3/FGT 02 - Stromvok keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 3520
Max distance to Target: 7040
Distance to Target: 6142"/>
<entry time="792400.557" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15952
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792400.557" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15952"/>
<entry time="792400.666" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15952
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792400.666" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15952"/>
<entry time="792400.775" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15960
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792400.775" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15960"/>
<entry time="792400.829" text="F3/FGT 01 - Stromvok Vector Left.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 5157
Shield Strength: 600000 / 600000
Target Max Range: 8947.25"/>
<entry time="792400.829" text="F3/FGT 01 - Stromvok keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 3520
Max distance to Target: 7040
Distance to Target: 5157"/>
<entry time="792400.884" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15960
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792400.884" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15960"/>
<entry time="792400.993" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15960
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792400.993" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15960"/>
<entry time="792401.102" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15960
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792401.102" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15960"/>
<entry time="792401.211" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15960
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792401.211" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15960"/>

<entry time="792401.265" text="F3/STK 01 - Sucellus fighting PMC Warden Destroyer Taranis OOZ
at Range: 15960 at Quadrant: FCC
Attack Strength: Max: 237311.094 Actual: 284773.313
has 60 combat drones
Defence Officer Rating: 100
Target Status: Shields: 0 Hull: 456777.938"/>

<entry time="792401.32" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15966
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792401.32" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15966"/>
<entry time="792401.428" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15966
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792401.428" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15966"/>
<entry time="792401.537" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15966
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792401.537" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15966"/>
<entry time="792401.592" text="F3/FGT 02 - Stromvok Vector Left.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 6156
Shield Strength: 600000 / 600000
Target Max Range: 8947.25"/>
<entry time="792401.592" text="F3/FGT 02 - Stromvok keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 3520
Max distance to Target: 7040
Distance to Target: 6156"/>
<entry time="792401.646" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15974
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792401.646" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15974"/>

<entry time="792401.701" text="F3/FGT 02 - Stromvok fighting PMC Warden Destroyer Taranis OOZ
at Range: 6158 at Quadrant: FRU
Attack Strength: Max: 38740.801 Actual: 46488.961
has 15 combat drones
Defence Officer Rating: 100
Target Status: Shields: 0 Hull: 1305212.25"/>

<entry time="792401.755" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15974
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792401.755" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15974"/>
<entry time="792401.864" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15974
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792401.864" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15974"/>
<entry time="792401.973" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15974
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792401.973" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15974"/>
<entry time="792402.028" text="F3/FGT 01 - Stromvok Vector Left.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 5111
Shield Strength: 600000 / 600000
Target Max Range: 8947.25"/>
<entry time="792402.028" text="F3/FGT 01 - Stromvok keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 3520
Max distance to Target: 7040
Distance to Target: 5111"/>
<entry time="792402.094" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15982
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792402.094" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15982"/>
<entry time="792402.338" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15982
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792402.338" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15982"/>
<entry time="792402.566" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15982
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792402.566" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15982"/>

<entry time="792402.622" text="F3/FGT 01 - Stromvok fighting PMC Warden Destroyer Taranis OOZ
at Range: 5091 at Quadrant: FCU
Attack Strength: Max: 6403.2 Actual: 7683.84
has 0 combat drones
Defence Officer Rating: 100
Target Status: Shields: 0 Hull: 1282775"/>

<entry time="792402.678" text="F3/FGT 02 - Stromvok Vector Left.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 6169
Shield Strength: 600000 / 600000
Target Max Range: 8947.25"/>
<entry time="792402.678" text="F3/FGT 02 - Stromvok keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 3520
Max distance to Target: 7040
Distance to Target: 6169"/>
<entry time="792402.79" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15990
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792402.79" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15990"/>

<entry time="792402.9" text="F3/FGT 02 - Stromvok fighting PMC Warden Destroyer Taranis OOZ
at Range: 6174 at Quadrant: FRU
Attack Strength: Max: 43543.199 Actual: 52251.84
has 15 combat drones
Defence Officer Rating: 100
Target Status: Shields: 0 Hull: 1223557"/>

<entry time="792403.035" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15990
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792403.035" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15990"/>
<entry time="792403.221" text="F3/FGT 01 - Stromvok Vector Left.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 5069
Shield Strength: 600000 / 600000
Target Max Range: 8947.25"/>
<entry time="792403.221" text="F3/FGT 01 - Stromvok keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 3520
Max distance to Target: 7040
Distance to Target: 5069"/>
<entry time="792403.28" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15998
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792403.28" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15998"/>
<entry time="792403.508" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 15998
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792403.508" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 15998"/>
<entry time="792403.728" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 16004
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792403.728" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 16004"/>
<entry time="792403.728" text="F3/FGT 02 - Stromvok Vector Left.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 6199
Shield Strength: 600000 / 600000
Target Max Range: 8947.25"/>
<entry time="792403.728" text="F3/FGT 02 - Stromvok keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 3520
Max distance to Target: 7040
Distance to Target: 6199"/>
<entry time="792403.947" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 16004
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792403.947" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 16004"/>
<entry time="792404.164" text="F3/STK 01 - Sucellus LR Vector Front.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 16012
Shield Strength: 900000 / 900000
Target Max Range: 8947.25"/>
<entry time="792404.164" text="F3/STK 01 - Sucellus keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9000
Max distance to Target: 18000
Distance to Target: 16012"/>

<!-- One Taranis down, one Taranis and a handful of fighters to go. -->
<entry time="792404.219" text="F3/STK 01 - Sucellus fighting PMC Warden Destroyer Taranis OOZ
at Range: 16012 at Quadrant: ---
Attack Strength: Max: 240211.031 Actual: 288253.25
has 60 combat drones
Defence Officer Rating: 100
Target Status: Shields: 0 Hull: 0"/>
<entry time="792404.327" text="F3/FGT 01 - Stromvok fighting PMC Warden Destroyer Taranis OOZ
at Range: 5016 at Quadrant: FCU
Attack Strength: Max: 6403.2 Actual: 7683.84
has 0 combat drones
Defence Officer Rating: 100
Target Status: Shields: 0 Hull: 1210985.625"/>

<entry time="792404.382" text="F3/FGT 01 - Stromvok Vector Left.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 5013
Shield Strength: 600000 / 600000
Target Max Range: 8947.25"/>
<entry time="792404.382" text="F3/FGT 01 - Stromvok keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 3520
Max distance to Target: 7040
Distance to Target: 5013"/>
<entry time="792404.817" text="F3/FGT 02 - Stromvok Vector Left.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 6194
Shield Strength: 600000 / 600000
Target Max Range: 8947.25"/>
<entry time="792404.817" text="F3/FGT 02 - Stromvok keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 3520
Max distance to Target: 7040
Distance to Target: 6194"/>
<entry time="792405.577" text="F3/FGT 01 - Stromvok Vector Left.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 4973
Shield Strength: 600000 / 600000
Target Max Range: 8947.25"/>
<entry time="792405.577" text="F3/FGT 01 - Stromvok keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 3520
Max distance to Target: 7040
Distance to Target: 4973"/>
<entry time="792405.902" text="F3/FGT 02 - Stromvok Vector Left.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 6167
Shield Strength: 600000 / 600000
Target Max Range: 8947.25"/>
<entry time="792405.902" text="F3/FGT 02 - Stromvok keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 3520
Max distance to Target: 7040
Distance to Target: 6167"/>
<entry time="792406.771" text="F3/FGT 01 - Stromvok Vector Left.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 4944
Shield Strength: 600000 / 600000
Target Max Range: 8947.25"/>
<entry time="792406.771" text="F3/FGT 01 - Stromvok keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 3520
Max distance to Target: 7040
Distance to Target: 4944"/>

<!-- FGT 01 comes under fire and retaliates. -->
<entry time="792406.879" text="F3/FGT 01 - Stromvok fighting PMC Fighter Squadron Triath Sentinel OOZ
at Range: 6067 at Quadrant: FLU
Attack Strength: Max: 1886.6 Actual: 2263.92
has 0 combat drones
Defence Officer Rating: 100
Target Status: Shields: 19542.377 Hull: 33000"/>
<entry time="792406.933" text="F3/FGT 01 - Stromvok fighting PMC Fighter Squadron Triath Vanguard OOZ
at Range: 6489 at Quadrant: FLU
Attack Strength: Max: 1694.852 Actual: 2033.822
has 0 combat drones
Defence Officer Rating: 100
Target Status: Shields: 12097.072 Hull: 27000"/>

<entry time="792406.988" text="F3/FGT 02 - Stromvok Vector Left.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 6151
Shield Strength: 600000 / 600000
Target Max Range: 8947.25"/>
<entry time="792406.988" text="F3/FGT 02 - Stromvok keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 3520
Max distance to Target: 7040
Distance to Target: 6151"/>

<!-- FGT 02 dispatches 3 fighters in quick succession. (within less than a second!) -->
<entry time="792407.746" text="F3/FGT 02 - Stromvok fighting PMC Fighter Squadron Triath Sentinel OOZ
at Range: 5305 at Quadrant: ---
Attack Strength: Max: 39026.602 Actual: 46831.922
has 15 combat drones
Defence Officer Rating: 100
Target Status: Shields: 0 Hull: 0"/>
<entry time="792407.8" text="F3/FGT 02 - Stromvok fighting PMC Fighter Squadron Triath Vanguard OOZ
at Range: 5290 at Quadrant: ---
Attack Strength: Max: 38834.852 Actual: 46601.824
has 15 combat drones
Defence Officer Rating: 100
Target Status: Shields: 0 Hull: 0"/>
<entry time="792407.854" text="F3/FGT 02 - Stromvok fighting PMC Escort Fighter Triath Raider OOZ
at Range: 5772 at Quadrant: ---
Attack Strength: Max: 38667.824 Actual: 46401.391
has 15 combat drones
Defence Officer Rating: 100
Target Status: Shields: 0 Hull: 0"/>

<entry time="792407.962" text="F3/FGT 01 - Stromvok Vector Left.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 4908
Shield Strength: 600000 / 600000
Target Max Range: 8947.25"/>
<entry time="792407.962" text="F3/FGT 01 - Stromvok keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 3520
Max distance to Target: 7040
Distance to Target: 4908"/>
<entry time="792408.07" text="F3/FGT 02 - Stromvok Vector Left.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 6129
Shield Strength: 600000 / 600000
Target Max Range: 8947.25"/>
<entry time="792408.07" text="F3/FGT 02 - Stromvok keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 3520
Max distance to Target: 7040
Distance to Target: 6129"/>

<!-- Its target dispatched, STK 01 acquires the second Taranis, and moves to engage. -->
<entry time="792408.341" text="F3/STK 01 - Sucellus
LR Subordinate of FT(C/E) 01 - Lepton

Target Acquired: PMC Warden Destroyer Taranis
Target DPS: 957400
Distance to Target: 27064
NODE 3"/>

<!-- Frigates maneouvering. I find this useful since they will keep that Taranis from moving against the powerful but fragile Sucellus that's destroying it. -->
<entry time="792409.153" text="F3/FGT 02 - Stromvok Vector Left.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 6120
Shield Strength: 600000 / 600000
Target Max Range: 8947.25"/>
<entry time="792409.153" text="F3/FGT 02 - Stromvok keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 3520
Max distance to Target: 7040
Distance to Target: 6120"/>
<entry time="792409.153" text="F3/FGT 01 - Stromvok Vector Left.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 4858
Shield Strength: 600000 / 600000
Target Max Range: 8947.25"/>
<entry time="792409.153" text="F3/FGT 01 - Stromvok keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 3520
Max distance to Target: 7040
Distance to Target: 4858"/>
<entry time="792410.235" text="F3/FGT 02 - Stromvok Vector Left.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 6131
Shield Strength: 600000 / 600000
Target Max Range: 8947.25"/>
<entry time="792410.235" text="F3/FGT 02 - Stromvok keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 3520
Max distance to Target: 7040
Distance to Target: 6131"/>
<entry time="792410.344" text="F3/FGT 01 - Stromvok Vector Left.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 9941.389
Max distance to Target: 17894.5
Distance to Target: 4829
Shield Strength: 600000 / 600000
Target Max Range: 8947.25"/>
<entry time="792410.344" text="F3/FGT 01 - Stromvok keeping distance.
Attacking PMC Warden Destroyer Taranis
Min distance to Target: 3520
Max distance to Target: 7040
Distance to Target: 4829"/>

<!-- FGT 02 dispatches the rest of the escorts. -->
<entry time="792410.506" text="F3/FGT 02 - Stromvok fighting PMC Escort Fighter Triath Raider OOZ
at Range: 5211 at Quadrant: ---
Attack Strength: Max: 38667.824 Actual: 46401.391
has 15 combat drones
Defence Officer Rating: 100
Target Status: Shields: 0 Hull: 0"/>
<entry time="792410.56" text="F3/FGT 02 - Stromvok fighting PMC Escort Fighter Triath Raider OOZ
at Range: 5278 at Quadrant: ---
Attack Strength: Max: 38667.824 Actual: 46401.391
has 15 combat drones
Defence Officer Rating: 100
Target Status: Shields: 0 Hull: 0"/>
<entry time="792410.614" text="F3/FGT 02 - Stromvok fighting PMC Escort Fighter Triath Raider OOZ
at Range: 5234 at Quadrant: ---
Attack Strength: Max: 38667.824 Actual: 46401.391
has 15 combat drones
Defence Officer Rating: 100
Target Status: Shields: 0 Hull: 0"/>

<!-- The second Taranis is destroyed before STK 01 can get a shot off. -->
<entry time="792412.562" text="F3/STK 01 - Sucellus
Subordinate of FT(C/E) 01 - Lepton

Someone beat us to it.
Acquiring new target."/>

<!-- Clear scope. Zone is clear. -->
<entry time="792415.972" text="F3/STK 01 - Sucellus
Subordinate of FT(C/E) 01 - Lepton

Scanned for targets.
Clear scope.

NODE 3"/>

Return to “X Rebirth - Scripts and Modding”