Skip to content

LHiver Mod: warning messages at start #826

@Try

Description

@Try

LHiver Mod recognizes new game as outdated save, and print following message:

Image

Routine directly responsible for printing:

func void B_MOD_VERSION() {
  if (VERSION_CHECK_13 == FALSE) {
    AI_PRINTSCREEN("Achtung!", -1, 11, FONT_SCREENBRIGHTLARGE, 7);
    AI_PRINTSCREEN("Alter Spielstand geladen", -1, 14, FONT_SCREENBRIGHTLARGE, 8);
    AI_PRINTSCREEN("damit die Mod richtig funktioniert", -1, 17, FONT_SCREENBRIGHTLARGE, 9);
    AI_PRINTSCREEN("Start", -1, 20, FONT_SCREENBRIGHTLARGE, 10);
    AI_PRINTSCREEN("Neues Spiel!", -1, 23, FONT_SCREENBRIGHTLARGE, 11);
  };
};

B_MOD_VERSION is called at the end of INIT_* function, such as INIT_NEWWORLD.

Here VERSION_CHECK_13 is false, due to been not yet initialized.
VERSION_CHECK_13 will be set to true later by DIA_XARDAS_HELLO_INFO dialog.

It appears, that mod expects dialog to run ahead of INIT_* calls.

Metadata

Metadata

Assignees

No one assigned

    Labels

    help wantedExtra attention is neededinvalidThis doesn't seem rightmod

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions