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

jctest.qc

From Quake Wiki

This Quake-C file contains the code for a test trigger. It is not used anywhere in the game.


void() jctrig =
{
dprint ("here\n\n");
	lightstyle(0, "az");
};

/*QUAKED trigger_jctest (.5 .5 .5) ?
*/
void() trigger_jctest =
{
	setsize (self, self.mins, self.maxs);
	self.solid = SOLID_EDGE;
	self.touch = jctrig;
};
(Version 1.06)