17 lines
522 B
Plaintext
17 lines
522 B
Plaintext
////////////////////////////////////////////////////////////////////////////////
|
|
// Auto Shut and Lock
|
|
// opw_autoshutlock
|
|
// By Don Anderson
|
|
// dandersonru@msn.com
|
|
//
|
|
// Place this script in the Door OnOpen Event
|
|
//
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
void main()
|
|
{
|
|
float fASD = GetLocalFloat(GetModule(),"ASD");//See opw_mod_onload
|
|
DelayCommand(fASD - 2.0, ActionDoCommand(SetLocked(OBJECT_SELF,TRUE)));
|
|
DelayCommand(fASD, ActionCloseDoor(OBJECT_SELF));
|
|
}
|