Module AI_BAI
+ Module AI_Bai
AI -- Provide Battlefield Air Interdiction (bombing).
@@ -598,7 +598,7 @@ is the point where a map object is to be destroyed (like a bridge). -Type AI_BAI
+ Type AI_Bai
Type AI_BAI_ZONE
diff --git a/docs/Documentation/AI_Balancer.html b/docs/Documentation/AI_Balancer.html
index 412cda7ff..c33e7f6ec 100644
--- a/docs/Documentation/AI_Balancer.html
+++ b/docs/Documentation/AI_Balancer.html
@@ -17,11 +17,11 @@
index
-
-
- AI_BAI +
- AI_Bai
- AI_Balancer
- AI_Cap
- AI_Cas -
- AI_Follow +
- AI_Formation
- AI_Patrol
- Account
- Airbase diff --git a/docs/Documentation/AI_Cap.html b/docs/Documentation/AI_Cap.html index c8385d7ae..50a719558 100644 --- a/docs/Documentation/AI_Cap.html +++ b/docs/Documentation/AI_Cap.html @@ -17,11 +17,11 @@ index
-
-
- AI_BAI +
- AI_Bai
- AI_Balancer
- AI_Cap
- AI_Cas -
- AI_Follow +
- AI_Formation
- AI_Patrol
- Account
- Airbase diff --git a/docs/Documentation/AI_Cas.html b/docs/Documentation/AI_Cas.html index 6a7fe4211..d8c87f024 100644 --- a/docs/Documentation/AI_Cas.html +++ b/docs/Documentation/AI_Cas.html @@ -17,11 +17,11 @@ index
-
-
- AI_BAI +
- AI_Bai
- AI_Balancer
- AI_Cap
- AI_Cas -
- AI_Follow +
- AI_Formation
- AI_Patrol
- Account
- Airbase diff --git a/docs/Documentation/AI_Formation.html b/docs/Documentation/AI_Formation.html new file mode 100644 index 000000000..29d15b7eb --- /dev/null +++ b/docs/Documentation/AI_Formation.html @@ -0,0 +1,1935 @@ + + + + + + +
- #AI_FORMATION: Create a formation from several GROUPs. +
- FlightControl: Concept, Design & Programming. + +
- + + #AI_FORMATION + +AI_FORMATION + + +
-
+
+
AI_FORMATION class, extends Fsm#FSM_SET
+ +The #AI_FORMATION class allows you to build large formations, make AI follow a Client#CLIENT (player) leader or a Unit#UNIT (AI) leader.
+ + + +AI_FORMATION construction
+ +Create a new SPAWN object with the AI_FORMATION.New method:
+ +-
+
- Follow#AI_FORMATION.New(): Creates a new AI_FORMATION object from a Group#GROUP for a Client#CLIENT or a Unit#UNIT, with an optional briefing text. +
Initialization methods
+ +The following menus are created within the RADIO MENU of an active unit hosted by a player:
+ +-
+
- AIFormation#AIFORMATION.FormationRandom(): Form a randomized formation (can cause crashed of planes :-)). +
- AIFormation#AIFORMATION.FormationLeftLine(): Form a left line formation. +
- AIFormation#AIFORMATION.FormationRightLine(): Form a right line formation. +
- AIFormation#AIFORMATION.FormationRightWing(): Form a right wing formation. +
- AIFormation#AIFORMATION.FormationLeftWing(): Form a left wing formation. +
- AIFormation#AIFORMATION.FormationCenterLine(): Form a center line formation. +
- AIFormation#AIFORMATION.FormationCenterWing(): Form a center wing formation. +
- AIFormation#AIFORMATION.FormationCenterBoxed(): Form a center boxed formation. +
Usage:
+
+ +-- Declare a new FollowPlanes object as follows: + +-- First find the GROUP object and the CLIENT object. +local FollowUnit = CLIENT:FindByName( "Unit Name" ) -- The Unit Name is the name of the unit flagged with the skill Client in the mission editor. +local FollowGroup = GROUP:FindByName( "Group Name" ) -- The Group Name is the name of the group that will escort the Follow Client. + +-- Now use these 2 objects to construct the new FollowPlanes object. +FollowPlanes = AI_FORMATION:New( FollowUnit, FollowGroup, "Desert", "Welcome to the mission. You are escorted by a plane with code name 'Desert', which can be instructed through the F10 radio menu." ) +
+ - + + #number + +AI_FORMATION.FollowDistance + + +
-
+
+
The current follow distance.
+ +
+ - + + Set#SET_GROUP + +AI_FORMATION.FollowGroupSet + + +
- + + + + +
- + + Menu#MENU_CLIENT + +AI_FORMATION.FollowMenuResumeMission + + +
- + + + + +
- + + #AI_FORMATION.MODE + +AI_FORMATION.FollowMode + + +
-
+
+
The mode the escort is in.
+ +
+ - + + #string + +AI_FORMATION.FollowName + + +
- + + + + +
- + + Scheduler#SCHEDULER + +AI_FORMATION.FollowScheduler + + +
-
+
+
The instance of the SCHEDULER class.
+ +
+ - + + Unit#UNIT + +AI_FORMATION.FollowUnit + + +
- + + + + +
- + + +AI_FORMATION:FormationLeftLine(XStart, YStart, ZStart, ZSpace) + + +
-
+
+
FormationLeftLine Trigger for AI_FORMATION
+ +Parameters
+-
+
-
+
+
+ +#number XStart: +The start position on the X-axis in meters for the first group.
+ -
+
+
+ +#nubmer YStart: +The start position on the Y-axis in meters for the first group.
+ -
+
+
+ +#nubmer ZStart: +The start position on the Z-axis in meters for the first group.
+ -
+
+
+ +#number ZSpace: +The space between groups on the Z-axis in meters for each sequent group.
+
+ -
+
+
- + + +AI_FORMATION:FormationLeftWing(XStart, XSpace, YStart, ZStart, ZSpace) + + +
-
+
+
FormationLeftWing Trigger for AI_FORMATION
+ +Parameters
+-
+
-
+
+
+ +#number XStart: +The start position on the X-axis in meters for the first group.
+ -
+
+
+ +#number XSpace: +The space between groups on the X-axis in meters for each sequent group.
+ -
+
+
+ +#nubmer YStart: +The start position on the Y-axis in meters for the first group.
+ -
+
+
+ +#nubmer ZStart: +The start position on the Z-axis in meters for the first group.
+ -
+
+
+ +#number ZSpace: +The space between groups on the Z-axis in meters for each sequent group.
+
+ -
+
+
- + + +AI_FORMATION:FormationRightLine(XStart, YStart, ZStart, ZSpace) + + +
-
+
+
FormationRightLine Trigger for AI_FORMATION
+ +Parameters
+-
+
-
+
+
+ +#number XStart: +The start position on the X-axis in meters for the first group.
+ -
+
+
+ +#nubmer YStart: +The start position on the Y-axis in meters for the first group.
+ -
+
+
+ +#nubmer ZStart: +The start position on the Z-axis in meters for the first group.
+ -
+
+
+ +#number ZSpace: +The space between groups on the Z-axis in meters for each sequent group.
+
+ -
+
+
- + + +AI_FORMATION:FormationRightWing(XStart, XSpace, YStart, ZStart, ZSpace) + + +
-
+
+
FormationRightWing Trigger for AI_FORMATION
+ +Parameters
+-
+
-
+
+
+ +#number XStart: +The start position on the X-axis in meters for the first group.
+ -
+
+
+ +#number XSpace: +The space between groups on the X-axis in meters for each sequent group.
+ -
+
+
+ +#nubmer YStart: +The start position on the Y-axis in meters for the first group.
+ -
+
+
+ +#nubmer ZStart: +The start position on the Z-axis in meters for the first group.
+ -
+
+
+ +#number ZSpace: +The space between groups on the Z-axis in meters for each sequent group.
+
+ -
+
+
- + + +AI_FORMATION:New(FollowUnit, FollowGroupSet, FollowName, FollowBriefing) + + +
-
+
+
AI_FORMATION class constructor for an AI group
+ +Parameters
+-
+
-
+
+
+ +Unit#UNIT FollowUnit: +The UNIT leading the FolllowGroupSet.
+ -
+
+
+ +Core.Set#SET_GROUP FollowGroupSet: +The group AI escorting the FollowUnit.
+ -
+
+
+ +#string FollowName: +Name of the escort.
+ -
+
+
+ +FollowBriefing:
+
Return value
+ +#AI_FORMATION: +self
+ +
+ -
+
+
- + + +AI_FORMATION:OnAfterFormationLeftLine(FollowGroupSet, From, Event, To, XStart, YStart, ZStart, ZSpace) + + +
-
+
+
FormationLeftLine Handler OnAfter for AI_FORMATION
+ +Parameters
+-
+
-
+
+
+ +Core.Set#SET_GROUP FollowGroupSet: +The group AI escorting the FollowUnit.
+ -
+
+
+ +#string From:
+ -
+
+
+ +#string Event:
+ -
+
+
+ +#string To:
+ -
+
+
+ +#number XStart: +The start position on the X-axis in meters for the first group.
+ -
+
+
+ +#nubmer YStart: +The start position on the Y-axis in meters for the first group.
+ -
+
+
+ +#nubmer ZStart: +The start position on the Z-axis in meters for the first group.
+ -
+
+
+ +#number ZSpace: +The space between groups on the Z-axis in meters for each sequent group.
+
+ -
+
+
- + + +AI_FORMATION:OnAfterFormationLeftWing(FollowGroupSet, From, Event, To, XStart, XSpace, YStart, ZStart, ZSpace) + + +
-
+
+
FormationLeftWing Handler OnAfter for AI_FORMATION
+ +Parameters
+-
+
-
+
+
+ +Core.Set#SET_GROUP FollowGroupSet: +The group AI escorting the FollowUnit.
+ -
+
+
+ +#string From:
+ -
+
+
+ +#string Event:
+ -
+
+
+ +#string To:
+ -
+
+
+ +#number XStart: +The start position on the X-axis in meters for the first group.
+ -
+
+
+ +#number XSpace: +The space between groups on the X-axis in meters for each sequent group.
+ -
+
+
+ +#nubmer YStart: +The start position on the Y-axis in meters for the first group.
+ -
+
+
+ +#nubmer ZStart: +The start position on the Z-axis in meters for the first group.
+ -
+
+
+ +#number ZSpace: +The space between groups on the Z-axis in meters for each sequent group.
+
+ -
+
+
- + + +AI_FORMATION:OnAfterFormationRightLine(FollowGroupSet, From, Event, To, XStart, YStart, ZStart, ZSpace) + + +
-
+
+
FormationRightLine Handler OnAfter for AI_FORMATION
+ +Parameters
+-
+
-
+
+
+ +Core.Set#SET_GROUP FollowGroupSet: +The group AI escorting the FollowUnit.
+ -
+
+
+ +#string From:
+ -
+
+
+ +#string Event:
+ -
+
+
+ +#string To:
+ -
+
+
+ +#number XStart: +The start position on the X-axis in meters for the first group.
+ -
+
+
+ +#nubmer YStart: +The start position on the Y-axis in meters for the first group.
+ -
+
+
+ +#nubmer ZStart: +The start position on the Z-axis in meters for the first group.
+ -
+
+
+ +#number ZSpace: +The space between groups on the Z-axis in meters for each sequent group.
+
+ -
+
+
- + + +AI_FORMATION:OnAfterFormationRightWing(FollowGroupSet, From, Event, To, XStart, XSpace, YStart, ZStart, ZSpace) + + +
-
+
+
FormationRightWing Handler OnAfter for AI_FORMATION
+ +Parameters
+-
+
-
+
+
+ +Core.Set#SET_GROUP FollowGroupSet: +The group AI escorting the FollowUnit.
+ -
+
+
+ +#string From:
+ -
+
+
+ +#string Event:
+ -
+
+
+ +#string To:
+ -
+
+
+ +#number XStart: +The start position on the X-axis in meters for the first group.
+ -
+
+
+ +#number XSpace: +The space between groups on the X-axis in meters for each sequent group.
+ -
+
+
+ +#nubmer YStart: +The start position on the Y-axis in meters for the first group.
+ -
+
+
+ +#nubmer ZStart: +The start position on the Z-axis in meters for the first group.
+ -
+
+
+ +#number ZSpace: +The space between groups on the Z-axis in meters for each sequent group.
+
+ -
+
+
- + + +AI_FORMATION:OnBeforeFormationLeftLine(FollowGroupSet, From, Event, To, XStart, YStart, ZStart, ZSpace) + + +
-
+
+
FormationLeftLine Handler OnBefore for AI_FORMATION
+ +Parameters
+-
+
-
+
+
+ +Core.Set#SET_GROUP FollowGroupSet: +The group AI escorting the FollowUnit.
+ -
+
+
+ +#string From:
+ -
+
+
+ +#string Event:
+ -
+
+
+ +#string To:
+ -
+
+
+ +#number XStart: +The start position on the X-axis in meters for the first group.
+ -
+
+
+ +#nubmer YStart: +The start position on the Y-axis in meters for the first group.
+ -
+
+
+ +#nubmer ZStart: +The start position on the Z-axis in meters for the first group.
+ -
+
+
+ +#number ZSpace: +The space between groups on the Z-axis in meters for each sequent group.
+
Return value
+ +#boolean:
+ + +
+ -
+
+
- + + +AI_FORMATION:OnBeforeFormationLeftWing(FollowGroupSet, From, Event, To, XStart, XSpace, YStart, ZStart, ZSpace) + + +
-
+
+
FormationLeftWing Handler OnBefore for AI_FORMATION
+ +Parameters
+-
+
-
+
+
+ +Core.Set#SET_GROUP FollowGroupSet: +The group AI escorting the FollowUnit.
+ -
+
+
+ +#string From:
+ -
+
+
+ +#string Event:
+ -
+
+
+ +#string To:
+ -
+
+
+ +#number XStart: +The start position on the X-axis in meters for the first group.
+ -
+
+
+ +#number XSpace: +The space between groups on the X-axis in meters for each sequent group.
+ -
+
+
+ +#nubmer YStart: +The start position on the Y-axis in meters for the first group.
+ -
+
+
+ +#nubmer ZStart: +The start position on the Z-axis in meters for the first group.
+ -
+
+
+ +#number ZSpace: +The space between groups on the Z-axis in meters for each sequent group.
+
Return value
+ +#boolean:
+ + +
+ -
+
+
- + + +AI_FORMATION:OnBeforeFormationRightLine(FollowGroupSet, From, Event, To, XStart, YStart, ZStart, ZSpace) + + +
-
+
+
FormationRightLine Handler OnBefore for AI_FORMATION
+ +Parameters
+-
+
-
+
+
+ +Core.Set#SET_GROUP FollowGroupSet: +The group AI escorting the FollowUnit.
+ -
+
+
+ +#string From:
+ -
+
+
+ +#string Event:
+ -
+
+
+ +#string To:
+ -
+
+
+ +#number XStart: +The start position on the X-axis in meters for the first group.
+ -
+
+
+ +#nubmer YStart: +The start position on the Y-axis in meters for the first group.
+ -
+
+
+ +#nubmer ZStart: +The start position on the Z-axis in meters for the first group.
+ -
+
+
+ +#number ZSpace: +The space between groups on the Z-axis in meters for each sequent group.
+
Return value
+ +#boolean:
+ + +
+ -
+
+
- + + +AI_FORMATION:OnBeforeFormationRightWing(FollowGroupSet, From, Event, To, XStart, XSpace, YStart, ZStart, ZSpace) + + +
-
+
+
FormationRightWing Handler OnBefore for AI_FORMATION
+ +Parameters
+-
+
-
+
+
+ +Core.Set#SET_GROUP FollowGroupSet: +The group AI escorting the FollowUnit.
+ -
+
+
+ +#string From:
+ -
+
+
+ +#string Event:
+ -
+
+
+ +#string To:
+ -
+
+
+ +#number XStart: +The start position on the X-axis in meters for the first group.
+ -
+
+
+ +#number XSpace: +The space between groups on the X-axis in meters for each sequent group.
+ -
+
+
+ +#nubmer YStart: +The start position on the Y-axis in meters for the first group.
+ -
+
+
+ +#nubmer ZStart: +The start position on the Z-axis in meters for the first group.
+ -
+
+
+ +#number ZSpace: +The space between groups on the Z-axis in meters for each sequent group.
+
Return value
+ +#boolean:
+ + +
+ -
+
+
- + + DCSTypes#AI.Option.Air.val.REACTION_ON_THREAT + +AI_FORMATION.OptionReactionOnThreat + + +
-
+
+
Which REACTIONONTHREAT is set to the FollowGroup.
+ +
+ - + + #boolean + +AI_FORMATION.ReportTargets + + +
-
+
+
If true, nearby targets are reported.
+ +
+ - + + +AI_FORMATION.SmokeDirectionVector + + +
- + + + + +
- + + +AI_FORMATION:TestSmokeDirectionVector(SmokeDirection) + + +
-
+
+
This function is for test, it will put on the frequency of the FollowScheduler a red smoke at the direction vector calculated for the escort to fly to.
+ + +This allows to visualize where the escort is flying to.
+ +Parameter
+-
+
-
+
+
+ +#boolean SmokeDirection: +If true, then the direction vector will be smoked.
+
Return value
+ + + + +
+ -
+
+
- + + +AI_FORMATION:__FormationLeftLine(Delay, XStart, YStart, ZStart, ZSpace) + + +
-
+
+
FormationLeftLine Asynchronous Trigger for AI_FORMATION
+ +Parameters
+-
+
-
+
+
+ +#number Delay:
+ -
+
+
+ +#number XStart: +The start position on the X-axis in meters for the first group.
+ -
+
+
+ +#nubmer YStart: +The start position on the Y-axis in meters for the first group.
+ -
+
+
+ +#nubmer ZStart: +The start position on the Z-axis in meters for the first group.
+ -
+
+
+ +#number ZSpace: +The space between groups on the Z-axis in meters for each sequent group.
+
+ -
+
+
- + + +AI_FORMATION:__FormationLeftWing(Delay, XStart, XSpace, YStart, ZStart, ZSpace) + + +
-
+
+
FormationLeftWing Asynchronous Trigger for AI_FORMATION
+ +Parameters
+-
+
-
+
+
+ +#number Delay:
+ -
+
+
+ +#number XStart: +The start position on the X-axis in meters for the first group.
+ -
+
+
+ +#number XSpace: +The space between groups on the X-axis in meters for each sequent group.
+ -
+
+
+ +#nubmer YStart: +The start position on the Y-axis in meters for the first group.
+ -
+
+
+ +#nubmer ZStart: +The start position on the Z-axis in meters for the first group.
+ -
+
+
+ +#number ZSpace: +The space between groups on the Z-axis in meters for each sequent group.
+
+ -
+
+
- + + +AI_FORMATION:__FormationRightLine(Delay, XStart, YStart, ZStart, ZSpace) + + +
-
+
+
FormationRightLine Asynchronous Trigger for AI_FORMATION
+ +Parameters
+-
+
-
+
+
+ +#number Delay:
+ -
+
+
+ +#number XStart: +The start position on the X-axis in meters for the first group.
+ -
+
+
+ +#nubmer YStart: +The start position on the Y-axis in meters for the first group.
+ -
+
+
+ +#nubmer ZStart: +The start position on the Z-axis in meters for the first group.
+ -
+
+
+ +#number ZSpace: +The space between groups on the Z-axis in meters for each sequent group.
+
+ -
+
+
- + + +AI_FORMATION:__FormationRightWing(Delay, XStart, XSpace, YStart, ZStart, ZSpace) + + +
-
+
+
FormationRightWing Asynchronous Trigger for AI_FORMATION
+ +Parameters
+-
+
-
+
+
+ +#number Delay:
+ -
+
+
+ +#number XStart: +The start position on the X-axis in meters for the first group.
+ -
+
+
+ +#number XSpace: +The space between groups on the X-axis in meters for each sequent group.
+ -
+
+
+ +#nubmer YStart: +The start position on the Y-axis in meters for the first group.
+ -
+
+
+ +#nubmer ZStart: +The start position on the Z-axis in meters for the first group.
+ -
+
+
+ +#number ZSpace: +The space between groups on the Z-axis in meters for each sequent group.
+
+ -
+
+
- + + +AI_FORMATION:onafterFormationLeftLine(FollowGroupSet, From, Event, To, XStart, YStart, ZStart, ZSpace) + + +
-
+
+
+
+
Parameters
+-
+
-
+
+
+ +FollowGroupSet:
+ -
+
+
+ +From:
+ -
+
+
+ +Event:
+ -
+
+
+ +To:
+ -
+
+
+ +XStart:
+ -
+
+
+ +YStart:
+ -
+
+
+ +ZStart:
+ -
+
+
+ +ZSpace:
+
+ -
+
+
- + + +AI_FORMATION:onafterFormationLeftWing(FollowGroupSet, From, Event, To, XStart, XSpace, YStart, ZStart, ZSpace) + + +
-
+
+
+
+
Parameters
+-
+
-
+
+
+ +FollowGroupSet:
+ -
+
+
+ +From:
+ -
+
+
+ +Event:
+ -
+
+
+ +To:
+ -
+
+
+ +XStart:
+ -
+
+
+ +XSpace:
+ -
+
+
+ +YStart:
+ -
+
+
+ +ZStart:
+ -
+
+
+ +ZSpace:
+
+ -
+
+
- + + +AI_FORMATION:onafterFormationRightLine(FollowGroupSet, From, Event, To, XStart, YStart, ZStart, ZSpace) + + +
-
+
+
+
+
Parameters
+-
+
-
+
+
+ +FollowGroupSet:
+ -
+
+
+ +From:
+ -
+
+
+ +Event:
+ -
+
+
+ +To:
+ -
+
+
+ +XStart:
+ -
+
+
+ +YStart:
+ -
+
+
+ +ZStart:
+ -
+
+
+ +ZSpace:
+
+ -
+
+
- + + +AI_FORMATION:onafterFormationRightWing(FollowGroupSet, From, Event, To, XStart, XSpace, YStart, ZStart, ZSpace) + + +
-
+
+
+
+
Parameters
+-
+
-
+
+
+ +FollowGroupSet:
+ -
+
+
+ +From:
+ -
+
+
+ +Event:
+ -
+
+
+ +To:
+ -
+
+
+ +XStart:
+ -
+
+
+ +XSpace:
+ -
+
+
+ +YStart:
+ -
+
+
+ +ZStart:
+ -
+
+
+ +ZSpace:
+
+ -
+
+
- + + +AI_FORMATION:onenterFollowing(FollowGroupSet) + + +
-
+
+
+
+
Parameter
+-
+
-
+
+
+ +FollowGroupSet:
+
+ -
+
+
- + + #number + +AI_FORMATION.MODE.FOLLOW + + +
- + + + + +
- + + #number + +AI_FORMATION.MODE.MISSION + + +
- + + + + +
- + + #Distance + +MENUPARAM.ParamDistance + + +
- + + + + +
- + + #function + +MENUPARAM.ParamFunction + + +
- + + + + +
- + + #string + +MENUPARAM.ParamMessage + + +
- + + + + +
- + + #AI_FORMATION + +MENUPARAM.ParamSelf + + +
- + + + + +
- AI_BAI +
- AI_Bai
- AI_Balancer
- AI_Cap
- AI_Cas -
- AI_Follow +
- AI_Formation
- AI_Patrol
- Account
- Airbase @@ -953,9 +953,6 @@ Use the method AIPATROLZONE.M - -
- AI_BAI +
- AI_Bai
- AI_Balancer
- AI_Cap
- AI_Cas -
- AI_Follow +
- AI_Formation
- AI_Patrol
- Account
- Airbase diff --git a/docs/Documentation/Airbase.html b/docs/Documentation/Airbase.html index d34c31236..dd2f0550d 100644 --- a/docs/Documentation/Airbase.html +++ b/docs/Documentation/Airbase.html @@ -17,11 +17,11 @@ index
- AI_BAI +
- AI_Bai
- AI_Balancer
- AI_Cap
- AI_Cas -
- AI_Follow +
- AI_Formation
- AI_Patrol
- Account
- Airbase diff --git a/docs/Documentation/AirbasePolice.html b/docs/Documentation/AirbasePolice.html index 4b588bf42..9e5241f98 100644 --- a/docs/Documentation/AirbasePolice.html +++ b/docs/Documentation/AirbasePolice.html @@ -17,11 +17,11 @@ index
- AI_BAI +
- AI_Bai
- AI_Balancer
- AI_Cap
- AI_Cas -
- AI_Follow +
- AI_Formation
- AI_Patrol
- Account
- Airbase diff --git a/docs/Documentation/Assign.html b/docs/Documentation/Assign.html index 32c34434e..24c1ac926 100644 --- a/docs/Documentation/Assign.html +++ b/docs/Documentation/Assign.html @@ -17,11 +17,11 @@ index
- AI_BAI +
- AI_Bai
- AI_Balancer
- AI_Cap
- AI_Cas -
- AI_Follow +
- AI_Formation
- AI_Patrol
- Account
- Airbase diff --git a/docs/Documentation/Base.html b/docs/Documentation/Base.html index 78561eaa0..13e421b67 100644 --- a/docs/Documentation/Base.html +++ b/docs/Documentation/Base.html @@ -17,11 +17,11 @@ index
- AI_BAI +
- AI_Bai
- AI_Balancer
- AI_Cap
- AI_Cas -
- AI_Follow +
- AI_Formation
- AI_Patrol
- Account
- Airbase diff --git a/docs/Documentation/Cargo.html b/docs/Documentation/Cargo.html index 0cf77d270..895d2e06e 100644 --- a/docs/Documentation/Cargo.html +++ b/docs/Documentation/Cargo.html @@ -17,11 +17,11 @@ index
- AI_BAI +
- AI_Bai
- AI_Balancer
- AI_Cap
- AI_Cas -
- AI_Follow +
- AI_Formation
- AI_Patrol
- Account
- Airbase diff --git a/docs/Documentation/CleanUp.html b/docs/Documentation/CleanUp.html index 61f906774..fd65272a9 100644 --- a/docs/Documentation/CleanUp.html +++ b/docs/Documentation/CleanUp.html @@ -17,11 +17,11 @@ index
- AI_BAI +
- AI_Bai
- AI_Balancer
- AI_Cap
- AI_Cas -
- AI_Follow +
- AI_Formation
- AI_Patrol
- Account
- Airbase diff --git a/docs/Documentation/Client.html b/docs/Documentation/Client.html index ee544737e..bb434479a 100644 --- a/docs/Documentation/Client.html +++ b/docs/Documentation/Client.html @@ -17,11 +17,11 @@ index
- AI_BAI +
- AI_Bai
- AI_Balancer
- AI_Cap
- AI_Cas -
- AI_Follow +
- AI_Formation
- AI_Patrol
- Account
- Airbase diff --git a/docs/Documentation/CommandCenter.html b/docs/Documentation/CommandCenter.html index 68874808d..2b0eff299 100644 --- a/docs/Documentation/CommandCenter.html +++ b/docs/Documentation/CommandCenter.html @@ -17,11 +17,11 @@ index
- AI_BAI +
- AI_Bai
- AI_Balancer
- AI_Cap
- AI_Cas -
- AI_Follow +
- AI_Formation
- AI_Patrol
- Account
- Airbase diff --git a/docs/Documentation/Controllable.html b/docs/Documentation/Controllable.html index 393e9510c..f5b5395af 100644 --- a/docs/Documentation/Controllable.html +++ b/docs/Documentation/Controllable.html @@ -17,11 +17,11 @@ index
- AI_BAI +
- AI_Bai
- AI_Balancer
- AI_Cap
- AI_Cas -
- AI_Follow +
- AI_Formation
- AI_Patrol
- Account
- Airbase diff --git a/docs/Documentation/DCSAirbase.html b/docs/Documentation/DCSAirbase.html index 1f853ff13..2af4af8a7 100644 --- a/docs/Documentation/DCSAirbase.html +++ b/docs/Documentation/DCSAirbase.html @@ -17,11 +17,11 @@ index
- AI_BAI +
- AI_Bai
- AI_Balancer
- AI_Cap
- AI_Cas -
- AI_Follow +
- AI_Formation
- AI_Patrol
- Account
- Airbase diff --git a/docs/Documentation/DCSCoalitionObject.html b/docs/Documentation/DCSCoalitionObject.html index e4ff82a64..db3a4f6e7 100644 --- a/docs/Documentation/DCSCoalitionObject.html +++ b/docs/Documentation/DCSCoalitionObject.html @@ -17,11 +17,11 @@ index
- AI_BAI +
- AI_Bai
- AI_Balancer
- AI_Cap
- AI_Cas -
- AI_Follow +
- AI_Formation
- AI_Patrol
- Account
- Airbase diff --git a/docs/Documentation/DCSCommand.html b/docs/Documentation/DCSCommand.html index ef4f5e1e3..ba3c6f68b 100644 --- a/docs/Documentation/DCSCommand.html +++ b/docs/Documentation/DCSCommand.html @@ -17,11 +17,11 @@ index
- AI_BAI +
- AI_Bai
- AI_Balancer
- AI_Cap
- AI_Cas -
- AI_Follow +
- AI_Formation
- AI_Patrol
- Account
- Airbase diff --git a/docs/Documentation/DCSController.html b/docs/Documentation/DCSController.html index e52b918e6..7bb78517e 100644 --- a/docs/Documentation/DCSController.html +++ b/docs/Documentation/DCSController.html @@ -17,11 +17,11 @@ index
- AI_BAI +
- AI_Bai
- AI_Balancer
- AI_Cap
- AI_Cas -
- AI_Follow +
- AI_Formation
- AI_Patrol
- Account
- Airbase diff --git a/docs/Documentation/DCSGroup.html b/docs/Documentation/DCSGroup.html index bc74ae421..0e46e13f7 100644 --- a/docs/Documentation/DCSGroup.html +++ b/docs/Documentation/DCSGroup.html @@ -17,11 +17,11 @@ index
- AI_BAI +
- AI_Bai
- AI_Balancer
- AI_Cap
- AI_Cas -
- AI_Follow +
- AI_Formation
- AI_Patrol
- Account
- Airbase diff --git a/docs/Documentation/DCSObject.html b/docs/Documentation/DCSObject.html index ffe8cd55c..16726539b 100644 --- a/docs/Documentation/DCSObject.html +++ b/docs/Documentation/DCSObject.html @@ -17,11 +17,11 @@ index
- AI_BAI +
- AI_Bai
- AI_Balancer
- AI_Cap
- AI_Cas -
- AI_Follow +
- AI_Formation
- AI_Patrol
- Account
- Airbase diff --git a/docs/Documentation/DCSTask.html b/docs/Documentation/DCSTask.html index a398a5d0d..2c2a21004 100644 --- a/docs/Documentation/DCSTask.html +++ b/docs/Documentation/DCSTask.html @@ -17,11 +17,11 @@ index
- AI_BAI +
- AI_Bai
- AI_Balancer
- AI_Cap
- AI_Cas -
- AI_Follow +
- AI_Formation
- AI_Patrol
- Account
- Airbase diff --git a/docs/Documentation/DCSTypes.html b/docs/Documentation/DCSTypes.html index d6eaf64ad..09159ce8a 100644 --- a/docs/Documentation/DCSTypes.html +++ b/docs/Documentation/DCSTypes.html @@ -17,11 +17,11 @@ index
- AI_BAI +
- AI_Bai
- AI_Balancer
- AI_Cap
- AI_Cas -
- AI_Follow +
- AI_Formation
- AI_Patrol
- Account
- Airbase diff --git a/docs/Documentation/DCSUnit.html b/docs/Documentation/DCSUnit.html index 4d46d0b27..313ba5531 100644 --- a/docs/Documentation/DCSUnit.html +++ b/docs/Documentation/DCSUnit.html @@ -17,11 +17,11 @@ index
- AI_BAI +
- AI_Bai
- AI_Balancer
- AI_Cap
- AI_Cas -
- AI_Follow +
- AI_Formation
- AI_Patrol
- Account
- Airbase diff --git a/docs/Documentation/DCSVec3.html b/docs/Documentation/DCSVec3.html index 1bc44128c..c06367600 100644 --- a/docs/Documentation/DCSVec3.html +++ b/docs/Documentation/DCSVec3.html @@ -17,11 +17,11 @@ index
- AI_BAI +
- AI_Bai
- AI_Balancer
- AI_Cap
- AI_Cas -
- AI_Follow +
- AI_Formation
- AI_Patrol
- Account
- Airbase diff --git a/docs/Documentation/DCSWorld.html b/docs/Documentation/DCSWorld.html index 63d533748..3ac33e80e 100644 --- a/docs/Documentation/DCSWorld.html +++ b/docs/Documentation/DCSWorld.html @@ -17,11 +17,11 @@ index
- AI_BAI +
- AI_Bai
- AI_Balancer
- AI_Cap
- AI_Cas -
- AI_Follow +
- AI_Formation
- AI_Patrol
- Account
- Airbase diff --git a/docs/Documentation/DCSZone.html b/docs/Documentation/DCSZone.html index 43bde0465..fcfe71bef 100644 --- a/docs/Documentation/DCSZone.html +++ b/docs/Documentation/DCSZone.html @@ -17,11 +17,11 @@ index
- AI_BAI +
- AI_Bai
- AI_Balancer
- AI_Cap
- AI_Cas -
- AI_Follow +
- AI_Formation
- AI_Patrol
- Account
- Airbase diff --git a/docs/Documentation/DCScountry.html b/docs/Documentation/DCScountry.html index e8ac8b2ac..36b19f191 100644 --- a/docs/Documentation/DCScountry.html +++ b/docs/Documentation/DCScountry.html @@ -17,11 +17,11 @@ index
- AI_BAI +
- AI_Bai
- AI_Balancer
- AI_Cap
- AI_Cas -
- AI_Follow +
- AI_Formation
- AI_Patrol
- Account
- Airbase diff --git a/docs/Documentation/DCStimer.html b/docs/Documentation/DCStimer.html index a58433496..035f72735 100644 --- a/docs/Documentation/DCStimer.html +++ b/docs/Documentation/DCStimer.html @@ -17,11 +17,11 @@ index
- AI_BAI +
- AI_Bai
- AI_Balancer
- AI_Cap
- AI_Cas -
- AI_Follow +
- AI_Formation
- AI_Patrol
- Account
- Airbase diff --git a/docs/Documentation/DCStrigger.html b/docs/Documentation/DCStrigger.html index 032bffd19..3c76851aa 100644 --- a/docs/Documentation/DCStrigger.html +++ b/docs/Documentation/DCStrigger.html @@ -17,11 +17,11 @@ index
- AI_BAI +
- AI_Bai
- AI_Balancer
- AI_Cap
- AI_Cas -
- AI_Follow +
- AI_Formation
- AI_Patrol
- Account
- Airbase diff --git a/docs/Documentation/Database.html b/docs/Documentation/Database.html index 08030f60c..1953c3339 100644 --- a/docs/Documentation/Database.html +++ b/docs/Documentation/Database.html @@ -17,11 +17,11 @@ index
- AI_BAI +
- AI_Bai
- AI_Balancer
- AI_Cap
- AI_Cas -
- AI_Follow +
- AI_Formation
- AI_Patrol
- Account
- Airbase @@ -1830,7 +1830,6 @@ self
- - #number DATABASE.UNITS_Position diff --git a/docs/Documentation/Designate.html b/docs/Documentation/Designate.html index cf1f82b99..d8950ff85 100644 --- a/docs/Documentation/Designate.html +++ b/docs/Documentation/Designate.html @@ -17,11 +17,11 @@ index
- AI_BAI +
- AI_Bai
- AI_Balancer
- AI_Cap
- AI_Cas -
- AI_Follow +
- AI_Formation
- AI_Patrol
- Account
- Airbase @@ -892,6 +892,7 @@ function below will use the range 1-7 just in case
- + DESIGNATE.LaserCodes diff --git a/docs/Documentation/Detection.html b/docs/Documentation/Detection.html index c21d35a8d..b60e01592 100644 --- a/docs/Documentation/Detection.html +++ b/docs/Documentation/Detection.html @@ -17,11 +17,11 @@ index
- AI_BAI +
- AI_Bai
- AI_Balancer
- AI_Cap
- AI_Cas -
- AI_Follow +
- AI_Formation
- AI_Patrol
- Account
- Airbase @@ -2476,7 +2476,7 @@ The index of the DetectedItem.
- - #number + DETECTION_BASE.DetectionInterval diff --git a/docs/Documentation/DetectionManager.html b/docs/Documentation/DetectionManager.html index 8bd62d1ba..dc5177289 100644 --- a/docs/Documentation/DetectionManager.html +++ b/docs/Documentation/DetectionManager.html @@ -17,11 +17,11 @@ index
- AI_BAI +
- AI_Bai
- AI_Balancer
- AI_Cap
- AI_Cas -
- AI_Follow +
- AI_Formation
- AI_Patrol
- Account
- Airbase diff --git a/docs/Documentation/Escort.html b/docs/Documentation/Escort.html index 843d53fce..39517ecf7 100644 --- a/docs/Documentation/Escort.html +++ b/docs/Documentation/Escort.html @@ -17,11 +17,11 @@ index
- AI_BAI +
- AI_Bai
- AI_Balancer
- AI_Cap
- AI_Cas -
- AI_Follow +
- AI_Formation
- AI_Patrol
- Account
- Airbase diff --git a/docs/Documentation/Event.html b/docs/Documentation/Event.html index 6970fd5c1..8c2d52ea1 100644 --- a/docs/Documentation/Event.html +++ b/docs/Documentation/Event.html @@ -17,11 +17,11 @@ index
- AI_BAI +
- AI_Bai
- AI_Balancer
- AI_Cap
- AI_Cas -
- AI_Follow +
- AI_Formation
- AI_Patrol
- Account
- Airbase diff --git a/docs/Documentation/Fsm.html b/docs/Documentation/Fsm.html index 2807d80e3..c8c189c3e 100644 --- a/docs/Documentation/Fsm.html +++ b/docs/Documentation/Fsm.html @@ -17,11 +17,11 @@ index
- AI_BAI +
- AI_Bai
- AI_Balancer
- AI_Cap
- AI_Cas -
- AI_Follow +
- AI_Formation
- AI_Patrol
- Account
- Airbase @@ -1624,7 +1624,7 @@ A string defining the start state.
- - + #string FSM._StartState @@ -1923,7 +1923,6 @@ A string defining the start state.
- - FSM.current diff --git a/docs/Documentation/Group.html b/docs/Documentation/Group.html index d79e8fadd..061abb9d6 100644 --- a/docs/Documentation/Group.html +++ b/docs/Documentation/Group.html @@ -17,11 +17,11 @@ index
- AI_BAI +
- AI_Bai
- AI_Balancer
- AI_Cap
- AI_Cas -
- AI_Follow +
- AI_Formation
- AI_Patrol
- Account
- Airbase diff --git a/docs/Documentation/Identifiable.html b/docs/Documentation/Identifiable.html index bae17f2a7..7db00fa30 100644 --- a/docs/Documentation/Identifiable.html +++ b/docs/Documentation/Identifiable.html @@ -17,11 +17,11 @@ index
- AI_BAI +
- AI_Bai
- AI_Balancer
- AI_Cap
- AI_Cas -
- AI_Follow +
- AI_Formation
- AI_Patrol
- Account
- Airbase diff --git a/docs/Documentation/Menu.html b/docs/Documentation/Menu.html index 52ec6351c..0bc1432fb 100644 --- a/docs/Documentation/Menu.html +++ b/docs/Documentation/Menu.html @@ -17,11 +17,11 @@ index
- AI_BAI +
- AI_Bai
- AI_Balancer
- AI_Cap
- AI_Cas -
- AI_Follow +
- AI_Formation
- AI_Patrol
- Account
- Airbase diff --git a/docs/Documentation/Message.html b/docs/Documentation/Message.html index 98d9b1abb..2855c184e 100644 --- a/docs/Documentation/Message.html +++ b/docs/Documentation/Message.html @@ -17,11 +17,11 @@ index
- AI_BAI +
- AI_Bai
- AI_Balancer
- AI_Cap
- AI_Cas -
- AI_Follow +
- AI_Formation
- AI_Patrol
- Account
- Airbase diff --git a/docs/Documentation/MissileTrainer.html b/docs/Documentation/MissileTrainer.html index 577940307..69072fd29 100644 --- a/docs/Documentation/MissileTrainer.html +++ b/docs/Documentation/MissileTrainer.html @@ -17,11 +17,11 @@ index
- AI_BAI +
- AI_Bai
- AI_Balancer
- AI_Cap
- AI_Cas -
- AI_Follow +
- AI_Formation
- AI_Patrol
- Account
- Airbase diff --git a/docs/Documentation/Mission.html b/docs/Documentation/Mission.html index 7a2b74f9f..22c3cdf97 100644 --- a/docs/Documentation/Mission.html +++ b/docs/Documentation/Mission.html @@ -17,11 +17,11 @@ index
- AI_BAI +
- AI_Bai
- AI_Balancer
- AI_Cap
- AI_Cas -
- AI_Follow +
- AI_Formation
- AI_Patrol
- Account
- Airbase diff --git a/docs/Documentation/Movement.html b/docs/Documentation/Movement.html index eb07aae68..45c002a4d 100644 --- a/docs/Documentation/Movement.html +++ b/docs/Documentation/Movement.html @@ -17,11 +17,11 @@ index
- AI_BAI +
- AI_Bai
- AI_Balancer
- AI_Cap
- AI_Cas -
- AI_Follow +
- AI_Formation
- AI_Patrol
- Account
- Airbase @@ -215,7 +215,6 @@ on defined intervals (currently every minute).
-
- #number
MOVEMENT.AliveUnits
@@ -224,9 +223,6 @@ on defined intervals (currently every minute).
-
-
Contains the counter how many units are currently alive
- - AI_BAI +
- AI_Bai
- AI_Balancer
- AI_Cap
- AI_Cas -
- AI_Follow +
- AI_Formation
- AI_Patrol
- Account
- Airbase diff --git a/docs/Documentation/Point.html b/docs/Documentation/Point.html index 1c346e107..6da90c9fd 100644 --- a/docs/Documentation/Point.html +++ b/docs/Documentation/Point.html @@ -17,11 +17,11 @@ index
- AI_BAI +
- AI_Bai
- AI_Balancer
- AI_Cap
- AI_Cas -
- AI_Follow +
- AI_Formation
- AI_Patrol
- Account
- Airbase diff --git a/docs/Documentation/Positionable.html b/docs/Documentation/Positionable.html index e1c48ea50..196457991 100644 --- a/docs/Documentation/Positionable.html +++ b/docs/Documentation/Positionable.html @@ -17,11 +17,11 @@ index
- AI_BAI +
- AI_Bai
- AI_Balancer
- AI_Cap
- AI_Cas -
- AI_Follow +
- AI_Formation
- AI_Patrol
- Account
- Airbase diff --git a/docs/Documentation/Process_JTAC.html b/docs/Documentation/Process_JTAC.html index 9d4822e4e..1dbc2c736 100644 --- a/docs/Documentation/Process_JTAC.html +++ b/docs/Documentation/Process_JTAC.html @@ -17,11 +17,11 @@ index
- AI_BAI +
- AI_Bai
- AI_Balancer
- AI_Cap
- AI_Cas -
- AI_Follow +
- AI_Formation
- AI_Patrol
- Account
- Airbase diff --git a/docs/Documentation/Process_Pickup.html b/docs/Documentation/Process_Pickup.html index 89446f104..2a3293148 100644 --- a/docs/Documentation/Process_Pickup.html +++ b/docs/Documentation/Process_Pickup.html @@ -17,11 +17,11 @@ index
- AI_BAI +
- AI_Bai
- AI_Balancer
- AI_Cap
- AI_Cas -
- AI_Follow +
- AI_Formation
- AI_Patrol
- Account
- Airbase diff --git a/docs/Documentation/Radio.html b/docs/Documentation/Radio.html index b6981c8fc..540e4f3b5 100644 --- a/docs/Documentation/Radio.html +++ b/docs/Documentation/Radio.html @@ -17,11 +17,11 @@ index
- AI_BAI +
- AI_Bai
- AI_Balancer
- AI_Cap
- AI_Cas -
- AI_Follow +
- AI_Formation
- AI_Patrol
- Account
- Airbase diff --git a/docs/Documentation/Route.html b/docs/Documentation/Route.html index e4083d4f2..324486bf7 100644 --- a/docs/Documentation/Route.html +++ b/docs/Documentation/Route.html @@ -17,11 +17,11 @@ index
- AI_BAI +
- AI_Bai
- AI_Balancer
- AI_Cap
- AI_Cas -
- AI_Follow +
- AI_Formation
- AI_Patrol
- Account
- Airbase diff --git a/docs/Documentation/Scenery.html b/docs/Documentation/Scenery.html index 1e7bd21b3..cb14ba875 100644 --- a/docs/Documentation/Scenery.html +++ b/docs/Documentation/Scenery.html @@ -17,11 +17,11 @@ index
- AI_BAI +
- AI_Bai
- AI_Balancer
- AI_Cap
- AI_Cas -
- AI_Follow +
- AI_Formation
- AI_Patrol
- Account
- Airbase diff --git a/docs/Documentation/ScheduleDispatcher.html b/docs/Documentation/ScheduleDispatcher.html index 92e5c48f6..7416d024b 100644 --- a/docs/Documentation/ScheduleDispatcher.html +++ b/docs/Documentation/ScheduleDispatcher.html @@ -17,11 +17,11 @@ index
- AI_BAI +
- AI_Bai
- AI_Balancer
- AI_Cap
- AI_Cas -
- AI_Follow +
- AI_Formation
- AI_Patrol
- Account
- Airbase diff --git a/docs/Documentation/Scheduler.html b/docs/Documentation/Scheduler.html index 99a06b956..a6cc977ad 100644 --- a/docs/Documentation/Scheduler.html +++ b/docs/Documentation/Scheduler.html @@ -17,11 +17,11 @@ index
- AI_BAI +
- AI_Bai
- AI_Balancer
- AI_Cap
- AI_Cas -
- AI_Follow +
- AI_Formation
- AI_Patrol
- Account
- Airbase diff --git a/docs/Documentation/Scoring.html b/docs/Documentation/Scoring.html index 6254b8f94..bfa65d476 100644 --- a/docs/Documentation/Scoring.html +++ b/docs/Documentation/Scoring.html @@ -17,11 +17,11 @@ index
- AI_BAI +
- AI_Bai
- AI_Balancer
- AI_Cap
- AI_Cas -
- AI_Follow +
- AI_Formation
- AI_Patrol
- Account
- Airbase diff --git a/docs/Documentation/Sead.html b/docs/Documentation/Sead.html index 091a3a22c..7d90b36be 100644 --- a/docs/Documentation/Sead.html +++ b/docs/Documentation/Sead.html @@ -17,11 +17,11 @@ index
- AI_BAI +
- AI_Bai
- AI_Balancer
- AI_Cap
- AI_Cas -
- AI_Follow +
- AI_Formation
- AI_Patrol
- Account
- Airbase diff --git a/docs/Documentation/Set.html b/docs/Documentation/Set.html index 0e9cfb62f..16bb26c4b 100644 --- a/docs/Documentation/Set.html +++ b/docs/Documentation/Set.html @@ -17,11 +17,11 @@ index
- AI_BAI +
- AI_Bai
- AI_Balancer
- AI_Cap
- AI_Cas -
- AI_Follow +
- AI_Formation
- AI_Patrol
- Account
- Airbase diff --git a/docs/Documentation/Smoke.html b/docs/Documentation/Smoke.html index 68e79e26c..f025f8ba8 100644 --- a/docs/Documentation/Smoke.html +++ b/docs/Documentation/Smoke.html @@ -17,11 +17,11 @@ index
- AI_BAI +
- AI_Bai
- AI_Balancer
- AI_Cap
- AI_Cas -
- AI_Follow +
- AI_Formation
- AI_Patrol
- Account
- Airbase diff --git a/docs/Documentation/Spawn.html b/docs/Documentation/Spawn.html index 0d752635f..b120d2a28 100644 --- a/docs/Documentation/Spawn.html +++ b/docs/Documentation/Spawn.html @@ -17,11 +17,11 @@ index
- AI_BAI +
- AI_Bai
- AI_Balancer
- AI_Cap
- AI_Cas -
- AI_Follow +
- AI_Formation
- AI_Patrol
- Account
- Airbase @@ -772,12 +772,6 @@ and any spaces before and after the resulting name are removed.
- - + #number SPAWN.SpawnMaxGroups @@ -2601,7 +2601,7 @@ when nothing was spawned.
- - + #number SPAWN.SpawnMaxUnitsAlive @@ -3519,20 +3519,6 @@ True = Continue Scheduler
- - - - -SPAWN.uncontrolled - - -
- - - -
- AI_BAI +
- AI_Bai
- AI_Balancer
- AI_Cap
- AI_Cas -
- AI_Follow +
- AI_Formation
- AI_Patrol
- Account
- Airbase @@ -446,6 +446,7 @@ ptional) The name of the new static.
- + #number SPAWNSTATIC.SpawnIndex diff --git a/docs/Documentation/Spot.html b/docs/Documentation/Spot.html index 5ddfdc1f0..5befab5b3 100644 --- a/docs/Documentation/Spot.html +++ b/docs/Documentation/Spot.html @@ -17,11 +17,11 @@ index
- AI_BAI +
- AI_Bai
- AI_Balancer
- AI_Cap
- AI_Cas -
- AI_Follow +
- AI_Formation
- AI_Patrol
- Account
- Airbase @@ -763,7 +763,6 @@ true if it is lasing
- - SPOT.ScheduleID @@ -777,7 +776,6 @@ true if it is lasing
- - SPOT.SpotIR @@ -791,7 +789,6 @@ true if it is lasing
- - SPOT.SpotLaser @@ -805,7 +802,6 @@ true if it is lasing
- - SPOT.Target diff --git a/docs/Documentation/Static.html b/docs/Documentation/Static.html index 60dac6185..fbd841089 100644 --- a/docs/Documentation/Static.html +++ b/docs/Documentation/Static.html @@ -17,11 +17,11 @@ index
- AI_BAI +
- AI_Bai
- AI_Balancer
- AI_Cap
- AI_Cas -
- AI_Follow +
- AI_Formation
- AI_Patrol
- Account
- Airbase diff --git a/docs/Documentation/StaticObject.html b/docs/Documentation/StaticObject.html index 805c6b594..1f1abe42f 100644 --- a/docs/Documentation/StaticObject.html +++ b/docs/Documentation/StaticObject.html @@ -17,11 +17,11 @@ index
- AI_BAI +
- AI_Bai
- AI_Balancer
- AI_Cap
- AI_Cas -
- AI_Follow +
- AI_Formation
- AI_Patrol
- Account
- Airbase diff --git a/docs/Documentation/Task.html b/docs/Documentation/Task.html index 3391dc69b..ffd356b4b 100644 --- a/docs/Documentation/Task.html +++ b/docs/Documentation/Task.html @@ -17,11 +17,11 @@ index
- AI_BAI +
- AI_Bai
- AI_Balancer
- AI_Cap
- AI_Cas -
- AI_Follow +
- AI_Formation
- AI_Patrol
- Account
- Airbase diff --git a/docs/Documentation/Task_A2G.html b/docs/Documentation/Task_A2G.html index b6c3d97ad..82710dd9f 100644 --- a/docs/Documentation/Task_A2G.html +++ b/docs/Documentation/Task_A2G.html @@ -17,11 +17,11 @@ index
- AI_BAI +
- AI_Bai
- AI_Balancer
- AI_Cap
- AI_Cas -
- AI_Follow +
- AI_Formation
- AI_Patrol
- Account
- Airbase diff --git a/docs/Documentation/Task_A2G_Dispatcher.html b/docs/Documentation/Task_A2G_Dispatcher.html index b6a81e7b3..be3534f29 100644 --- a/docs/Documentation/Task_A2G_Dispatcher.html +++ b/docs/Documentation/Task_A2G_Dispatcher.html @@ -17,11 +17,11 @@ index
- AI_BAI +
- AI_Bai
- AI_Balancer
- AI_Cap
- AI_Cas -
- AI_Follow +
- AI_Formation
- AI_Patrol
- Account
- Airbase diff --git a/docs/Documentation/Task_Cargo.html b/docs/Documentation/Task_Cargo.html index 64abe7762..07dbd4536 100644 --- a/docs/Documentation/Task_Cargo.html +++ b/docs/Documentation/Task_Cargo.html @@ -17,11 +17,11 @@ index
- AI_BAI +
- AI_Bai
- AI_Balancer
- AI_Cap
- AI_Cas -
- AI_Follow +
- AI_Formation
- AI_Patrol
- Account
- Airbase @@ -503,7 +503,7 @@ based on the tasking capabilities defined in Task#TA
-
- Core.Cargo#CARGO_GROUP
+ Core.Cargo#CARGO
FSM_PROCESS.Cargo
@@ -517,6 +517,7 @@ based on the tasking capabilities defined in Task#TA
- + FSM_PROCESS.DeployZone diff --git a/docs/Documentation/Task_PICKUP.html b/docs/Documentation/Task_PICKUP.html index ab9a92d05..e33dca1db 100644 --- a/docs/Documentation/Task_PICKUP.html +++ b/docs/Documentation/Task_PICKUP.html @@ -17,11 +17,11 @@ index
- AI_BAI +
- AI_Bai
- AI_Balancer
- AI_Cap
- AI_Cas -
- AI_Follow +
- AI_Formation
- AI_Patrol
- Account
- Airbase diff --git a/docs/Documentation/Unit.html b/docs/Documentation/Unit.html index 44b0bccac..857c4bfb7 100644 --- a/docs/Documentation/Unit.html +++ b/docs/Documentation/Unit.html @@ -17,11 +17,11 @@ index
- AI_BAI +
- AI_Bai
- AI_Balancer
- AI_Cap
- AI_Cas -
- AI_Follow +
- AI_Formation
- AI_Patrol
- Account
- Airbase diff --git a/docs/Documentation/Utils.html b/docs/Documentation/Utils.html index 28412ed44..ef8fae284 100644 --- a/docs/Documentation/Utils.html +++ b/docs/Documentation/Utils.html @@ -17,11 +17,11 @@ index
- AI_BAI +
- AI_Bai
- AI_Balancer
- AI_Cap
- AI_Cas -
- AI_Follow +
- AI_Formation
- AI_Patrol
- Account
- Airbase diff --git a/docs/Documentation/Zone.html b/docs/Documentation/Zone.html index 81af387d2..f18faf4f3 100644 --- a/docs/Documentation/Zone.html +++ b/docs/Documentation/Zone.html @@ -17,11 +17,11 @@ index
- AI_BAI +
- AI_Bai
- AI_Balancer
- AI_Cap
- AI_Cas -
- AI_Follow +
- AI_Formation
- AI_Patrol
- Account
- Airbase diff --git a/docs/Documentation/env.html b/docs/Documentation/env.html index 94099292d..9873bd1cc 100644 --- a/docs/Documentation/env.html +++ b/docs/Documentation/env.html @@ -17,11 +17,11 @@ index
- AI_BAI +
- AI_Bai
- AI_Balancer
- AI_Cap
- AI_Cas -
- AI_Follow +
- AI_Formation
- AI_Patrol
- Account
- Airbase diff --git a/docs/Documentation/index.html b/docs/Documentation/index.html index e6e185419..a5fc2bf03 100644 --- a/docs/Documentation/index.html +++ b/docs/Documentation/index.html @@ -17,11 +17,11 @@ index
- AI_BAI +
- AI_Bai
- AI_Balancer
- AI_Cap
- AI_Cas -
- AI_Follow +
- AI_Formation
- AI_Patrol
- Account
- Airbase @@ -98,7 +98,7 @@
- AI_BAI +
- AI_Bai
- AI_Balancer
- AI_Cap
- AI_Cas -
- AI_Follow +
- AI_Formation
- AI_Patrol
- Account
- Airbase diff --git a/docs/Documentation/routines.html b/docs/Documentation/routines.html index 8577991c4..a060f23af 100644 --- a/docs/Documentation/routines.html +++ b/docs/Documentation/routines.html @@ -17,11 +17,11 @@ index
Module AI_Formation
+
+AI -- (R2.1) Build large formations of AI Groups flying together.
+ + + ++ +
AI_FORMATION makes AI GROUPs fly in formation of various compositions.
+ +There are the following types of classes defined:
+ +-
+
+ +
Demo Missions
+ +AI_FORMATION Demo Missions source code
+ +AI_FORMATION Demo Missions, only for beta testers
+ +ALL Demo Missions pack of the last release
+ ++ +
YouTube Channel
+ + + ++ +
AUTHORS and CONTRIBUTIONS
+ +Contributions:
+ +Authors:
+ +-
+
Global(s)
+| AI_FORMATION | +
+AI_FORMATION class, extends Fsm#FSM_SET+ +The #AI_FORMATION class allows you to build large formations, make AI follow a Client#CLIENT (player) leader or a Unit#UNIT (AI) leader. + |
+
Type AI_FORMATION
+ Type AI_FORMATION.MODE
+ | AI_FORMATION.MODE.FOLLOW | ++ + | +
| AI_FORMATION.MODE.MISSION | ++ + | +
Type MENUPARAM
+ | MENUPARAM.ParamDistance | ++ + | +
| MENUPARAM.ParamFunction | ++ + | +
| MENUPARAM.ParamMessage | ++ + | +
| MENUPARAM.ParamSelf | ++ + | +
Global(s)
+-
+
Type AI_Formation
+
+ Type AI_FORMATION
+
+AI_FORMATION class
+ +Field(s)
+-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
Type AI_FORMATION.MODE
+
+AI_FORMATION.Mode class
+ +Field(s)
+-
+
-
+
Type Distance
+
+ Type MENUPARAM
+
+MENUPARAM type
+ +Field(s)
+-
+
-
+
-
+
-
+
Type nubmer
+
+-
-
This table contains the targets detected during patrol.
--
diff --git a/docs/Documentation/Account.html b/docs/Documentation/Account.html
index c9525a456..5609f0458 100644
--- a/docs/Documentation/Account.html
+++ b/docs/Documentation/Account.html
@@ -17,11 +17,11 @@
index
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/docs/Documentation/Object.html b/docs/Documentation/Object.html
index 04267f399..1b5902a84 100644
--- a/docs/Documentation/Object.html
+++ b/docs/Documentation/Object.html
@@ -17,11 +17,11 @@
index
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Overwrite unit names by default with group name.
+-
@@ -2549,6 +2546,9 @@ when nothing was spawned.
+
+
By default, no InitLimit
+-
@@ -2584,7 +2584,7 @@ when nothing was spawned.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Module
| AI_BAI | +AI_Bai |
AI -- Provide Battlefield Air Interdiction (bombing). @@ -166,7 +166,7 @@ even when there are hardly any players in the mission. |
| AI_Follow | +AI_Formation |
AI -- (R2.1) Build large formations of AI Groups flying together. |
diff --git a/docs/Documentation/land.html b/docs/Documentation/land.html
index 64ee55186..e3b4d5dc9 100644
--- a/docs/Documentation/land.html
+++ b/docs/Documentation/land.html
@@ -17,11 +17,11 @@
index