How to display param SCR_USER1 on HUD?

Hi, I’m new to MP. When I right-click on the HUD → User Item, I see a lot of values I can select from. I have a lua script that sets a value to SCR_USER1 variable and I was hoping to see that variable somewhere on that list of values, but it isn’t… Is there a way to show some “state” value on the HUD which I can also control from lua? (except gcs:send_text, it’s not always showing)

You can use the gcs:send_named_float(‘’, value) to send data to the ground station. You can find the value under the name MAV_ in the status window once it is received. You can have up to 10 different names under Mission Planner.

1 Like

awesome, works… (nowhere in the docs…) thanks!