Arma Reforger Explorer  1.1.0.42
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
SCR_AISendGoalMessage.c
Go to the documentation of this file.
1 // Obsolete, don't use, instead use autogenerated SCR_AISendGoalMessage_... nodes
3 {
4  [Attribute("0", UIWidgets.ComboBox, "Message type", "", ParamEnumArray.FromEnum(EMessageType_Goal) )]
5  private EMessageType_Goal m_messageType;
6 
7  [Attribute("0", UIWidgets.CheckBox, "Priority level")]
8  int m_fPriorityLevel;
9 
10  [Attribute("0", UIWidgets.CheckBox, "Goal is ordered by waypoint or is autonomous?")]
11  bool m_bIsWaypointRelated;
12 
13  override ENodeResult EOnTaskSimulate(AIAgent owner, float dt)
14  {
15  Print("SCR_AISendGoalMessage is obsolete!", LogLevel.WARNING);
16  return ENodeResult.FAIL;
17  }
18 
19  override string GetOnHoverDescription()
20  {
21  return "Obsolete! Use autogenerated SCR_AISendGoalMessage_... nodes instead!";
22  };
23 };
Attribute
typedef Attribute
Post-process effect of scripted camera.
SCR_AISendMessageGeneric
Class for generic nodes with extra input ports which send messages.
Definition: SCR_AISendMessage.c:73
EMessageType_Goal
EMessageType_Goal
Definition: SCR_AIMessage.c:15
SCR_AISendGoalMessage
Definition: SCR_AISendGoalMessage.c:2