This is a base to create any new missions. Check config.sqf
for changing a few settings.
The loadout scripts are exported from arsenal, we have a custom arsenal EXPORT function that will create proper loadout scripts, mainly to handle ACRE.
Note that this only works in the GAME, not in EDEN arsenal editor.
Edit _loadout.config.sqf
in the folder loadouts
after your needs.
It works after the unit's classname, which you can see when hovering the unit in the EDEN Editor.
Add or edit the entries in _loadout_config.sqf
after the classname and a corresponding script file in loadouts
folder.
This is a example entry:
["B_officer_F", "plt.sqf"],
It means for units of type "B_officer_F", run the script "plt.sqf" Make sure that the last entry does not have a trailing comma, everyone before that must have it.
For example on how to reuse files, see rifleman_at.sqf, plt.sqf, and pilot.sqf. #include
means: take the file and paste it on this line
If you DONT want to use loadouts, comment or remove line 16 in description.ext
It's safe to delete the loadouts
folder after that
The scripts
folder have plenty of useful scripts to use in the the mission
Open them up and see how to use them!
It's safe to delete the scripts
folder if you're not using anything from there.