30 lines
838 B
Plaintext
30 lines
838 B
Plaintext
void main()
|
|
{
|
|
|
|
if(GetLocalInt(OBJECT_SELF, "KIUAS") != 1)
|
|
|
|
{
|
|
|
|
object oWay1 = GetWaypointByTag("baf_wayflf1");
|
|
object oWay2 = GetWaypointByTag("baf_wayflf2");
|
|
object oWay3 = GetWaypointByTag("baf_wayflf3");
|
|
object oWay4 = GetWaypointByTag("baf_wayflf4");
|
|
object oWay5 = GetWaypointByTag("baf_wayflf5");
|
|
|
|
location lWay1 = GetLocation(oWay1);
|
|
location lWay2 = GetLocation(oWay2);
|
|
location lWay3 = GetLocation(oWay3);
|
|
location lWay4 = GetLocation(oWay4);
|
|
location lWay5 = GetLocation(oWay5);
|
|
|
|
ClearAllActions(TRUE);
|
|
ActionMoveToLocation(lWay1, FALSE);
|
|
ActionMoveToLocation(lWay2, FALSE);
|
|
ActionMoveToLocation(lWay3, FALSE);
|
|
ActionMoveToLocation(lWay4, FALSE);
|
|
ActionMoveToLocation(lWay5, FALSE);
|
|
|
|
}
|
|
|
|
}
|