PatrickAWlson Posted October 23, 2022 Posted October 23, 2022 Two digit German numeric codes are bugged. 10 will appear properly on the left side of the aircraft but will appear as 01 on the right side. I can see where this gets tricky since the numbers in positions 1 and two must be reversed but geschwader symbols must not be. Also, if one of the slots is a space, indicating a number from 1-9, then you probably don't want to reverse the numbers either. String reverseRightSideOfGermanAircraft (String tacticalCode) { // Reverse spots 1 and 2 if and only if both are numeric if (tacticalCode[0] between 0 and 9 and tacticalCode[1] between 0 and 9) { temp = tacticalCode[0]; tacticalCode[0] = tacticalCode[1]; tacticalCode[1] = temp; } return tacticalCode; }
1CGS Regingrave- Posted October 24, 2022 1CGS Posted October 24, 2022 On what plane? Those with geschwader symbols are not bugged, they're not supported. And that's why you can't set two-digit code in the game. There can be only two-digit number, mirrored on the other side, or symbol and digit that are not mirrored.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now