renegade2k6
Member



Download the following file.
https://dl.dropboxusercontent.com/u/30551655/NovyLugBase.sqf (Right click and save as)
Or create NovyLugBase.sqf and copy contents from http://pastebin.com/iXFFVG7m into it.
Place this into the root of your mission file.
Open up init.sqf and add
Code:
[] ExecVM "NovyLugBase.sqf";
To the bottom. Save. Repack .pbo and upload to your server.
If you want to add SARGE AI into the base the marker is.


Code:
// Novy Lug Base
_this = createMarker ["SAR_patrol_novylugbase", [9563.24, 11307.8, 0]];
_this setMarkerShape "RECTANGLE";
_this setMarkeralpha 0;
_this setMarkerType "Flag";
_this setMarkerBrush "Solid";
_this setMarkerSize [10, 10];
SAR_marker_novylugbase = _this;
and to spawn the AI
Code:
//Novy Lug Base Spawn
[SAR_marker_novylugbase,1,0,5,"patrol",true] call SAR_AI;
[SAR_marker_novylugbase,1,0,5,"patrol",true] call SAR_AI;
[SAR_marker_novylugbase,1,0,5,"patrol",true] call SAR_AI;
Oviously changing to suit yourself.