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

coredump

From Quake Wiki

void coredump()

Usage[edit]

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

Example[edit]

// 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");
}