@X3.TRT/GACTION$adx (1342) Erreur 39

SOLVED

 

hello every one

I get this error when I try to validate delivery is there a way to fix it?

Parents
  • +1
    verified answer

    Hi ,

    This means there is a missing script or a script with no management of the Header ACTION.

    Every X3 scripts in object mode need to start like this:

    $ACTION

    Case ACTION

      When "YOUR EVENT" : gosub "YOURLABEL"

    Endcase

    Return

    Your error means that X3 supervisor is trying to do the following:

    Gosub ACTION FROM YOURSCRIPT

    But either YOURSCRIPT.src doesn't exist, or YOURSCRIPT.src doesn't have the lines of code I've mentioned above.

Reply
  • +1
    verified answer

    Hi ,

    This means there is a missing script or a script with no management of the Header ACTION.

    Every X3 scripts in object mode need to start like this:

    $ACTION

    Case ACTION

      When "YOUR EVENT" : gosub "YOURLABEL"

    Endcase

    Return

    Your error means that X3 supervisor is trying to do the following:

    Gosub ACTION FROM YOURSCRIPT

    But either YOURSCRIPT.src doesn't exist, or YOURSCRIPT.src doesn't have the lines of code I've mentioned above.

Children