Namalsk Bandit Castle

Zeehond23

Valued Member!
Hi!

I kinda found Namalsk lacked a castle, among other things, so this is one of my many map additions for our Namalsk server. It's a landfort build long ago to defend the entrance to Lubjansk Bay.

2lmmdck.jpg

28armfc.jpg

2e5p9hg.jpg

2i8x0fb.jpg


(more pictures: http://www.megafileupload.com/en/file/460118/frps-rar.html )

To add this:
create "castle.sqf"
place this code in there http://pastebin.com/CDpjF1aX
save
place in in the root of your mission pbo

in your init add
Code:
[] execVM "castle.sqf";

save, repack, upload.

On my own server I have SARGE AI guarding the place. The markers I use:

Infantry:
_this = createMarker ["SAR_marker_castle_2", [4704.5161, 10082.889]];
_this setMarkerShape "ELIPSE";
_this setMarkeralpha 0;
_this setMarkerType "Flag";
_this setMarkerBrush "Solid";
_this setMarkerSize [100, 100];
SAR_marker_castle_2 = _this;

Helicopter:
_this = createMarker ["SAR_marker_castle_2_heli", [4704.5161, 10082.889]];
_this setMarkerShape "ELIPSE";
_this setMarkeralpha 0;
_this setMarkerType "Flag";
_this setMarkerBrush "Solid";
_this setMarkerSize [400, 400];
SAR_marker_castle_2_heli = _this;


For a map marker add:
Code:
_marker = createMarker ["BC2", [4704.5161, 10082.889]];
_marker setMarkerText "Bandit Castle";
_marker setMarkerType "mil_objective";
_marker setMarkerColor "ColorBlack";
marker = _BC2;



Come check out this and more map additions on the server!
 
Back
Top