10 lines
354 B
Plaintext
10 lines
354 B
Plaintext
//Destroys the Voice of the Lady Moon, an invisible placeable created in the conversation with
|
|
//Marin Siger, Captain of Etum's Guards.
|
|
void main()
|
|
{
|
|
object fakelady = GetObjectByTag("SHA_FAKE_LADYM");
|
|
DestroyObject(fakelady);
|
|
object Siger = GetObjectByTag("SIGER");
|
|
AssignCommand(Siger, ActionPlayAnimation(ANIMATION_FIREFORGET_BOW));
|
|
}
|