ArmaRAMDb - Installation

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

  1. Download latest release from Releases
  2. Extract zip file to Arma 3 directory
  3. 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!"
        }]);
    };
}];
  1. Create the initServer.sqf file in your mission folder and add the following code:
if (isServer || isDedicated) then {
    true spawn ramdb_db_fnc_init;
};