Skip to content

Structure

GuzzenVonLidl edited this page Jun 20, 2016 · 3 revisions

For people interested in how it all works,

#Basic First 3 files you will never have to do anything with some rare exceptions

###Description.ext Handles configs and settings

###Mission.sqm Handel's all placed objects in the editor

###scriptComponent.hpp Macros used for all scripts including logging, go here to find the full list Note all macros are case sensitive

###Settings.hpp Similar to the Description however this file is to make it easier to configure

#Core In here are general functions all kinds of things. Then we have pre & postInit, This is the core of the framework because it gets values from the Description.ext and makes variables from it. This is also what initiates each module

#Modules Modules are the entire focus of this framework
Each module is categorised of scripts for a focused, organized and easy to configure system
Most settings will be found in the preInit.sqf.
defined as example: GVAR(Debug) = false;
Editors that's familiar to CBA's Macros will find this very easy to use

Clone this wiki locally