gzdoom/wadsrc/static/zscript/shared/secrettrigger.txt
Christoph Oelckers 9b1870f71f - capitalization of 'level' in all places where no changes will be needed.
Mainly done so that searching for 'level.' returns less noise.
2019-01-06 14:38:51 +01:00

26 lines
335 B
Text

class SecretTrigger : Actor
{
default
{
+NOBLOCKMAP
+NOSECTOR
+NOGRAVITY
+DONTSPLASH
}
override void PostBeginPlay ()
{
Super.PostBeginPlay ();
Level.total_secrets++;
}
override void Activate (Actor activator)
{
Level.GiveSecret(activator, args[0] <= 1, (args[0] == 0 || args[0] == 2));
Destroy ();
}
}