9 lines
186 B
Plaintext
9 lines
186 B
Plaintext
|
//This script will remove a henchperson from your party.
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
//Remove henchperson from the party.
|
||
|
object oPC = GetPCSpeaker();
|
||
|
RemoveHenchman(oPC, OBJECT_SELF);
|
||
|
}
|