18 lines
276 B
Plaintext
18 lines
276 B
Plaintext
|
void main()
|
||
|
{
|
||
|
|
||
|
// Remove some gold from the player
|
||
|
|
||
|
object oDoor = GetObjectByTag ("crypt2entrance");
|
||
|
SetLocked(oDoor,FALSE);
|
||
|
AssignCommand (oDoor,ActionOpenDoor(oDoor));
|
||
|
object oSound = GetObjectByTag("CrankCreaksLarge");
|
||
|
SoundObjectPlay(oSound);
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
}
|