Author Topic: Eventing help! Please reply!  (Read 514 times)

Hello guys!
I was thinking about making a deathrun because I know that many people enjoy them these days. So anyway, as I was making it. I made a trap that made it so if one of the deaths were to hit a button. Then that button would make named bricks kill players. So really to simplify this.

I would like an event that makes named bricks kill players.

For instance: (Lets call the event NamedKill)

Onactivate>Namedkill>(Named Brick)
Or
Onactivate>(Named Brick)>Namedkill

This means that if I press the block, it will make the named brick kill players when the players touch the brick.

Thanks for reading! Btw if there is an alternate event that works in the same way as what im requesting. Tell me please! Thanks

On the button to activate the death brick
Code: [Select]
Delay
0          On Activate > Named Brick > DeathBrick > Toggle Event Enabled > 0
10000   On Activate > Named Brick > DeathBrick > Toggle Event Enabled > 0 - The 10000 in the delay is 10 seconds before it's disabled.

On the named death brick itself;

Code: [Select]
On Player Touch > Player > Kill

On the button to activate the death brick
Code: [Select]
Delay
0          On Activate > Named Brick > DeathBrick > Toggle Event Enabled > 0
10000   On Activate > Named Brick > DeathBrick > Toggle Event Enabled > 0 - The 10000 in the delay is 10 seconds before it's disabled.

On the named death brick itself;

Code: [Select]
On Player Touch > Player > Kill
Thanks man!