Background for Starfield
Member of the Quest script
eventOnStoryHackTerminal(ObjectReferenceakComputer, boolabSucceeded)

Description

Wiki Description

Sent when the player GUESSES in a terminal. This sends an event containing the terminal ref and the success of each guess input into the terminal.

This event does not fire based on your success when you exit the terminal.

Event OnStoryHackTerminal(ObjectReference akComputer, bool abSucceeded) 
    Debug.Trace("akComputer" + akComputer + " / Guess success: " + abSucceeded)
EndEvent

Parameters

ObjectReferenceakComputer

boolabSucceeded


Examples

No human-generated examples found for this event.

Auto-Generated Example

Scriptname MyCoolScript extends Quest

event OnStoryHackTerminal(ObjectReference akComputer, bool abSucceeded)
    Debug.trace("Event received - OnStoryHackTerminal: akComputer = " + akComputer + " abSucceeded = " + abSucceeded)
endEvent

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.