Skip to content

Instantly share code, notes, and snippets.

View julianpoma's full-sized avatar
✈️
Mambed

neucoas julianpoma

✈️
Mambed
View GitHub Profile
@julianpoma
julianpoma / wheel_brakes_legacy.lua
Created May 23, 2026 02:29
X-Plane 12: simulates the new wheel brake axis for legacy aircrafts
-- Mirror right toe brake axis to left toe brake axis
-- For whitelisted aircraft only
local SCRIPT_NAME = "wheel_brakes_legacy"
-- Add supported .acf filenames here
local whitelisted_acf = {
"A330.acf",
-- "Some_Other_Aircraft.acf",
}
@julianpoma
julianpoma / progressive_brakes.lua
Last active May 23, 2026 04:36
X-Plane 12: progressive single button brake (lua script)
-- progressive_brakes.lua
-- XP12 + FlyWithLua
-- Progressive both-brakes command for whitelisted aircraft only
-- Includes double-tap brake hold
local SCRIPT_NAME = "progressive_brakes"
------------------------------------------------------------
-- User configuration
------------------------------------------------------------