Difference between revisions of "OnStoryHackTerminal - Quest"
Jump to navigation
Jump to search
(Added documentation) |
m |
||
Line 1: | Line 1: | ||
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. | 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. | |||
<syntaxhighlight> | <syntaxhighlight> |
Latest revision as of 23:29, 29 August 2024
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