OnPlayerModRobot - Actor

Revision as of 15:57, 11 January 2016 by imported>Plplecuyer (→‎See Also)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Member of: Actor Script

Event send to the player when he modifies a robot

Syntax

Event OnPlayerModRobot(Actor akRobot, ObjectMod akModBaseObject)

Parameters

  • akRobot: the robot that was modified
  • akModBaseObject: the base object used to do the modification

Examples

; Event is sent to the player
Event OnPlayerModRobot(Actor akRobot, ObjectMod akModBaseObject)
  Debug.Trace(akRobot + " modified with " + akModBaseObject)
endEvent

See Also