Background for Fallout 4
Member of the Actor script
eventOnPlayerCreateRobot(ActorakNewRobot)

Description

Wiki Description

Event send to the player when he creates a robot

Documentation Comment

Received when player creates a new robot


Parameters

  1. ActorakNewRobot

    CK Wiki Description

    the robot that was created


Examples

; Event is sent to the player
Event OnPlayerCreateRobot(Actor akNewRobot)
  Debug.Trace(akNewRobot + " was created by the player")
endEvent

Auto-Generated Example

Scriptname MyCoolScript extends Actor

event OnPlayerCreateRobot(Actor akNewRobot)
    Debug.trace("Event received - OnPlayerCreateRobot: akNewRobot = " + akNewRobot)
endEvent

Related Pages


Additional References

View this event’s page on the Fallout 4 Creation Kit Wiki

Some data provided by the Fallout 4 Creation Kit Wiki. Licensed under the Creative Commons Attribution-Share Alike 4.0 license.