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

17 lines
250 B
Plaintext

/* script to remove and destroy henchmen */
//Put this on action taken in the conversation editor
void main()
{
object oPC = GetPCSpeaker();
object oTarget;
oTarget=GetHenchman(oPC);
RemoveHenchman(oPC, oTarget);
DestroyObject(oTarget);
}