Installation
ArmaRAMDb
Prerequisites
- Network access
- Minimum 4GB RAM for optimal RAMDb performance
- Minimum 1 CPU Core
OS Compatibility
ArmaRAMDb is currently only compatible with Windows. Linux support planned for future release.
Installation Steps
- Download latest release from Releases
- Extract zip file to Arma 3 directory
- Create the
init.sqf
file in your mission folder and add the following code:
addMissionEventHandler ["ExtensionCallback", {
params ["_name", "_function", "_data"];
diag_log _this;
if (_name isEqualTo "ArmaRAMDb") then {
parseSimpleArray _data call (missionNamespace getVariable [_function, {
hint "Function does not exist!"
}]);
};
}];
- Create the
initServer.sqf
file in your mission folder and add the following code:
if (isServer || isDedicated) then {
true spawn ramdb_db_fnc_init;
};