Standard mission functions for Arma 3.
- Addons: Set some mod specific standards.
- AI: Improve AI detection and sharing of players.
- doSuppress: Let's AI Units suppress target positions or players inside an area.
- Misc: Various functions that should be present in every Mission.
- Copy the folder
xru
into your mission folder root. - Include
xru\CfgFunctions.hpp
in yourdescription.ext
's CfgFunctions-class. - Include
xru\params.hpp
in yourdescription.ext
's params-class.
If you want to use only part of the package, comment out the includes inside the above mentioned files and delte the respecting folders. Only deleting the folders will make your game crash!
If you do not know how to use description.ext, click this link.
author = "yourName";
onLoadName = "your missions name";
onLoadMission = "your missions description";
overviewText = "your missions description";
class CfgFunctions {
#include "xru\CfgFunctions.hpp"
};
class params {
#include "xru\params.hpp"
};
- Addons: Einige modspezifische Standardeinstellungen.
- AI: Verbessert Erkennung von Spielern und Teilen von Informationen durch KI.
- doSuppress: Lässt KI ein Gebiet oder Spieler innerhalb eines Gebiets unterdrücken.
- Misc: Verschiedene Funktionen, die in einer Mission nützlich sind.
- Kopiere den Ordner
xru
in dein Missionsverzeichnis. - Inkludiere die Datei
xru\CfgFunctions.hpp
in die CfgFunctions-Klasse deinerdescription.ext
. - Inkludiere die Datei
xru\params.hpp
in die params-Klasse deinerdescription.ext
.
Wenn du nur manche Teile des Paketes nutzen willst, kommentiere die Includes innerhalb der oben genannten Dateien aus und lösche die entsprechenden Ordner. Die Ordner nur zu löschen wird das Spiel abstürzen lassen!
Wenn du nicht weißt, wie die description.ext
funktioniert, folge diesem Link.
author = "Dein Name";
onLoadName = "Dein Missionsname";
onLoadMission = "Deine Missionsbeschreibung";
overviewText = "Deine Missionsbeschreibung";
class CfgFunctions {
#include "xru\CfgFunctions.hpp"
};
class params {
#include "xru\params.hpp"
};