Page 1 of 1
Vertrep
Posted: Mon Mar 30, 2015 9:51 am
by George Patton
Is the Vertrep possible? Some US Navy warships, especially during the '80s had no helo on board, but had Vertrep capacity.
RE: Vertrep
Posted: Mon Mar 30, 2015 12:47 pm
by dandin384
At this point vertrep is not modeled. You will have to have a auxiliary ship that is capable of UNREP.
RE: Vertrep
Posted: Mon Mar 30, 2015 5:08 pm
by dcpollay
Is it possible to simulate this through the teleport function? Have a helo hover over a target ship for a period of time, triggering teleport of weapons/supplies into the ship's magazines?
Scenario designer would need to have a supply of the right materials stashed at the North Pole....Anticipating the appropriate items to be replenished.
RE: Vertrep
Posted: Mon Mar 30, 2015 5:26 pm
by jarraya
One possible way of doing this is with Lua. You can use the DeleteUnit and AddUnit functions.
Create and action that triggers when helicopter is on station (you will need a set of moving RPs around the ship.
Delete the ship
Add the same ship in the same location that the old one was on.
RE: Vertrep
Posted: Mon Mar 30, 2015 11:06 pm
by dandin384
ORIGINAL: Colonel Mustard
Is it possible to simulate this through the teleport function? Have a helo hover over a target ship for a period of time, triggering teleport of weapons/supplies into the ship's magazines?
Scenario designer would need to have a supply of the right materials stashed at the North Pole....Anticipating the appropriate items to be replenished.
Also not currently possible. The event editor only lets you teleport units, not ammunition.
ORIGINAL: jarraya
One possible way of doing this is with Lua. You can use the DeleteUnit and AddUnit functions.
Create and action that triggers when helicopter is on station (you will need a set of moving RPs around the ship.
Delete the ship
Add the same ship in the same location that the old one was on.
True, but there are some other factors that would need to be considered. Things like fuel state and damage control would have to be replicated by the Lua unit as well. Since it's hard to predict damage before it occurs the cloned unit would have to be update right before transfer. So while it's possible with Lua it would be a fair amount of work.