13 lines
284 B
Plaintext
13 lines
284 B
Plaintext
void main()
|
|
{
|
|
object oSpawn;
|
|
|
|
// Get the PC who is in this conversation.
|
|
object oPC = GetPCSpeaker();
|
|
|
|
// Spawn "finval_rev".
|
|
oSpawn = CreateObject(OBJECT_TYPE_PLACEABLE, "finval_rev", GetLocation(oPC));
|
|
AssignCommand(oSpawn, ActionStartConversation(oPC));
|
|
}
|
|
|