Initial upload. PRC8 has been added. Module compiles, PRC's default AI & treasure scripts have been integrated. Started work on top hak for SLA / Ability / Scripting modifications.
11 lines
225 B
Plaintext
11 lines
225 B
Plaintext
void main()
|
|
{
|
|
ActionPlayAnimation(ANIMATION_PLACEABLE_ACTIVATE);
|
|
object oDoor = GetObjectByTag("tri_hobdoor2");
|
|
|
|
SetLocked(oDoor, 0);
|
|
DelayCommand(2.0, ActionOpenDoor(oDoor));
|
|
|
|
DelayCommand(5000.0, SetLocked(oDoor, TRUE));
|
|
}
|