interior scene event script?

Forum Archive - from http://theuniversal.net
Locked
User avatar
morbydvisns
Posts: 1889
Joined: Sun Jan 30, 2005 12:51 am

interior scene event script?

Post by morbydvisns »

what type of event is triggered when a event region is entered? I tried custom but do dice.
User avatar
Mit
Staff
Staff
Posts: 3551
Joined: Sun Sep 21, 2003 10:14 pm
Location: Unknown

Post by Mit »

Events are

Code: Select all

SceneEnterRegion
SceneLeaveRegion
the param is the text field for the region set in the scene editor (or the param= field if you're editing the .uim manually).

i.e if you've added a region with param=Door1 in the scene ed, the server will trigger :

Code: Select all

Event( "SceneEnterRegion", "Door1" )
{
  ....
User avatar
morbydvisns
Posts: 1889
Joined: Sun Jan 30, 2005 12:51 am

Post by morbydvisns »

http://www.tuwr.net/morvis/Data/Models/ ... cave1h.uim

Haven't gotten it to kick the event off yet.
Locked