Files
HeroesStone_PRC8/_module/nss/horse_name.nss
Jaysyn904 1eefc84201 Initial Commit
Initial Commit.
2025-09-14 15:40:46 -04:00

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");
}