11 lines
234 B
Plaintext
Raw Permalink Normal View History

void main()
{
object oPC=GetPCSpeaker();
object oThing=GetFirstFactionMember(oPC);
while (GetIsObjectValid(oThing))
{
AssignCommand(oThing,JumpToObject(GetWaypointByTag("fr_waterfall01"),FALSE));
oThing=GetNextFactionMember(oPC);
}
}