Lankhmar_PRC8/_module/nss/hench_remove.nss

9 lines
186 B
Plaintext
Raw Permalink Normal View History

2025-04-03 12:54:47 -04:00
//This script will remove a henchperson from your party.
void main()
{
//Remove henchperson from the party.
object oPC = GetPCSpeaker();
RemoveHenchman(oPC, OBJECT_SELF);
}