Jump to content

vtgdias

Members
  • Posts

    6
  • Joined

  • Last visited

Everything posted by vtgdias

  1. I am trying to copy waypoints from group1(Air CLIENT group) to group2 (Air CLIENT group), that way i dont need to do it manually on ME as all the groups have the same waypoints on my missions
  2. Can you show me an example using ATME?
  3. I think the problem is because i am trying to edit from a "client" group, if it is AI, it does not show me the error. Does anyone know if some framework is capable of altering a client (not AI ) properties?
  4. @Habu_69 When i check dcs.log, it tells me, from the prints of MOOSE script (on mission start) that Viper is indeed the group recognized, thats why i cant understand the nil value. Iam pasting part of dcs.log
  5. Hi guys, I am trying to copy route points from a group object (plane) to others on mission start. I trying to do like that: local copy = true local squadrons = { "Bear", "Falcon" } if copy == true then group1 = GROUP:FindByName("viper") local route = group1:CopyRoute(1, 0, false, 0) for i,squad in pair(squadrons) do local group2 = GROUP:FindByName(squad) group2:Route(route, 1) end end Is that a correct aproach? Another problem is that when i run group1 = GROUP:FindByName..., i am getting "attempt to index global 'group1' (a nil value)" in DCS log despite the moose.lua file being correctly loaded (dcs log tells that moose is loaded).
  6. Insert points or retask route I was trying to make a mission where i could "copy" the route (waypoints) from a group unit (client) to another group units (clients also). I have over 10 squadrons in one mission, all using the same waypoints (in the way that i only need to set one group and the rest is automatic). I was trying with MIST but can't make it work. Is it possible with MOOSE?
×
×
  • Create New...