Lankhmar_PRC8/_module/nss/hench_removehome.nss
Jaysyn904 ebc0c6a9b2 Initial commit
Initial commit [v9.7]
2025-04-03 12:54:47 -04:00

14 lines
424 B
Plaintext

//This script will remove a henchperson from your party.
//It will send them to a friend.
void main()
{
//Remove henchperson from the party.
//Send henchperson to NPC friend.
object oPC = GetPCSpeaker ();
object oHench = OBJECT_SELF;
object oNPCFriend1 = GetObjectByTag ("NPCfriend1");
RemoveHenchman(oPC, oHench);
AssignCommand (oHench, ActionJumpToLocation (GetLocation (oNPCFriend1)));
}