Hello
Is there a way to make a plaform fall down 3 secs after the player lands on it ?
How to make a Falling Platform
Re: How to make a Falling Platform
Trigger>Logic Gate>Platform
Create an empty solid brush with a transparency of 1 placed right where the player steps onto the platform. Set the platform attributes bnocollide = true, playeronly = false, brunwhiletriggered = true, rideable = true, Triggername = LogicGate's szentityname
Create a Type 1 Logic Gate with delay set to 3 with a Triggername = the Trigger's szentityname
Create a Trigger attached to the trigger model, bnocollide = false, PlayerOnly = true
When the player passes through the invisible trigger brush, it will turn the trigger on, which will then activate the logic gate, which will wait three seconds, then trigger the platform.
Create an empty solid brush with a transparency of 1 placed right where the player steps onto the platform. Set the platform attributes bnocollide = true, playeronly = false, brunwhiletriggered = true, rideable = true, Triggername = LogicGate's szentityname
Create a Type 1 Logic Gate with delay set to 3 with a Triggername = the Trigger's szentityname
Create a Trigger attached to the trigger model, bnocollide = false, PlayerOnly = true
When the player passes through the invisible trigger brush, it will turn the trigger on, which will then activate the logic gate, which will wait three seconds, then trigger the platform.
Steve Dilworth - Resisting change since 1965!
Re: How to make a Falling Platform
Thank you steven 8