Initial Upload
Initial Upload
This commit is contained in:
29
_module/nss/baf_beatfm.nss
Normal file
29
_module/nss/baf_beatfm.nss
Normal file
@@ -0,0 +1,29 @@
|
||||
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);
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user