Please or Register to create posts and topics.

Floor button timer sound

Yea, so how could i make the prop_floor_button play a timer sound...
It worked for Valve in one of their coop maps, where you have to fling yourself onto 2 button, to make them open a door.

I've done something similar, but i can't get the sound to work.

Mostly lurking

I think you need to use an ambient_generic and find the timer sound.

Crazy is as crazy does.
My Work
[spoiler]Maps:
Revenge of the Angry Turrets
Capture the Cube [Co-op]
Capture the Cube 2 [Co-op]
TPWEGTH Sample Map
Aperture Aquatic Testing Center
Aperture Aquatic Testing Center 2
Aperture Time Testing Center
ML's Halloween Trick - 1000 downloads!
ML's Halloween Treat
ML's Combination - 1000 downloads!
ML's Jailbreak Labyrinth
ML's Tricky Teamwork [Co-op]
WIP:
"Capture the Cube 3"
Workshop Maps Link: http://steamcommunity.com/profiles/76561198008890579/myworkshopfiles/[/spoiler]

It's ambient/machines/synth_tick_tock_01.wav. I just had whatever starts the timer fire user 1 to an ambient_generic with that sound. In the ambient_generic's outputs, I have OnUser1 - !self - PlaySound. Then copy and paste that output with 1 more second of delay each time until it plays for 8 seconds or however long you want your timer to last.

Try out Twin Pillars, a Portal 2 map by BOB74j.
BOB74j wrote:
It's ambient/machines/synth_tick_tock_01.wav. I just had whatever starts the timer fire user 1 to an ambient_generic with that sound. In the ambient_generic's outputs, I have OnUser1 - !self - PlaySound. Then copy and paste that output with 1 more second of delay each time until it plays for 8 seconds or however long you want your timer to last.

Thank you! That was just what i needed! I guess i can shorten it into a logic_relay

Mostly lurking

Or start a logic_timer with the refire interval 1 second:
On timer ==> amb_generic PlaySound
And stop it after 8 seconds

The Aperture Alpha
A map pack coming soon. - click for more information
Image
BrainstoneX wrote:
Or start a logic_timer with the refire interval 1 second:
On timer ==> amb_generic PlaySound
And stop it after 8 seconds

Good idea ;)

Mostly lurking