1. USE AZERTY
ERROR 4025: Unknown USE statementThe Configuration statement you've entered hasn't been recognised. Possibly you've misspelled it?
2. c macro2
ERROR 2020: Unknown key press in a button statement
The compiler couldn't work out what key you were trying to generate. Some reasons why you might see this error include:
1.) Incorrect key syntax eg. UAROW instead of UARROW
2.) Macro spelling differs from the macro in the macro file (I see this one a lot in files sent to me!). So if in your macro file you have:
Attack_my_target = a b c d
and in your joystick file:
BTN H4U Atack_my_target Rem Incorrect spelling
BTN H3L Attack my target Rem Compiler will think this is 3 separate macros as spaces aren't allowed in macro names.
then you'll generate this compiler error.
3.) The macro actually doesn't exist in your macro file. Eg.
BTN S1 Autopilot
but you don't have a macro defined for Autopilot in your macro file.