Hosting and domain costs until October 2024 have been generously sponsored by dumptruck_ds. Thank you!

coredump

From Quake Wiki

Revision as of 18:38, 31 July 2023 by Boondorl (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

void coredump()

Usage

Prints all of the entities in the map to the console. Mainly used for debugging.

Example

// If a core entity is in an invalid state, dump everything and abort the VM
if (!importantEntity)
{
    coredump();
    error("Important entity was accidentally removed\n");
}