11
GSX Support MSFS / GSX Profile "none" Parking Space
« Last post by hvxnuvx on July 23, 2025, 01:05:22 pm »Hello! This is my first post, so forgive me if I'm not doing something right.
I need some help regarding creating a GSX Profile for an airport. I'm making a python script so that my parking spots can be neatly grouped and so I can have multiple stop positions for different aircraft. The problem I'm having is that one of the gates isn't in the "GATE" category. When I look in the .ini file, the gate is called [none 0].
These are the things I have tried so far (separately, but for brevity I'll put it all in one snippet):
Any help would be greatly appreciated! Thank you!
I need some help regarding creating a GSX Profile for an airport. I'm making a python script so that my parking spots can be neatly grouped and so I can have multiple stop positions for different aircraft. The problem I'm having is that one of the gates isn't in the "GATE" category. When I look in the .ini file, the gate is called [none 0].
These are the things I have tried so far (separately, but for brevity I'll put it all in one snippet):
Code: [Select]
parkings = {
0 : (TerminalGate5, Gate5Offset),
"None 0" : (TerminalGate5, Gate5Offset),
"none 0" : (TerminalGate5, Gate5Offset),
GATE: {
0 : (TerminalGate5, Gate5Offset),
"None 0" : (TerminalGate5, Gate5Offset)
},
PARKING: {
0 : (TerminalGate5, Gate5Offset),
"None 0" : (TerminalGate5, Gate5Offset)
},
NONE: {
0 : (TerminalGate5, Gate5Offset)
},
RAMP: {
0 : (TerminalGate5, Gate5Offset)
}
}
Some of these resulted in the .py file not being loaded at all, some caused couatl to crash, and the rest had no effect. I tried "RAMP," because in the GSX menu in-game, it is in a "Ramp" group, and it is the only ramp in that group. Within that group, it is called "Ramp 0." That being said, the in-game menu says I am parked at "None 0"Any help would be greatly appreciated! Thank you!