Author Topic: Event help  (Read 482 times)

I've been trying to get an event to work for around an hour now, and it simply is not working.

So I turned to the forums to help


This may sound simple, but (for me anyway) its really hard to do.

Here is what I need:

A brick, that when you stand on it, it glows until you get off.

Sounds simple, but it isn't, I have tried relays and such, but nothing has worked

Any ideas?

Try this:

Code: [Select]
0 onPlayerTouch => Self => setColorFX Glow
0 onPlayerTouch => Self => CancelEvents
50 onPlayerTouch => Self => fireRelay
0 onRelay => Self => setColorFX None

Try this:

Code: [Select]
0 onPlayerTouch => Self => setColorFX Glow
0 onPlayerTouch => Self => CancelEvents
50 onPlayerTouch => Self => fireRelay
0 onRelay => Self => setColorFX None
That just makes it blink :/

Try this:
Code: [Select]
0 onplayertouch>self>setcolorfx>glow
100 onplayertouch>self>setcolorfx>none

Try this:
Code: [Select]
0 onplayertouch>self>setcolorfx>glow
100 onplayertouch>self>setcolorfx>none

Thats the one ive been trying to make work for a while, it just makes it blink.

[0] onPlayerTouch->self->setColor->Glow
[300] onPlayerTouch->self->setColor->None
  • onPlayerTouch->self->cancelEvents




That delay makes it so the glow effect is still there 0.3 seconds after you step off, it doesn't matter and is pretty much unnoticable. The minimum it can go to is about 270, but it sometimes flickers a bit so I would just keep the delay at 300.

[0] onPlayerTouch->self->setColor->Glow
[300] onPlayerTouch->self->setColor->None
  • onPlayerTouch->self->cancelEvents




That delay makes it so the glow effect is still there 0.3 seconds after you step off, it doesn't matter and is pretty much unnoticable. The minimum it can go to is about 270, but it sometimes flickers a bit so I would just keep the delay at 300.

Ive seen it before where it permenantly stays on when touched, and off when not touched.

Ive seen it before where it permenantly stays on when touched, and off when not touched.
Isn't that what you wanted?

nevermind, just thought it wouldnt work..


thank you, locking topic

Sorry for my stupidness