Difference between revisions of "EVENT TYPE COMMAND COMPLETE"

From Dragon Age Toolset Wiki
Jump to: navigation, search
(split off of event)
 
m (Updating links)
 
(7 intermediate revisions by 2 users not shown)
Line 1: Line 1:
*<b>Sent When:</b> creature finishes doing a command(attack, special ability, spell, conversation, etc)
+
{{event
*<b>Sent From:</b> engine
+
|sourcefile=script.ldf
*<b>Sent To:</b> creatures, player
+
|when= creature finishes doing a command(attack, special ability, spell, conversation, etc)
 
+
|from= [[Engine]]
Parameters:
+
|to= [[creature]]s, player
*<b>Creator:</b> creature acting
+
|tocategory1=creature
*<b>Int 0</b> Type of the last command (e.g. COMMAND_TYPE_ATTACKED)
+
|sortkey=COMMAND_COMPLETE
*<b>Int 1</b> The status of the execution (COMMAND_SUCCESSFUL, etc)
+
|creatorname=oActor
*<b>Int 2</b> last sub command
+
|creatordesc= creature acting
*<b>obj(0)</b> The target that command was applied to
+
|int0name= nLastCommand
 
+
|int0desc= Type of the last command ([[COMMAND TYPE_*]])
[[Category:Event types]]
+
|int1name= nStatus
 +
|int1desc= The status of the execution ([[COMMAND_*]])
 +
|int2name= nLastSubCommand
 +
|int2desc= last sub command (ability id if this is an ability command)
 +
|object0name=
 +
|object0desc= creature acting
 +
|object1name = oTarget
 +
|object1desc= The target that command was applied to
 +
|object2name=oBlocker
 +
|object2desc=the path object if the path is blocked by an interactive object
 +
}}
 +
[[Category:Event types|COMMAND_COMPLETE]]
 +
[[Category:Creature events|COMMAND_COMPLETE]]

Latest revision as of 13:24, 3 August 2011

Source:
script.ldf
Sent when:
creature finishes doing a command(attack, special ability, spell, conversation, etc)
Sent from:
Engine
Sent to:
creatures, player
Parameters:
  • Creator: creature acting
  • Integer 0: Type of the last command (COMMAND TYPE_*)
  • Integer 1: The status of the execution (COMMAND_*)
  • Integer 2: last sub command (ability id if this is an ability command)
  • Object 0: creature acting
  • Object 1: The target that command was applied to
  • Object 2: the path object if the path is blocked by an interactive object

Usage

case EVENT_TYPE_COMMAND_COMPLETE:
{
object oActor = GetEventCreator(ev); // creature acting
int nLastCommand = GetEventInteger(ev, 0); // Type of the last command (COMMAND TYPE_*)
int nStatus = GetEventInteger(ev, 1); // The status of the execution (COMMAND_*)
int nLastSubCommand = GetEventInteger(ev, 2); // last sub command (ability id if this is an ability command)
object oTarget = GetEventObject(ev, 1); // The target that command was applied to
object oBlocker = GetEventObject(ev, 2); // the path object if the path is blocked by an interactive object>

// insert event-handling code here

break;
}