11 lines
224 B
Plaintext
11 lines
224 B
Plaintext
void main()
|
|
{
|
|
|
|
// Remove some gold from the player
|
|
|
|
object oDoor = GetNearestObjectByTag ("netherdoor5");
|
|
SetLocked(oDoor,FALSE);
|
|
PlaySound("as_sw_lever1");
|
|
AssignCommand (oDoor,ActionOpenDoor(oDoor));
|
|
}
|