- Found in:
- Vanilla
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