Probably not exactly what you want but this mod has some
great parachutes (shameless plug
)
What I gather is that you want a device that an actor can hold that makes a parachute for them. It wouldn't be hard, just have the device gib into a parachute craft from one of the mods when it's pressed and the rest should happen automatically.
Basically just make an object that does nothing and attach this script to it:
function Create(self)
end
function Update(self)
if UInputMan:MouseButtonPressed() then
self:GibThis()
end
end
function Destroy(self)
end
Note that this is untested and will only work with a mouse (assuming I got the right function). There are a lot of better ways to do this that would work with non mouse controls and would allow you to keep the device and so on but I don't want to spend the time writing it at the moment, sorry. Maybe I'll edit it in or maybe someone else will write it up for you.