Agia Marina pier bridge
[
[2714,5595,0],
0,
"Land_nav_pier_m_F",
10,
40,
0,
0
] call fnc_bridgeA3;
Agia Marina foot bridge
[
[2740,5640,0],
60,
"Land_Pier_small_F",
10,
3.5,
30.65,
0
] call fnc_bridgeA3;
Foot bridge to Skalisky
[
[13556,3836,2.5],
192,
"Land_Nav_Boathouse_PierT",
11,
3.5,
30.65,
0
] call fnc_bridgeA2;
Pier bridge to Skalisky
[
[13640.5,3862.64,-1],
105,
"Land_nav_pier_m_2",
11,
40,
0,
0
] call fnc_bridgeA2;
One important note on playing with ArmA 2 editor and loading missions that have init.sqf file. ArmA 2 will run init.sqf twice, supposedly once for the server instance. isServer won’t help so use the following code to run your code only once:
if (isNil "oneTime") then {
oneTime = true;
//your code
};
Enjoy,
KK