13 lines
333 B
Plaintext
13 lines
333 B
Plaintext
|
void main()
|
||
|
{
|
||
|
object oActor;
|
||
|
|
||
|
// Get the PC who is in this conversation.
|
||
|
object oPC = GetPCSpeaker();
|
||
|
|
||
|
// Have "Arykki2" perform a sequence of actions.
|
||
|
oActor = GetObjectByTag("Arykki2");
|
||
|
AssignCommand(oActor, ActionEquipItem(GetItemPossessedBy(OBJECT_SELF, "arykkimasterwrk"), INVENTORY_SLOT_RIGHTHAND));
|
||
|
}
|
||
|
|