11 lines
234 B
Plaintext
11 lines
234 B
Plaintext
|
void main()
|
||
|
{
|
||
|
object oPC=GetPCSpeaker();
|
||
|
object oThing=GetFirstFactionMember(oPC);
|
||
|
while (GetIsObjectValid(oThing))
|
||
|
{
|
||
|
AssignCommand(oThing,JumpToObject(GetWaypointByTag("fr_waterfall01"),FALSE));
|
||
|
oThing=GetNextFactionMember(oPC);
|
||
|
}
|
||
|
}
|