Skip to main content

The "sys_queue_submit" Function

Syntax#

sys_queue_submit(id);
ArgumentTypeDescription
idstringThe ID of the queue to read data from

Description#

VNgen uses a custom queue system for certain data to afford greater control over when and how it is applied. This is not the same as GameMaker Studio's built-in queue data structures and should not be used as a replacement for them.

This script is specially designed to read queued data into the global backlog. Once data has been read, it will be removed from the queue. This script expects data to already be formatted as backlog data, and improperly formatted data will halt the game with an error.

As this script is run automatically by any actions that require delayed data execution, it is almost never necessary to run sys_queue_submit manually.