Author Topic: i need eventing help  (Read 347 times)

ok i would like to have a list of events like turret,laser wall that kills you when touched and alot more im making good use for events

It's simple once you know what everything does.

The main things you'll need to know for what you want to do:

Inputs
OnActivate|When a player clicks that brick.
OnPlayerTouch|When a player is in contact with that brick.

Targets

Self|The brick that has been activated or touched.
Player|The player who activated or touched the brick.

Outputs
Kill|Used with Player target, kills the player.
SpawnProjectile|Fires a projectile in the direction you choose.

Basically just play around and experiment. It's how I learned most of what I know about events.