mirror of
https://github.com/InfinityLoader/IL-GSC.git
synced 2025-06-11 02:37:56 -05:00
33 lines
801 B
Plaintext
33 lines
801 B
Plaintext
/*******************************************************************
|
|
* Decompiled By: Bog
|
|
* Decompiled File: codescripts\delete.gsc
|
|
* Game: Call of Duty: Black Ops 2
|
|
* Platform: Console
|
|
* Function Count: 1
|
|
* Decompile Time: 0 ms
|
|
* Timestamp: 10/28/2023 12:13:28 AM
|
|
*******************************************************************/
|
|
|
|
//Function Number: 1
|
|
main()
|
|
{
|
|
/#
|
|
assert(IsDefined(self));
|
|
#/
|
|
wait(0);
|
|
if(IsDefined(self))
|
|
{
|
|
/#
|
|
if(IsDefined(self.classname))
|
|
{
|
|
if(self.classname == "trigger_once" || self.classname == "trigger_radius" || self.classname == "trigger_multiple")
|
|
{
|
|
println("");
|
|
println("*** trigger debug: delete.gsc is deleting trigger with ent#: " + self getentitynumber() + " at origin: " + self.origin);
|
|
println("");
|
|
}
|
|
}
|
|
#/
|
|
self delete();
|
|
}
|
|
} |