Skip to main content

The "vngen_event_set_target" Function

Syntax#

vngen_event_set_target();
ArgumentTypeDescription
N/AN/ANo arguments

Description#

Initializes a segment of code containing Quantum events and actions. Once this script has been run, as many events as desired can be executed after it. It is also required to run the vngen_event_reset_target script after the last event in the sequence.

Example#

vngen_event_set_target();
if vngen_event() {
//Actions
}
vngen_event_reset_target();