generated from Jaysyn/ModuleTemplate
15 lines
284 B
Plaintext
15 lines
284 B
Plaintext
//Put this on action taken in the conversation editor
|
|
void main()
|
|
{
|
|
|
|
object oPC = GetPCSpeaker();
|
|
|
|
object oTarget;
|
|
object oItem;
|
|
oTarget = oPC;
|
|
object oWyrmling;
|
|
oWyrmling=GetHenchman(oPC);
|
|
SetName (oTarget, GetName(GetItemPossessedBy(oTarget, "Name_Horse")) + " the " + " Pony");
|
|
}
|
|
|