LoD_PRC8/_module/nss/baf_beatfm.nss
Jaysyn904 94990edc60 Initial Upload
Initial Upload
2023-09-21 21:20:34 -04:00

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);
}
}