17 lines
168 B
Plaintext
17 lines
168 B
Plaintext
void main()
|
|
{
|
|
|
|
object oPC = GetPCSpeaker();
|
|
|
|
object oTarget;
|
|
|
|
oTarget=GetHenchman(oPC);
|
|
|
|
if (GetTag(oTarget)=="Belgora")
|
|
{
|
|
RemoveHenchman(oPC, oTarget);
|
|
}
|
|
|
|
}
|
|
|