Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Scripts] Add example to zPE META block #143

Merged
merged 1 commit into from
Jan 11, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,15 @@ META
After // comma separated list of scripts, after which this script should be parsed
};
```


!!! Example
This is an example of a META block, that will inject the script into the `Menu.dat` file, for `Gothic II Classic` and `Gothic II Addon` engines, after the `TestScript.d` and `HelpFunctions.d` scripts, for `GothicGame.mod` and `LHiver.mod`.
```dae
META
{
Parser = Menu;
After = TestScript.d, HelpFunctions.d;
Engine = G2, G2A;
Mod = GothicGame.mod, LHiver.mod;
};
```
Loading