Git Repos / fte_dogmode / qc / triggers / remove.qc
Last update to this file was on 2024-01-09 at 11:09.
Show remove.qc
//==============================================================================
// trigger_remove
//==============================================================================
// Selections from hiptrig.qc NOT the entire file
/*
Trigger QuickC program
By Jim Dose' 12/2/96
Copyright (c)1996 Hipnotic Interactive, Inc.
All rights reserved.
Distributed (unsupported) on 3.12.97
*/
// void() trigger_remove_touch =
// {
// if (other.flags & self.cnt)
// return;
// other.touch = __NULL__;
// other.model = "";
// remove (self);
// };
//
// /*QUAKED trigger_remove (.5 .5 .5) ? ignoremonsters ignoreplayers
// Variable sized trigger that removes the thing
// that touches it. Does not affect monsters or
// players.
// */
// void() trigger_remove =
// {
// // new spawnflags for all entities -- iw
// if (SUB_Inhibit())
// return;
//
// self.cnt = FL_CLIENT|FL_MONSTER;
//
// if (self.spawnflags & 1)
// self.cnt = self.cnt - FL_MONSTER;
// if (self.spawnflags & 2)
// self.cnt = self.cnt - FL_CLIENT;
//
// InitTrigger ();
// self.touch = trigger_remove_touch;
// };
Return to the top of this page or return to the overview of this repo.
Log remove.qc
Date | Commit Message | Author | + | - |
---|---|---|---|---|
2024-01-09 | Continue OO / Class-based refactor | cev | +1 | -1 |
2023-12-09 | Start OO / class-based refactor, work on items | cev | +4 | -3 |
2023-11-20 | changes to movement, build environment, file reorg | cev | +43 |
Return to the top of this page or return to the overview of this repo.