ORBITER-FORUM will be temporarily closed at 2026-07-23 18:00 UTC while we complete some OF maintenance tasks. The amount of downtime is expected to take up to one hour, but probably less.

Orcus Patera
![]()
Thought so. What threw me off was it obviously isn't in Orcus Paterae, but somewhere in the vicinity of Valles Marineris. What's the long and lat?
I hate to be that guy, but what add-on's are you using?
I was not aware UCGO stuff worked with 2016? Or The XR stuff either??
1.UCGO for the Arrow and Azure meshes.
The Arrow has been converted to a Spacecraft4 vessel
-external animations, VC, 2 MFDS (no buttons working) thrusters, engines etc. And assisted by a lua script.
-animations in VC, lights, attachments management, O2, additional functional displays and more.
...
The Azure Rover has been converted to Fred18's GeneralVehicle.
2.XR2 for Orbiter 2016. You just can't do anything UMmu related. (Crew egress, ingress and transfer have been disabled).
Lee's and Kara's meshes have also been turned into GV. In order for them to be able to maneuver in space, I added attitude thrusters in the GV config file.
GeneralVehicle wasn't very happy with this, so I had to recompile it, disabling the GV controls when the "vehicles" are not in contact with a surface.
That single line of added code allows to turn any mesh into a vessel that maneuvers in space like a spacecraft and behaves like a car when it's on the surface. Works great.
3.The 2001 pod is from Gattispilot's and BenSisko's "Vessel's of 2001 and 2010" with the simple addition of a config file to turn it into XR2 payload. It works just fine in Orbiter 2016, animations included.
4.Orcus Patera (customized).
Probably forgetting some stuff but that's the basic setup.
:tiphat:I think you meant, 79.99°W 5.43°S

Can you use the scripts, when not focused on the vessel ?
shiph = oapi.get_objhandle("Arrow")
shiph2 = oapi.get_objhandle("XR2-Fox")
v = vessel.get_interface(shiph)
v2 = vessel.get_interface(shiph2)
alt1 = v:get_altitude()
alt2 = v2:get_altitude()
The SC4 Arrow seems very stable on the surface, great work there!

dgatsoulis, can you share the "addon" on the forum ? I'd love to fly to that base![]()
Thanks for testing them :thumbup:Thanks to kuddel for extending the lua script functions.![]()
I used defset_status to set the Arrow landed, when certain criteria are met. (speed < 0.2 m/s and contact with the surface).
Fred18 has published the code of GV, so I borrowed the part that sets the arot and vrot parameters and created a function in lua that sets the vessel landed.