diff --git a/.config/nextest.toml b/.config/nextest.toml new file mode 100644 index 0000000..99a43a8 --- /dev/null +++ b/.config/nextest.toml @@ -0,0 +1,8 @@ +experimental = ["setup-scripts"] + +[[profile.default.scripts]] +filter = 'all()' +setup = 'test-data-setup' + +[script.test-data-setup] +command = 'cargo run -p aff-test-data-setup' diff --git a/.gitattributes b/.gitattributes index 48aa3cb..94f480d 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,3 +1 @@ -* text=auto eol=lf - -tests/test-data/** linguist-generated \ No newline at end of file +* text=auto eol=lf \ No newline at end of file diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml new file mode 100644 index 0000000..90bcb64 --- /dev/null +++ b/.github/workflows/coverage.yml @@ -0,0 +1,45 @@ +on: + pull_request: + branches: + - main + +name: Test coverage + +jobs: + coverage: + name: Collect test coverage + runs-on: ubuntu-latest + + env: + CARGO_TERM_COLOR: always + steps: + - name: Checkout + uses: actions/checkout@v4 + + - uses: dtolnay/rust-toolchain@stable + with: + components: llvm-tools-preview + - uses: Swatinem/rust-cache@23bce251a8cd2ffc3c1075eaa2367cf899916d84 # v2 + + - name: Install latest nextest release + uses: taiki-e/install-action@af5d802f13195cc3a6becf3d19d72f7de93908d8 # v2 + with: + tool: nextest + - name: Install cargo-llvm-cov + uses: taiki-e/install-action@af5d802f13195cc3a6becf3d19d72f7de93908d8 # v2 + with: + tool: cargo-llvm-cov + + - name: Collect coverage data + run: | + cargo llvm-cov --no-report nextest + cargo llvm-cov report --lcov --output-path lcov.info + env: + AFF_TEST_DATA_PW: ${{ secrets.AFF_TEST_DATA_PW }} + + - name: Upload coverage data to codecov + uses: codecov/codecov-action@5ecb98a3c6b747ed38dc09f787459979aebb39be # v4 + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} + with: + files: lcov.info diff --git a/.gitignore b/.gitignore index 54e5561..285a5f0 100644 --- a/.gitignore +++ b/.gitignore @@ -1,14 +1,7 @@ -/target -/Cargo.lock - -tarpaulin-report.html -*.profraw +/arma-file-formats/tests/real_virtuality/test-data/* -/tests/test-data/paa_out -/tests/test-data/pbo_out - -/tests/test-data/p3d_in -/tests/test-data/wrp_in -/tests/test-data/util_out +/target +Cargo.lock -/tests/test-data/pbo_in/projeta3-10.pbo \ No newline at end of file +.env +lcov.info diff --git a/Cargo.toml b/Cargo.toml index 24dd749..d7d40e8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,53 +1,8 @@ -[package] -name = "rvff" -version = "0.1.0" -edition = "2021" -description = "Pure rust implementation of most of the Real Virtuality file formats." -license = "MIT" -repository = "https://github.com/arma-tools/rvff/" -readme = "README.md" -keywords = ["pbo", "paa", "p3d", "wrp", "real-virtuality", "decoding"] -categories = ["decoding", "parser-implementations", "parsing"] - -[lib] -crate-type = ["lib", "staticlib"] - -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html - -[dependencies] -byteorder = "1.4.3" -num_enum = "0.6.1" - -binrw = "0.11.2" - -rayon = { version = "1.5.1", optional = true } -anyhow = "1.0.53" -thiserror = "1.0.30" - -derivative = "2.2.0" - -# Paa -squish = "2.0.0-beta1" - -# PBO -indexmap = "2.0.0" -sha-1 = "0.10.1" - -# Sign -rsa = { version = "0.9.2" } -rand = { version = "0.8.5" } -getrandom = { version = "0.2", features = ["js"] } - -# Rap -ariadne = "0.3.0" -chumsky = "0.9.0" - -# LZO -lzokay-native = "0.1" - -[dev-dependencies] -image = "0.24.6" -serial_test = "2.0.0" - -[features] -parallel = ["squish/rayon", "rayon"] +[workspace] +members = [ + "arma-file-formats", + "arma-file-formats-cli", + "arma-file-formats/tests/test-data-setup", +] + +resolver = "2" diff --git a/arma-file-formats-cli/Cargo.toml b/arma-file-formats-cli/Cargo.toml new file mode 100644 index 0000000..bf52c6c --- /dev/null +++ b/arma-file-formats-cli/Cargo.toml @@ -0,0 +1,16 @@ +[package] +name = "arma-file-formats-cli" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +arma-file-formats = { path = "../arma-file-formats" } +clap = { version = "4.5.4", features = ["derive"] } + +[features] +default = ["real_virtuality", "enfusion"] + +real_virtuality = [] +enfusion = [] diff --git a/arma-file-formats-cli/src/main.rs b/arma-file-formats-cli/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/arma-file-formats-cli/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +} diff --git a/arma-file-formats/Cargo.toml b/arma-file-formats/Cargo.toml new file mode 100644 index 0000000..a096fde --- /dev/null +++ b/arma-file-formats/Cargo.toml @@ -0,0 +1,57 @@ +[package] +name = "arma-file-formats" +version = "0.1.0" +edition = "2021" +description = "Pure rust implementation of most of the Real Virtuality & Enfusion file formats." +license = "MIT" +repository = "https://github.com/arma-tools/arma-file-formats/" +readme = "README.md" +keywords = ["pbo", "paa", "p3d", "wrp", "real-virtuality", "decoding"] +categories = ["decoding", "parser-implementations", "parsing"] + +[lib] +crate-type = ["lib", "staticlib"] + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +byteorder = "1.4.3" +num_enum = "0.6.1" + +binrw = "0.11.2" + +rayon = { version = "1.5.1", optional = true } +anyhow = "1.0.53" +thiserror = "1.0.30" + +derivative = "2.2.0" + +# Paa +squish = "2.0.0-beta1" + +# PBO +indexmap = "2.0.0" +sha-1 = "0.10.1" + +# Sign +rsa = { version = "0.9.2" } +rand = { version = "0.8.5" } +getrandom = { version = "0.2", features = ["js"] } + +# Rap +ariadne = "0.3.0" +chumsky = "0.9.0" + +# LZO +lzokay-native = "0.1" + +[dev-dependencies] +image = "0.24.6" +serial_test = "2.0.0" + +[features] +default = ["real_virtuality", "enfusion"] + +parallel = ["squish/rayon", "rayon"] +real_virtuality = [] +enfusion = [] diff --git a/arma-file-formats/src/enfusion/mod.rs b/arma-file-formats/src/enfusion/mod.rs new file mode 100644 index 0000000..e69de29 diff --git a/src/errors/mod.rs b/arma-file-formats/src/errors/mod.rs similarity index 76% rename from src/errors/mod.rs rename to arma-file-formats/src/errors/mod.rs index 5377ab4..afe0116 100644 --- a/src/errors/mod.rs +++ b/arma-file-formats/src/errors/mod.rs @@ -17,7 +17,7 @@ pub enum PaaError { PaaLzoErr(#[from] lzokay_native::Error), #[error("LZSS Error")] - RvffLzssError(#[from] RvffLzssError), + LzssError(#[from] LzssError), #[error("Invalid state")] InvalidState, @@ -26,8 +26,11 @@ pub enum PaaError { Unknown, } -#[derive(Debug, PartialEq, Eq, Clone, Copy, Error)] -pub enum RvffLzssError { +#[derive(Debug, Error)] +pub enum LzssError { + #[error("IO failed")] + IOError(#[from] io::Error), + #[error("LZSS Checksum Missmatch")] ChecksumMissmatch, @@ -36,7 +39,7 @@ pub enum RvffLzssError { } #[derive(Debug, PartialEq, Eq, Clone, Copy, Error)] -pub enum RvffOdolError { +pub enum OdolError { #[error("Signature Missing")] SignatureMissing, @@ -48,21 +51,21 @@ pub enum RvffOdolError { } #[derive(Debug, Error)] -pub enum RvffError { +pub enum AffError { #[error("IO failed {0}")] - RvffIOError(#[from] io::Error), + IOError(#[from] io::Error), #[error("FromUTF8 failed {0}")] - RvffUTFError(#[from] FromUtf8Error), + UTFError(#[from] FromUtf8Error), #[error("Binrw failed {0}")] - RvffBinrwError(#[from] binrw::Error), + BinrwError(#[from] binrw::Error), #[error("LZSS Error")] - RvffLzssError(#[from] RvffLzssError), + LzssError(#[from] LzssError), #[error("ODOL Error")] - RvffOdolError(#[from] RvffOdolError), + OdolError(#[from] OdolError), #[error("Invalid file")] InvalidFileError, @@ -74,5 +77,5 @@ pub enum RvffError { Unknown, #[error("Parsing failed: {0}")] - RvffParseError(String), + ParseError(String), } diff --git a/src/lib.rs b/arma-file-formats/src/lib.rs similarity index 84% rename from src/lib.rs rename to arma-file-formats/src/lib.rs index 07c70f3..134fd6b 100644 --- a/src/lib.rs +++ b/arma-file-formats/src/lib.rs @@ -16,13 +16,10 @@ #![allow(clippy::float_cmp)] #![allow(clippy::multiple_crate_versions)] -pub mod core; +pub mod errors; -pub mod p3d; -pub mod paa; -pub mod pbo; -pub mod rap; -pub mod sign; -pub mod wrp; +#[cfg(feature = "real_virtuality")] +pub mod real_virtuality; -pub mod errors; +#[cfg(feature = "enfusion")] +pub mod enfusion; diff --git a/src/core/binrw_utils.rs b/arma-file-formats/src/real_virtuality/core/binrw_utils.rs similarity index 99% rename from src/core/binrw_utils.rs rename to arma-file-formats/src/real_virtuality/core/binrw_utils.rs index 6f6c6aa..68fb07a 100644 --- a/src/core/binrw_utils.rs +++ b/arma-file-formats/src/real_virtuality/core/binrw_utils.rs @@ -8,7 +8,7 @@ use binrw::Endian; use lzokay_native::decompress; use rsa::BigUint; -use crate::p3d::ODOLArgs; +use crate::real_virtuality::p3d::ODOLArgs; use super::decompress_lzss; use super::types::STPair; diff --git a/src/core/lzss.rs b/arma-file-formats/src/real_virtuality/core/lzss.rs similarity index 86% rename from src/core/lzss.rs rename to arma-file-formats/src/real_virtuality/core/lzss.rs index e92715a..5e55c6f 100644 --- a/src/core/lzss.rs +++ b/arma-file-formats/src/real_virtuality/core/lzss.rs @@ -7,13 +7,13 @@ use std::{ use byteorder::{LittleEndian, ReadBytesExt}; -use crate::errors::{RvffError, RvffLzssError}; +use crate::errors::{AffError, LzssError}; pub fn decompress_lzss( reader: &mut R, expected_size: usize, use_signed_checksum: bool, -) -> Result<(u64, Vec), RvffLzssError> +) -> Result<(u64, Vec), LzssError> where R: Read + Seek, { @@ -24,7 +24,7 @@ where return Ok((0, Vec::new())); } - let pos = reader.stream_position().unwrap(); + let pos = reader.stream_position()?; let mut remaining_size = expected_size; let mut num2: i32 = 0; @@ -38,19 +38,19 @@ where while remaining_size > 0 { num5 >>= 1; if (num5 & 256) == 0 { - let val = reader.read_u8().unwrap(); + let val = reader.read_u8()?; num5 = i32::from(val) | 65280; } if (num5 & 1) == 0 { - let mut i = i32::from(reader.read_u8().unwrap()); - let mut val = i32::from(reader.read_u8().unwrap()); + let mut i = i32::from(reader.read_u8()?); + let mut val = i32::from(reader.read_u8()?); i |= (val & 240) << 4; val &= 15; val += 2; let mut j = num4 - i; let num8 = val + j; if (val + 1) as usize > remaining_size { - return Err(RvffLzssError::Overflow); + return Err(LzssError::Overflow); } while j <= num8 { let num6 = array[(j & 4095) as usize]; @@ -68,7 +68,7 @@ where j += 1; } } else { - let val = reader.read_u8().unwrap(); + let val = reader.read_u8()?; if use_signed_checksum { calculated_hash += i32::from(val as i8); } else { @@ -83,15 +83,15 @@ where } } - let hash = reader.read_i32::().unwrap(); + let hash = reader.read_i32::()?; if hash != calculated_hash { - return Err(RvffLzssError::ChecksumMissmatch); + return Err(LzssError::ChecksumMissmatch); } - let size = reader.stream_position().unwrap() - pos; + let size = reader.stream_position()? - pos; Ok((size, dst)) } -pub fn decompress_lzss_unk_size(reader: &mut R) -> Result, RvffError> +pub fn decompress_lzss_unk_size(reader: &mut R) -> Result, AffError> where R: Read + Seek, { @@ -105,8 +105,7 @@ where let threshold: i32 = 2; let mut text_buffer = vec![0_u8; (sliding_winding_size + best_match - 1) as usize]; - let mut out = Vec::new(); - out.reserve(in_size as usize * 4); + let mut out = Vec::with_capacity(in_size as usize * 4); let mut check_sum = 0_i32; let mut flags = 0_i32; @@ -161,14 +160,14 @@ where out.truncate(size); Ok(out) } else { - Err(RvffError::Unknown) + Err(AffError::Unknown) } } pub fn check_for_magic_and_decompress_lzss( reader: &mut R, magic: &[u8], -) -> Result>, RvffError> +) -> Result>, AffError> where R: Read + Seek, { @@ -194,7 +193,7 @@ where pub fn check_for_magic_and_decompress_lzss_file>( path: P, magic: &[u8], -) -> Result { +) -> Result { let mut file = File::open(&path)?; let uncomp_data = check_for_magic_and_decompress_lzss(&mut file, magic)?; diff --git a/src/core/mod.rs b/arma-file-formats/src/real_virtuality/core/mod.rs similarity index 100% rename from src/core/mod.rs rename to arma-file-formats/src/real_virtuality/core/mod.rs diff --git a/src/core/read.rs b/arma-file-formats/src/real_virtuality/core/read.rs similarity index 100% rename from src/core/read.rs rename to arma-file-formats/src/real_virtuality/core/read.rs diff --git a/src/core/types.rs b/arma-file-formats/src/real_virtuality/core/types.rs similarity index 100% rename from src/core/types.rs rename to arma-file-formats/src/real_virtuality/core/types.rs diff --git a/src/core/write.rs b/arma-file-formats/src/real_virtuality/core/write.rs similarity index 100% rename from src/core/write.rs rename to arma-file-formats/src/real_virtuality/core/write.rs diff --git a/arma-file-formats/src/real_virtuality/mod.rs b/arma-file-formats/src/real_virtuality/mod.rs new file mode 100644 index 0000000..4657bdd --- /dev/null +++ b/arma-file-formats/src/real_virtuality/mod.rs @@ -0,0 +1,7 @@ +pub mod core; +pub mod p3d; +pub mod paa; +pub mod pbo; +pub mod rap; +pub mod sign; +pub mod wrp; diff --git a/src/p3d/animations.rs b/arma-file-formats/src/real_virtuality/p3d/animations.rs similarity index 99% rename from src/p3d/animations.rs rename to arma-file-formats/src/real_virtuality/p3d/animations.rs index b2c9ff9..fa991e6 100644 --- a/src/p3d/animations.rs +++ b/arma-file-formats/src/real_virtuality/p3d/animations.rs @@ -2,7 +2,7 @@ use binrw::BinRead; use binrw::NullString; use derivative::Derivative; -use crate::core::types::XYZTriplet; +use crate::real_virtuality::core::types::XYZTriplet; use super::ODOLArgs; diff --git a/src/p3d/enums.rs b/arma-file-formats/src/real_virtuality/p3d/enums.rs similarity index 100% rename from src/p3d/enums.rs rename to arma-file-formats/src/real_virtuality/p3d/enums.rs diff --git a/src/p3d/face_data.rs b/arma-file-formats/src/real_virtuality/p3d/face_data.rs similarity index 100% rename from src/p3d/face_data.rs rename to arma-file-formats/src/real_virtuality/p3d/face_data.rs diff --git a/src/p3d/lod.rs b/arma-file-formats/src/real_virtuality/p3d/lod.rs similarity index 99% rename from src/p3d/lod.rs rename to arma-file-formats/src/real_virtuality/p3d/lod.rs index 36e932c..3c38cfa 100644 --- a/src/p3d/lod.rs +++ b/arma-file-formats/src/real_virtuality/p3d/lod.rs @@ -1,4 +1,4 @@ -use crate::core::{ +use crate::real_virtuality::core::{ binrw_utils::{ decompress_array, read_compressed, read_compressed_array, read_compressed_size_cond, read_condensed_array_cond, read_normals_parse, read_st_parse, read_vertex_index_array, diff --git a/src/p3d/mod.rs b/arma-file-formats/src/real_virtuality/p3d/mod.rs similarity index 100% rename from src/p3d/mod.rs rename to arma-file-formats/src/real_virtuality/p3d/mod.rs diff --git a/src/p3d/model_info.rs b/arma-file-formats/src/real_virtuality/p3d/model_info.rs similarity index 96% rename from src/p3d/model_info.rs rename to arma-file-formats/src/real_virtuality/p3d/model_info.rs index b6a38c7..7262b53 100644 --- a/src/p3d/model_info.rs +++ b/arma-file-formats/src/real_virtuality/p3d/model_info.rs @@ -1,11 +1,11 @@ -use crate::core::types::RGBAColor; -use crate::core::types::XYZTriplet; +use crate::real_virtuality::core::types::RGBAColor; +use crate::real_virtuality::core::types::XYZTriplet; use binrw::BinRead; use binrw::NullString; use super::skeleton::Skeleton; use super::ODOLArgs; -use crate::core::binrw_utils::read_compressed_array; +use crate::real_virtuality::core::binrw_utils::read_compressed_array; use derivative::Derivative; #[allow(clippy::struct_excessive_bools)] diff --git a/src/p3d/odol.rs b/arma-file-formats/src/real_virtuality/p3d/odol.rs similarity index 93% rename from src/p3d/odol.rs rename to arma-file-formats/src/real_virtuality/p3d/odol.rs index c77742a..bc55138 100644 --- a/src/p3d/odol.rs +++ b/arma-file-formats/src/real_virtuality/p3d/odol.rs @@ -9,8 +9,8 @@ use std::{ path::Path, }; -use crate::core::decompress_lzss_unk_size; -use crate::{errors::RvffError, p3d::model_info::ModelInfo}; +use crate::real_virtuality::core::decompress_lzss_unk_size; +use crate::{errors::AffError, real_virtuality::p3d::model_info::ModelInfo}; use derivative::Derivative; use super::animations::Animations; @@ -30,7 +30,7 @@ pub struct ODOLOptions { pub skip_lods: bool, } -#[derive(Debug, Default, PartialEq, Clone, BinRead)] +#[derive(Debug, Default, PartialEq, Clone, BinRead)] #[br(magic = b"ODOL")] #[br(import(options: ODOLOptions))] pub struct ODOL { @@ -207,27 +207,27 @@ impl ODOL { Self::default() } - pub fn from_path>(path: P) -> Result { + pub fn from_path>(path: P) -> Result { let file = File::open(path)?; let mut buf_reader = BufReader::new(file); Self::from_stream(&mut buf_reader) } - pub(crate) fn from_stream_lazy(reader: &mut R) -> Result + pub(crate) fn from_stream_lazy(reader: &mut R) -> Result where R: Read + Seek, { Self::read(reader, true) } - pub fn from_stream(reader: &mut R) -> Result + pub fn from_stream(reader: &mut R) -> Result where R: Read + Seek, { Self::read(reader, false) } - fn read(reader: &mut R, skip_lods: bool) -> Result + fn read(reader: &mut R, skip_lods: bool) -> Result where R: Read + Seek, { @@ -249,11 +249,7 @@ impl ODOL { Ok(Self::read_le_args(reader, (opt,))?) } - pub fn read_lod( - &self, - reader: &mut RS, - resolution: ResolutionEnum, - ) -> Result + pub fn read_lod(&self, reader: &mut RS, resolution: ResolutionEnum) -> Result where RS: Read + Seek, { @@ -286,7 +282,7 @@ impl OdolLazyReader where R: Read + Seek, { - pub fn from_reader(mut reader: R) -> Result { + pub fn from_reader(mut reader: R) -> Result { let odol = ODOL::from_stream_lazy(&mut reader)?; Ok(Self { lods: HashMap::new(), @@ -295,7 +291,7 @@ where }) } - pub fn read_lod(&mut self, resolution: ResolutionEnum) -> Result { + pub fn read_lod(&mut self, resolution: ResolutionEnum) -> Result { if let Some(lod_index) = self .odol .resolutions diff --git a/src/p3d/skeleton.rs b/arma-file-formats/src/real_virtuality/p3d/skeleton.rs similarity index 100% rename from src/p3d/skeleton.rs rename to arma-file-formats/src/real_virtuality/p3d/skeleton.rs diff --git a/src/paa/mipmap.rs b/arma-file-formats/src/real_virtuality/paa/mipmap.rs similarity index 97% rename from src/paa/mipmap.rs rename to arma-file-formats/src/real_virtuality/paa/mipmap.rs index 99a52f7..0a555b8 100644 --- a/src/paa/mipmap.rs +++ b/arma-file-formats/src/real_virtuality/paa/mipmap.rs @@ -1,15 +1,15 @@ use std::io::{self, Cursor, SeekFrom}; use std::io::{BufRead, Seek, Write}; -use crate::core::decompress_lzss; -use crate::core::read::ReadExtTrait; -use crate::core::write::WriteExtTrait; +use crate::real_virtuality::core::decompress_lzss; +use crate::real_virtuality::core::read::ReadExtTrait; +use crate::real_virtuality::core::write::WriteExtTrait; use anyhow::Result; use lzokay_native::{compress_with_dict, decompress_all, Dict}; use squish::{Format, Params}; -use crate::core::types::PaaType; use crate::errors::PaaError; +use crate::real_virtuality::core::types::PaaType; #[derive(Debug, Default, PartialEq, Eq, Clone)] pub struct Mipmap { diff --git a/src/paa/mod.rs b/arma-file-formats/src/real_virtuality/paa/mod.rs similarity index 100% rename from src/paa/mod.rs rename to arma-file-formats/src/real_virtuality/paa/mod.rs diff --git a/src/paa/paa.rs b/arma-file-formats/src/real_virtuality/paa/paa.rs similarity index 99% rename from src/paa/paa.rs rename to arma-file-formats/src/real_virtuality/paa/paa.rs index 8a953e2..7edcc1f 100644 --- a/src/paa/paa.rs +++ b/arma-file-formats/src/real_virtuality/paa/paa.rs @@ -10,8 +10,8 @@ use lzokay_native::Dict; use rayon::prelude::{IndexedParallelIterator, IntoParallelRefMutIterator, ParallelIterator}; use crate::{ - core::{read::ReadExtTrait, types::PaaType, write::WriteExtTrait}, errors::PaaError, + real_virtuality::core::{read::ReadExtTrait, types::PaaType, write::WriteExtTrait}, }; use super::{Mipmap, Tagg}; diff --git a/src/paa/tagg.rs b/arma-file-formats/src/real_virtuality/paa/tagg.rs similarity index 91% rename from src/paa/tagg.rs rename to arma-file-formats/src/real_virtuality/paa/tagg.rs index 3e19ed3..454a682 100644 --- a/src/paa/tagg.rs +++ b/arma-file-formats/src/real_virtuality/paa/tagg.rs @@ -1,6 +1,6 @@ use std::io::{self, BufRead, Seek, Write}; -use crate::core::{read::ReadExtTrait, write::WriteExtTrait}; +use crate::real_virtuality::core::{read::ReadExtTrait, write::WriteExtTrait}; #[derive(Debug, Default, PartialEq, Eq, Clone)] pub struct Tagg { diff --git a/src/pbo/archive.rs b/arma-file-formats/src/real_virtuality/pbo/archive.rs similarity index 93% rename from src/pbo/archive.rs rename to arma-file-formats/src/real_virtuality/pbo/archive.rs index fa23b4a..66db07f 100644 --- a/src/pbo/archive.rs +++ b/arma-file-formats/src/real_virtuality/pbo/archive.rs @@ -7,9 +7,9 @@ use rsa::BigUint; use sha1::digest::Output; use sha1::{Digest, Sha1}; -use crate::core::read::ReadExtTrait; -use crate::errors::RvffError; -use crate::sign::{PrivateKey, PublicKey, SignVersion, Signature, KEY_LENGTH}; +use crate::errors::AffError; +use crate::real_virtuality::core::read::ReadExtTrait; +use crate::real_virtuality::sign::{PrivateKey, PublicKey, SignVersion, Signature, KEY_LENGTH}; use super::entry::Entry; @@ -37,13 +37,13 @@ impl Pbo { Self::default() } - pub fn from_path>(path: P) -> Result { + pub fn from_path>(path: P) -> Result { let file = File::open(path)?; let mut buf_reader = BufReader::new(file); Self::from_stream(&mut buf_reader) } - pub fn from_stream(reader: &mut R) -> Result + pub fn from_stream(reader: &mut R) -> Result where R: BufRead + Seek, { @@ -78,7 +78,7 @@ impl Pbo { self.entries.contains_key(&self.handle_prefix(entry_path)) } - pub(crate) fn read(&mut self, reader: &mut R, skip_data: bool) -> Result<(), RvffError> + pub(crate) fn read(&mut self, reader: &mut R, skip_data: bool) -> Result<(), AffError> where R: BufRead + Seek, { @@ -86,7 +86,7 @@ impl Pbo { || reader.read_string(4)? != PBO_MAGIC || reader.read_bytes(16)?.into_iter().all(|x| x != 0) { - return Err(RvffError::InvalidFileError); + return Err(AffError::InvalidFileError); } while reader.peek_u8()? != 0 { @@ -125,7 +125,7 @@ impl Pbo { reader.seek(SeekFrom::Start(data_pos))?; if reader.read_u8()? != 0 { - return Err(RvffError::InvalidFileError); + return Err(AffError::InvalidFileError); } self.hash = reader.read_bytes(20)?; @@ -137,7 +137,7 @@ impl Pbo { &mut self, entry_path: &str, reader: &mut R, - ) -> Result, RvffError> + ) -> Result, AffError> where R: BufRead + Seek, { @@ -159,7 +159,7 @@ impl Pbo { out_path: &str, full_path: bool, reader: &mut R, - ) -> Result<(), RvffError> + ) -> Result<(), AffError> where R: BufRead + Seek, { @@ -187,7 +187,7 @@ impl Pbo { Ok(()) } else { - Err(RvffError::PboEntryNotFound(entry_path.clone())) + Err(AffError::PboEntryNotFound(entry_path.clone())) } } diff --git a/src/pbo/archive_reader.rs b/arma-file-formats/src/real_virtuality/pbo/archive_reader.rs similarity index 85% rename from src/pbo/archive_reader.rs rename to arma-file-formats/src/real_virtuality/pbo/archive_reader.rs index 11d6b7c..68cbd7f 100644 --- a/src/pbo/archive_reader.rs +++ b/arma-file-formats/src/real_virtuality/pbo/archive_reader.rs @@ -1,6 +1,6 @@ use std::io::{BufRead, Seek}; -use crate::errors::RvffError; +use crate::errors::AffError; use super::{Entry, Pbo}; @@ -17,7 +17,7 @@ impl PboReader where R: BufRead + Seek, { - pub fn from_stream(reader: R) -> Result { + pub fn from_stream(reader: R) -> Result { let mut pbo_reader = Self { reader, pbo: Pbo::new(), @@ -26,7 +26,7 @@ where Ok(pbo_reader) } - pub fn get_entry(&mut self, entry_path: &str) -> Result, RvffError> { + pub fn get_entry(&mut self, entry_path: &str) -> Result, AffError> { self.pbo.get_entry(entry_path, &mut self.reader) } @@ -39,7 +39,7 @@ where entry_path: &str, out_path: &str, full_path: bool, - ) -> Result<(), RvffError> { + ) -> Result<(), AffError> { self.pbo .extract_single_file(entry_path, out_path, full_path, &mut self.reader) } diff --git a/src/pbo/entry.rs b/arma-file-formats/src/real_virtuality/pbo/entry.rs similarity index 82% rename from src/pbo/entry.rs rename to arma-file-formats/src/real_virtuality/pbo/entry.rs index b4f24f1..bc3698e 100644 --- a/src/pbo/entry.rs +++ b/arma-file-formats/src/real_virtuality/pbo/entry.rs @@ -1,8 +1,8 @@ use std::io::{BufRead, Seek, SeekFrom, Write}; -use crate::core::read::ReadExtTrait; -use crate::core::write::WriteExtTrait; -use crate::errors::RvffError; +use crate::errors::AffError; +use crate::real_virtuality::core::read::ReadExtTrait; +use crate::real_virtuality::core::write::WriteExtTrait; #[derive(Debug, Default, PartialEq, Eq, Clone)] pub struct Entry { pub filename: String, @@ -23,7 +23,7 @@ impl Entry { Self::default() } - pub fn read(&mut self, reader: &mut R) -> Result<(), RvffError> + pub fn read(&mut self, reader: &mut R) -> Result<(), AffError> where R: BufRead + Seek, { @@ -36,7 +36,7 @@ impl Entry { Ok(()) } - pub fn read_data(&mut self, reader: &mut R) -> Result<(), RvffError> + pub fn read_data(&mut self, reader: &mut R) -> Result<(), AffError> where R: BufRead + Seek, { @@ -45,7 +45,7 @@ impl Entry { Ok(()) } - pub fn write(&mut self, writer: &mut R) -> Result<(), RvffError> + pub fn write(&mut self, writer: &mut R) -> Result<(), AffError> where R: Write + Seek, { diff --git a/src/pbo/mod.rs b/arma-file-formats/src/real_virtuality/pbo/mod.rs similarity index 100% rename from src/pbo/mod.rs rename to arma-file-formats/src/real_virtuality/pbo/mod.rs diff --git a/src/rap/class.rs b/arma-file-formats/src/real_virtuality/rap/class.rs similarity index 95% rename from src/rap/class.rs rename to arma-file-formats/src/real_virtuality/rap/class.rs index 2148e12..e1f118a 100644 --- a/src/rap/class.rs +++ b/arma-file-formats/src/real_virtuality/rap/class.rs @@ -1,6 +1,7 @@ use std::io::{BufRead, Seek}; -use crate::{core::read::ReadExtTrait, errors::RvffError}; +use crate::errors::AffError; +use crate::real_virtuality::core::read::ReadExtTrait; use super::{entry::CfgEntry, pretty_print::PrettyPrint, EntryReturn}; @@ -12,7 +13,7 @@ pub struct CfgClass { } impl CfgClass { - pub fn read_class(reader: &mut I) -> Result + pub fn read_class(reader: &mut I) -> Result where I: BufRead + Seek, { diff --git a/src/rap/config.rs b/arma-file-formats/src/real_virtuality/rap/config.rs similarity index 89% rename from src/rap/config.rs rename to arma-file-formats/src/real_virtuality/rap/config.rs index 974e408..da4c012 100644 --- a/src/rap/config.rs +++ b/arma-file-formats/src/real_virtuality/rap/config.rs @@ -2,8 +2,8 @@ use std::io::{BufRead, Cursor, Seek}; use super::{entry::CfgEntry, parser::parse, pretty_print::PrettyPrint, EntryReturn}; use crate::{ - core::{decompress_lzss_unk_size, read::ReadExtTrait}, - errors::RvffError, + errors::AffError, + real_virtuality::core::{decompress_lzss_unk_size, read::ReadExtTrait}, }; const RAP_MAGIC: u32 = 1_348_563_456; @@ -23,12 +23,12 @@ impl Cfg { && matches!(reader.read_u32(), Ok(v) if v == 8) } - pub fn read_config(reader: &mut I) -> Result + pub fn read_config(reader: &mut I) -> Result where I: BufRead + Seek, { if !Self::is_valid_rap_bin(reader) { - return Err(RvffError::InvalidFileError); + return Err(AffError::InvalidFileError); } let enum_offset = reader.read_u32()?; @@ -49,12 +49,12 @@ impl Cfg { }) } - pub fn read_data(data: &[u8]) -> Result { + pub fn read_data(data: &[u8]) -> Result { let mut reader = Cursor::new(data); Self::read(&mut reader) } - pub fn read(reader: &mut I) -> Result + pub fn read(reader: &mut I) -> Result where I: BufRead + Seek, { @@ -98,7 +98,7 @@ impl Cfg { Self::parse_config(&cfg_text) } - pub fn parse_config(cfg: &str) -> Result { + pub fn parse_config(cfg: &str) -> Result { let entries = parse(cfg)?; Ok(Self { enum_offset: 0, diff --git a/src/rap/entry.rs b/arma-file-formats/src/real_virtuality/rap/entry.rs similarity index 95% rename from src/rap/entry.rs rename to arma-file-formats/src/real_virtuality/rap/entry.rs index 1e2c8d7..7e7bde8 100644 --- a/src/rap/entry.rs +++ b/arma-file-formats/src/real_virtuality/rap/entry.rs @@ -1,6 +1,6 @@ use std::io::{BufRead, Seek}; -use crate::{core::read::ReadExtTrait, errors::RvffError}; +use crate::{errors::AffError, real_virtuality::core::read::ReadExtTrait}; use super::{class::CfgClass, pretty_print::PrettyPrint, property::CfgProperty, EntryReturn}; @@ -13,7 +13,7 @@ pub enum CfgEntry { } impl CfgEntry { - pub fn parse_entry(reader: &mut I) -> Result + pub fn parse_entry(reader: &mut I) -> Result where I: BufRead + Seek, { diff --git a/src/rap/mod.rs b/arma-file-formats/src/real_virtuality/rap/mod.rs similarity index 100% rename from src/rap/mod.rs rename to arma-file-formats/src/real_virtuality/rap/mod.rs diff --git a/src/rap/parser.rs b/arma-file-formats/src/real_virtuality/rap/parser.rs similarity index 98% rename from src/rap/parser.rs rename to arma-file-formats/src/real_virtuality/rap/parser.rs index 120e4f3..d4fd242 100644 --- a/src/rap/parser.rs +++ b/arma-file-formats/src/real_virtuality/rap/parser.rs @@ -1,7 +1,5 @@ -use crate::{ - errors::RvffError, - rap::{CfgClass, CfgEntry, CfgProperty, CfgValue}, -}; +use crate::errors::AffError; +use crate::real_virtuality::rap::{CfgClass, CfgEntry, CfgProperty, CfgValue}; use ariadne::{Color, Fmt, Label, Report, ReportKind, Source}; use chumsky::{prelude::*, stream::Stream}; use std::{fmt, io::Cursor}; @@ -269,7 +267,7 @@ fn entry_parser() -> impl Parser>, Error = Simple< class.or(entry).repeated().then_ignore(end()) } -pub fn parse(src: &str) -> Result, RvffError> { +pub fn parse(src: &str) -> Result, AffError> { let (tokens, errs) = lexer().parse_recovery(src); // dbg!(&tokens); // dbg!(errs.clone()); @@ -372,5 +370,5 @@ pub fn parse(src: &str) -> Result, RvffError> { }) .collect(); - Err(RvffError::RvffParseError(errs_str.join("\n"))) + Err(AffError::ParseError(errs_str.join("\n"))) } diff --git a/src/rap/pretty_print.rs b/arma-file-formats/src/real_virtuality/rap/pretty_print.rs similarity index 100% rename from src/rap/pretty_print.rs rename to arma-file-formats/src/real_virtuality/rap/pretty_print.rs diff --git a/src/rap/property.rs b/arma-file-formats/src/real_virtuality/rap/property.rs similarity index 92% rename from src/rap/property.rs rename to arma-file-formats/src/real_virtuality/rap/property.rs index 4ecf5a2..1862900 100644 --- a/src/rap/property.rs +++ b/arma-file-formats/src/real_virtuality/rap/property.rs @@ -1,7 +1,7 @@ use std::io::{BufRead, Seek}; use super::{pretty_print::PrettyPrint, value::CfgValue}; -use crate::{core::read::ReadExtTrait, errors::RvffError}; +use crate::{errors::AffError, real_virtuality::core::read::ReadExtTrait}; #[derive(Debug, PartialEq, Clone)] pub struct CfgProperty { @@ -10,7 +10,7 @@ pub struct CfgProperty { } impl CfgProperty { - pub fn read_property(reader: &mut I, is_array: bool) -> Result + pub fn read_property(reader: &mut I, is_array: bool) -> Result where I: BufRead + Seek, { diff --git a/src/rap/value.rs b/arma-file-formats/src/real_virtuality/rap/value.rs similarity index 93% rename from src/rap/value.rs rename to arma-file-formats/src/real_virtuality/rap/value.rs index 998aacf..bb62bda 100644 --- a/src/rap/value.rs +++ b/arma-file-formats/src/real_virtuality/rap/value.rs @@ -1,6 +1,6 @@ use std::io::{BufRead, Seek}; -use crate::{core::read::ReadExtTrait, errors::RvffError}; +use crate::{errors::AffError, real_virtuality::core::read::ReadExtTrait}; #[derive(Debug, PartialEq, Clone)] pub enum CfgValue { @@ -11,7 +11,7 @@ pub enum CfgValue { } impl CfgValue { - pub fn read_value(reader: &mut I, typ_id: Option) -> Result + pub fn read_value(reader: &mut I, typ_id: Option) -> Result where I: BufRead + Seek, { @@ -30,7 +30,7 @@ impl CfgValue { }) } - pub fn read_array(reader: &mut I) -> Result + pub fn read_array(reader: &mut I) -> Result where I: BufRead + Seek, { diff --git a/src/sign/mod.rs b/arma-file-formats/src/real_virtuality/sign/mod.rs similarity index 100% rename from src/sign/mod.rs rename to arma-file-formats/src/real_virtuality/sign/mod.rs diff --git a/src/sign/private_key.rs b/arma-file-formats/src/real_virtuality/sign/private_key.rs similarity index 93% rename from src/sign/private_key.rs rename to arma-file-formats/src/real_virtuality/sign/private_key.rs index 8f51e35..5a17d9f 100644 --- a/src/sign/private_key.rs +++ b/arma-file-formats/src/real_virtuality/sign/private_key.rs @@ -1,9 +1,9 @@ use crate::{ - core::{ + errors::AffError, + real_virtuality::core::{ binrw_utils::{read_biguint, write_biguint}, write::WriteExtTrait, }, - errors::RvffError, }; use binrw::{binrw, BinRead, Endian}; use binrw::{BinWrite, NullString}; @@ -104,13 +104,13 @@ impl PrivateKey { } } - pub fn from_path>(path: P) -> Result { + pub fn from_path>(path: P) -> Result { let file = File::open(path)?; let mut buf_reader = BufReader::new(file); Self::from_stream(&mut buf_reader) } - pub fn from_stream(reader: &mut R) -> Result + pub fn from_stream(reader: &mut R) -> Result where R: Read + Seek, { @@ -118,7 +118,7 @@ impl PrivateKey { Ok(prv_key) } - pub fn write_file>(&mut self, path: P) -> Result<(), RvffError> { + pub fn write_file>(&mut self, path: P) -> Result<(), AffError> { let path: &Path = &path.as_ref().with_extension(EXTENSION); let mut file = File::create(path)?; @@ -126,7 +126,7 @@ impl PrivateKey { Ok(()) } - pub fn write_data(&mut self) -> Result, RvffError> { + pub fn write_data(&mut self) -> Result, AffError> { let mut buf = Vec::new(); let mut cursor = Cursor::new(&mut buf); diff --git a/src/sign/public_key.rs b/arma-file-formats/src/real_virtuality/sign/public_key.rs similarity index 89% rename from src/sign/public_key.rs rename to arma-file-formats/src/real_virtuality/sign/public_key.rs index 8157abd..9bf4588 100644 --- a/src/sign/public_key.rs +++ b/arma-file-formats/src/real_virtuality/sign/public_key.rs @@ -1,9 +1,9 @@ use crate::{ - core::{ + errors::AffError, + real_virtuality::core::{ binrw_utils::{read_biguint, write_biguint}, write::WriteExtTrait, }, - errors::RvffError, }; use binrw::{binrw, BinRead, Endian}; use binrw::{BinWrite, NullString}; @@ -62,13 +62,13 @@ impl PublicKey { n: BigUint::default(), } } - pub fn from_path>(path: P) -> Result { + pub fn from_path>(path: P) -> Result { let file = File::open(path)?; let mut buf_reader = BufReader::new(file); Self::from_stream(&mut buf_reader) } - pub fn from_stream(reader: &mut R) -> Result + pub fn from_stream(reader: &mut R) -> Result where R: Read + Seek, { @@ -76,7 +76,7 @@ impl PublicKey { Ok(pub_key) } - pub fn write_file>(&mut self, path: P) -> Result<(), RvffError> { + pub fn write_file>(&mut self, path: P) -> Result<(), AffError> { let path: &Path = &path.as_ref().with_extension(EXTENSION); let mut file = File::create(path)?; @@ -84,7 +84,7 @@ impl PublicKey { Ok(()) } - pub fn write_data(&mut self) -> Result, RvffError> { + pub fn write_data(&mut self) -> Result, AffError> { let mut buf = Vec::new(); let mut cursor = Cursor::new(&mut buf); diff --git a/src/sign/signature.rs b/arma-file-formats/src/real_virtuality/sign/signature.rs similarity index 89% rename from src/sign/signature.rs rename to arma-file-formats/src/real_virtuality/sign/signature.rs index c3fece7..924fb21 100644 --- a/src/sign/signature.rs +++ b/arma-file-formats/src/real_virtuality/sign/signature.rs @@ -5,9 +5,9 @@ use std::io::Read; use std::io::Seek; use std::path::Path; -use crate::core::binrw_utils::{read_biguint, write_biguint}; -use crate::core::write::WriteExtTrait; -use crate::errors::RvffError; +use crate::errors::AffError; +use crate::real_virtuality::core::binrw_utils::{read_biguint, write_biguint}; +use crate::real_virtuality::core::write::WriteExtTrait; use binrw::{binrw, BinRead, Endian}; use binrw::{BinWrite, NullString}; use rsa::BigUint; @@ -96,13 +96,13 @@ impl Signature { } } - pub fn from_path>(path: P) -> Result { + pub fn from_path>(path: P) -> Result { let file = File::open(path)?; let mut buf_reader = BufReader::new(file); Self::from_stream(&mut buf_reader) } - pub fn from_stream(reader: &mut R) -> Result + pub fn from_stream(reader: &mut R) -> Result where R: Read + Seek, { @@ -110,7 +110,7 @@ impl Signature { Ok(sig) } - pub fn write_file>(&mut self, path: P) -> Result<(), RvffError> { + pub fn write_file>(&mut self, path: P) -> Result<(), AffError> { let path: &Path = &path.as_ref().with_extension(EXTENSION); let mut file = File::create(path)?; @@ -118,7 +118,7 @@ impl Signature { Ok(()) } - pub fn write_data(&mut self) -> Result, RvffError> { + pub fn write_data(&mut self) -> Result, AffError> { let mut buf = Vec::new(); let mut cursor = Cursor::new(&mut buf); diff --git a/src/wrp/mod.rs b/arma-file-formats/src/real_virtuality/wrp/mod.rs similarity index 100% rename from src/wrp/mod.rs rename to arma-file-formats/src/real_virtuality/wrp/mod.rs diff --git a/src/wrp/oprw.rs b/arma-file-formats/src/real_virtuality/wrp/oprw.rs similarity index 96% rename from src/wrp/oprw.rs rename to arma-file-formats/src/real_virtuality/wrp/oprw.rs index 973e59a..1a37053 100644 --- a/src/wrp/oprw.rs +++ b/arma-file-formats/src/real_virtuality/wrp/oprw.rs @@ -3,15 +3,15 @@ use std::io::Read; use std::io::Seek; use super::QuadTree; -use crate::core::binrw_utils::read_compressed_array_count; -use crate::core::decompress_lzss_unk_size; -use crate::core::types::XY; -use crate::{ +use crate::errors::AffError; +use crate::real_virtuality::core::binrw_utils::read_compressed_array_count; +use crate::real_virtuality::core::decompress_lzss_unk_size; +use crate::real_virtuality::core::types::XY; +use crate::real_virtuality::{ core::{ binrw_utils::read_compressed_data_cond_count, types::{BoundingBox, TransformMatrix, XYZTriplet}, }, - errors::RvffError, p3d::ODOLArgs, }; use binrw::{until_eof, Endian, NullString}; @@ -132,7 +132,7 @@ pub struct OPRW { } impl OPRW { - pub fn from_read(reader: &mut (impl Read + Seek)) -> Result { + pub fn from_read(reader: &mut (impl Read + Seek)) -> Result { // OPRW let mut magic_buf = vec![0_u8; 4]; reader.read_exact(&mut magic_buf)?; @@ -148,7 +148,7 @@ impl OPRW { Ok(oprw) } - fn read_oprw(reader: &mut (impl Read + Seek)) -> Result { + fn read_oprw(reader: &mut (impl Read + Seek)) -> Result { let mut oprw = Self::read_options(reader, Endian::Little, ())?; oprw.road_net.retain(|rn| rn.road_part_count > 0); Ok(oprw) diff --git a/src/wrp/quadtree.rs b/arma-file-formats/src/real_virtuality/wrp/quadtree.rs similarity index 100% rename from src/wrp/quadtree.rs rename to arma-file-formats/src/real_virtuality/wrp/quadtree.rs diff --git a/tests/p3d_tests.rs b/arma-file-formats/tests/real_virtuality/p3d_test.rs similarity index 76% rename from tests/p3d_tests.rs rename to arma-file-formats/tests/real_virtuality/p3d_test.rs index af2f44b..1525e81 100644 --- a/tests/p3d_tests.rs +++ b/arma-file-formats/tests/real_virtuality/p3d_test.rs @@ -1,20 +1,16 @@ use std::fs; -use rvff::p3d::ODOL; +use arma_file_formats::real_virtuality::p3d::ODOL; use serial_test::serial; -const INPUT_PATH_PREFIX: &str = "./tests/test-data/p3d_in/"; +const INPUT_PATH_PREFIX: &str = "./tests/real_virtuality/test-data/p3d_in/"; #[allow(dead_code)] -const OUTPUT_PATH_PREFIX: &str = "./tests/test-data/p3d_out/"; +const OUTPUT_PATH_PREFIX: &str = "./tests/real_virtuality/test-data/p3d_out/"; #[test] #[serial] fn aa_p3d() { - let odol = ODOL::from_path(format!( - "{}test_all/APC_Tracked_01_aa_F.p3d", - INPUT_PATH_PREFIX - )) - .unwrap(); + let odol = ODOL::from_path(format!("{}APC_Tracked_01_aa_F.p3d", INPUT_PATH_PREFIX)).unwrap(); println!("{:#?}", odol.use_defaults); println!("{:#?}", odol.face_defaults); println!("{:#?}", odol.resolutions); @@ -50,7 +46,7 @@ fn aa_p3d() { #[test] fn lzss_debug() { - let odol = ODOL::from_path(format!("{}test_all/fbbear.p3d", INPUT_PATH_PREFIX)).unwrap(); + let odol = ODOL::from_path(format!("{}fbbear.p3d", INPUT_PATH_PREFIX)).unwrap(); for lod in odol.lods { dbg!(lod.named_selection.clone()); } @@ -58,11 +54,7 @@ fn lzss_debug() { #[test] fn single_debug() { - let odol = ODOL::from_path(format!( - "{}test_all/sfp_wamako_hut01.p3d", - INPUT_PATH_PREFIX - )) - .unwrap(); + let odol = ODOL::from_path(format!("{}sfp_wamako_hut01.p3d", INPUT_PATH_PREFIX)).unwrap(); for lod in odol.lods { dbg!(lod.named_selection.clone()); } @@ -70,9 +62,9 @@ fn single_debug() { #[test] fn test_all() { - let test_all_dir = fs::read_dir(format!("{}test_all", INPUT_PATH_PREFIX)).unwrap(); + let test_all = fs::read_dir(INPUT_PATH_PREFIX).unwrap(); - test_all_dir.for_each(|e| { + test_all.for_each(|e| { if let Ok(entry) = e { let p = entry.path(); if p.extension().unwrap_or_default() == "p3d" { diff --git a/tests/paa_tests.rs b/arma-file-formats/tests/real_virtuality/paa_test.rs similarity index 96% rename from tests/paa_tests.rs rename to arma-file-formats/tests/real_virtuality/paa_test.rs index 45a7ad5..6e1cf25 100644 --- a/tests/paa_tests.rs +++ b/arma-file-formats/tests/real_virtuality/paa_test.rs @@ -3,15 +3,15 @@ use std::{ io::{BufReader, Cursor}, }; -use image::ImageBuffer; -use rvff::{ +use arma_file_formats::{ self, - paa::{Paa, Tagg}, + real_virtuality::paa::{Paa, Tagg}, }; +use image::ImageBuffer; use serial_test::serial; -const INPUT_PATH_PREFIX: &str = "./tests/test-data/paa_in/"; -const OUTPUT_PATH_PREFIX: &str = "./tests/test-data/paa_out/"; +const INPUT_PATH_PREFIX: &str = "./tests/real_virtuality/test-data/paa_in/"; +const OUTPUT_PATH_PREFIX: &str = "./tests/real_virtuality/test-data/paa_out/"; #[test] fn default_test() { diff --git a/tests/pbo_tests.rs b/arma-file-formats/tests/real_virtuality/pbo_test.rs similarity index 77% rename from tests/pbo_tests.rs rename to arma-file-formats/tests/real_virtuality/pbo_test.rs index fdd9b21..51ea6df 100644 --- a/tests/pbo_tests.rs +++ b/arma-file-formats/tests/real_virtuality/pbo_test.rs @@ -3,14 +3,14 @@ use std::{ io::BufReader, }; -use rvff::{ +use arma_file_formats::real_virtuality::{ pbo::{Pbo, PboReader}, sign::{PrivateKey, PublicKey, SignVersion, Signature}, }; use serial_test::serial; -const INPUT_PATH_PREFIX: &str = "./tests/test-data/pbo_in/"; -const OUTPUT_PATH_PREFIX: &str = "./tests/test-data/pbo_out/"; +const INPUT_PATH_PREFIX: &str = "./tests/real_virtuality/test-data/pbo_in/"; +const OUTPUT_PATH_PREFIX: &str = "./tests/real_virtuality/test-data/pbo_out/"; #[test] #[serial] @@ -60,11 +60,11 @@ fn pbo_lazy() { #[test] #[serial] fn verify_sig() { - let mut pub_key_file = File::open(format!("{}RVFF_TEST_KEY.bikey", INPUT_PATH_PREFIX)).unwrap(); + let mut pub_key_file = File::open(format!("{}AFF_TEST_KEY.bikey", INPUT_PATH_PREFIX)).unwrap(); let pub_key = PublicKey::from_stream(&mut pub_key_file).unwrap(); let mut sig_file = File::open(format!( - "{}grad_adminMessages.pbo.RVFF_TEST_KEY.bisign", + "{}grad_adminMessages.pbo.AFF_TEST_KEY.bisign", INPUT_PATH_PREFIX )) .unwrap(); @@ -81,7 +81,7 @@ fn verify_sig() { #[serial] fn read_priv_key() { let mut priv_key_file = - File::open(format!("{}RVFF_TEST_KEY.biprivatekey", INPUT_PATH_PREFIX)).unwrap(); + File::open(format!("{}AFF_TEST_KEY.biprivatekey", INPUT_PATH_PREFIX)).unwrap(); let _ = PrivateKey::from_stream(&mut priv_key_file).unwrap(); } @@ -90,29 +90,21 @@ fn read_priv_key() { fn sign_test() { let pbo = Pbo::from_path(format!("{}grad_adminMessages.pbo", INPUT_PATH_PREFIX)).unwrap(); - let auth = "RVFF_TEST_KEY2"; + let auth = "AFF_TEST_KEY2"; let mut priv_key = PrivateKey::generate(auth); priv_key - .write_file(format!("{}RVFF_TEST_KEY2", OUTPUT_PATH_PREFIX)) + .write_file(format!("{}AFF_TEST_KEY2", OUTPUT_PATH_PREFIX)) .unwrap(); let mut pub_key: PublicKey = priv_key.clone().into(); pub_key - .write_file(format!("{}RVFF_TEST_KEY2", OUTPUT_PATH_PREFIX)) + .write_file(format!("{}AFF_TEST_KEY2", OUTPUT_PATH_PREFIX)) .unwrap(); let mut sig = pbo.sign(SignVersion::V3, &priv_key); - sig.write_file(format!("{}RVFF_TEST_KEY2", OUTPUT_PATH_PREFIX)) + sig.write_file(format!("{}AFF_TEST_KEY2", OUTPUT_PATH_PREFIX)) .unwrap(); assert!(pbo.verify(&pub_key, &sig).is_ok()); } - -//projeta3-10.pbo - -#[test] -#[serial] -fn alrayak_test() { - let pbo = Pbo::from_path(format!("{}projeta3-10.pbo", INPUT_PATH_PREFIX)).unwrap(); -} diff --git a/tests/rap_tests.rs b/arma-file-formats/tests/real_virtuality/rap_test.rs similarity index 93% rename from tests/rap_tests.rs rename to arma-file-formats/tests/real_virtuality/rap_test.rs index d5445f9..d32c21d 100644 --- a/tests/rap_tests.rs +++ b/arma-file-formats/tests/real_virtuality/rap_test.rs @@ -3,11 +3,11 @@ use std::{ io::BufReader, }; -use rvff::rap::{Cfg, CfgEntry, CfgValue, EntryReturn}; +use arma_file_formats::real_virtuality::rap::{Cfg, CfgEntry, CfgValue, EntryReturn}; -const INPUT_PATH_PREFIX: &str = "./tests/test-data/rap_in/"; +const INPUT_PATH_PREFIX: &str = "./tests/real_virtuality/test-data/rap_in/"; #[allow(dead_code)] -const OUTPUT_PATH_PREFIX: &str = "./tests/test-data/rap_out/"; +const OUTPUT_PATH_PREFIX: &str = "./tests/real_virtuality/test-data/rap_out/"; #[test] fn rvmat_define() { @@ -63,7 +63,7 @@ fn mission_sqm_test() { EntryReturn::Entry(CfgEntry::Property(x)) if &x.name == "isPlayer" && matches!(x.value, CfgValue::Long(num) if num == 1) )); - assert!(matches!(cfg.get_entry(&["comment"]), None)); + assert!(cfg.get_entry(&["comment"]).is_none()); assert!(matches!(cfg .get_entry(&["Mission", "Entities", "Item0", "Attributes", "FogD"]) @@ -103,7 +103,7 @@ fn mission_sqm_bin_test() { EntryReturn::Entry(CfgEntry::Property(x)) if &x.name == "isPlayer" && matches!(x.value, CfgValue::Long(num) if num == 1) )); - assert!(matches!(cfg.get_entry(&["comment"]), None)); + assert!(cfg.get_entry(&["comment"]).is_none()); assert!(matches!(cfg .get_entry(&["Mission", "Entities", "Item0", "Attributes", "FogD"]) diff --git a/tests/util_tests.rs b/arma-file-formats/tests/real_virtuality/util_test.rs similarity index 61% rename from tests/util_tests.rs rename to arma-file-formats/tests/real_virtuality/util_test.rs index 0101262..2ba293b 100644 --- a/tests/util_tests.rs +++ b/arma-file-formats/tests/real_virtuality/util_test.rs @@ -1,9 +1,9 @@ -use rvff::core::check_for_magic_and_decompress_lzss; +use arma_file_formats::real_virtuality::core::check_for_magic_and_decompress_lzss; use serial_test::serial; use std::fs::{self, File}; -const INPUT_PATH_PREFIX: &str = "./tests/test-data/util_in/"; -const OUTPUT_PATH_PREFIX: &str = "./tests/test-data/util_out/"; +const INPUT_PATH_PREFIX: &str = "./tests/real_virtuality/test-data/util_in/"; +const OUTPUT_PATH_PREFIX: &str = "./tests/real_virtuality/test-data/util_out/"; #[test] #[serial] diff --git a/tests/wrp_tests.rs b/arma-file-formats/tests/real_virtuality/wrp_test.rs similarity index 88% rename from tests/wrp_tests.rs rename to arma-file-formats/tests/real_virtuality/wrp_test.rs index 6d8724b..94251e6 100644 --- a/tests/wrp_tests.rs +++ b/arma-file-formats/tests/real_virtuality/wrp_test.rs @@ -1,9 +1,9 @@ use std::{fs::File, io::BufReader}; -use rvff::wrp::{MapData, MapInfo, OPRW}; +use arma_file_formats::real_virtuality::wrp::{MapData, MapInfo, OPRW}; use serial_test::serial; -const INPUT_PATH_PREFIX: &str = "./tests/test-data/wrp_in/"; +const INPUT_PATH_PREFIX: &str = "./tests/real_virtuality/test-data/wrp_in/"; #[test] fn test_defaults() { @@ -108,14 +108,3 @@ fn fjaderholmarna_test() { let mut file = File::open(format!("{}fjaderholmarna.wrp", INPUT_PATH_PREFIX)).unwrap(); let _ = OPRW::from_read(&mut file).unwrap(); } - -#[test] -#[serial] -fn al_rayak() { - let mut file = File::open(format!("{}pja310.wrp", INPUT_PATH_PREFIX)).unwrap(); - - let wrp = OPRW::from_read(&mut file).unwrap(); - - dbg!(wrp.road_net.len()); - dbg!(&wrp.road_net[123]); -} diff --git a/arma-file-formats/tests/test-data-setup/Cargo.toml b/arma-file-formats/tests/test-data-setup/Cargo.toml new file mode 100644 index 0000000..5c821cd --- /dev/null +++ b/arma-file-formats/tests/test-data-setup/Cargo.toml @@ -0,0 +1,10 @@ +[package] +name = "aff-test-data-setup" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +dotenvy = "0.15.7" +sevenz-rust = { version = "0.6", features = ["aes256"] } diff --git a/arma-file-formats/tests/test-data-setup/src/main.rs b/arma-file-formats/tests/test-data-setup/src/main.rs new file mode 100644 index 0000000..fa35dbb --- /dev/null +++ b/arma-file-formats/tests/test-data-setup/src/main.rs @@ -0,0 +1,32 @@ +use std::{env, path::Path}; + +fn main() { + if Path::new("arma-file-formats/tests/real_virtuality/test-data") + .read_dir() + .is_ok_and(|mut rd| rd.next().is_some()) + { + return; + } + + if dotenvy::dotenv().is_err() { + println!(".env not found..."); + } + + for i in 1..4 { + let file = format!("arma-file-formats/tests/test-data/rv-test-data-part-{i}.7z"); + + println!("Extracting test data: {file}"); + sevenz_rust::decompress_file_with_password( + file, + "arma-file-formats/tests/real_virtuality/", + env::var("AFF_TEST_DATA_PW") + .expect("AFF_TEST_DATA_PW not set") + .to_string() + .as_str() + .into(), + ) + .expect("Test data decompression failed"); + } + + println!("Done!"); +} diff --git a/arma-file-formats/tests/test-data/rv-test-data-part-1.7z b/arma-file-formats/tests/test-data/rv-test-data-part-1.7z new file mode 100644 index 0000000..25e09aa Binary files /dev/null and b/arma-file-formats/tests/test-data/rv-test-data-part-1.7z differ diff --git a/arma-file-formats/tests/test-data/rv-test-data-part-2.7z b/arma-file-formats/tests/test-data/rv-test-data-part-2.7z new file mode 100644 index 0000000..3be4f19 Binary files /dev/null and b/arma-file-formats/tests/test-data/rv-test-data-part-2.7z differ diff --git a/arma-file-formats/tests/test-data/rv-test-data-part-3.7z b/arma-file-formats/tests/test-data/rv-test-data-part-3.7z new file mode 100644 index 0000000..fd1c19a Binary files /dev/null and b/arma-file-formats/tests/test-data/rv-test-data-part-3.7z differ diff --git a/arma-file-formats/tests/tests.rs b/arma-file-formats/tests/tests.rs new file mode 100644 index 0000000..54e8719 --- /dev/null +++ b/arma-file-formats/tests/tests.rs @@ -0,0 +1,8 @@ +mod real_virtuality { + mod p3d_test; + mod paa_test; + mod pbo_test; + mod rap_test; + mod util_test; + mod wrp_test; +} diff --git a/tests/test-data/paa_in/ai88_plus.paa b/tests/test-data/paa_in/ai88_plus.paa deleted file mode 100644 index eaeef9c..0000000 Binary files a/tests/test-data/paa_in/ai88_plus.paa and /dev/null differ diff --git a/tests/test-data/paa_in/argb4444_StaszowWinter_ca.paa b/tests/test-data/paa_in/argb4444_StaszowWinter_ca.paa deleted file mode 100644 index 5061721..0000000 Binary files a/tests/test-data/paa_in/argb4444_StaszowWinter_ca.paa and /dev/null differ diff --git a/tests/test-data/paa_in/black_co_dxt1.paa b/tests/test-data/paa_in/black_co_dxt1.paa deleted file mode 100644 index 3e8717b..0000000 Binary files a/tests/test-data/paa_in/black_co_dxt1.paa and /dev/null differ diff --git a/tests/test-data/paa_in/logo_dxt1_2048.paa b/tests/test-data/paa_in/logo_dxt1_2048.paa deleted file mode 100644 index 7272fa6..0000000 Binary files a/tests/test-data/paa_in/logo_dxt1_2048.paa and /dev/null differ diff --git a/tests/test-data/paa_in/logo_dxt1_2048.png b/tests/test-data/paa_in/logo_dxt1_2048.png deleted file mode 100644 index 1ee61d8..0000000 Binary files a/tests/test-data/paa_in/logo_dxt1_2048.png and /dev/null differ diff --git a/tests/test-data/paa_in/logo_dxt5_128.paa b/tests/test-data/paa_in/logo_dxt5_128.paa deleted file mode 100644 index f2c6ad4..0000000 Binary files a/tests/test-data/paa_in/logo_dxt5_128.paa and /dev/null differ diff --git a/tests/test-data/paa_in/logo_dxt5_128.png b/tests/test-data/paa_in/logo_dxt5_128.png deleted file mode 100644 index 5223852..0000000 Binary files a/tests/test-data/paa_in/logo_dxt5_128.png and /dev/null differ diff --git a/tests/test-data/paa_in/logo_dxt5_400.paa b/tests/test-data/paa_in/logo_dxt5_400.paa deleted file mode 100644 index 9a1b1c1..0000000 Binary files a/tests/test-data/paa_in/logo_dxt5_400.paa and /dev/null differ diff --git a/tests/test-data/paa_in/medic_cross_ca_dxt5.paa b/tests/test-data/paa_in/medic_cross_ca_dxt5.paa deleted file mode 100644 index 2b1a872..0000000 Binary files a/tests/test-data/paa_in/medic_cross_ca_dxt5.paa and /dev/null differ diff --git a/tests/test-data/pbo_in/RVFF_TEST_KEY.bikey b/tests/test-data/pbo_in/RVFF_TEST_KEY.bikey deleted file mode 100644 index e2c580e..0000000 Binary files a/tests/test-data/pbo_in/RVFF_TEST_KEY.bikey and /dev/null differ diff --git a/tests/test-data/pbo_in/RVFF_TEST_KEY.biprivatekey b/tests/test-data/pbo_in/RVFF_TEST_KEY.biprivatekey deleted file mode 100644 index c1666cc..0000000 Binary files a/tests/test-data/pbo_in/RVFF_TEST_KEY.biprivatekey and /dev/null differ diff --git a/tests/test-data/pbo_in/fow_functions.pbo b/tests/test-data/pbo_in/fow_functions.pbo deleted file mode 100644 index 2b6fe94..0000000 Binary files a/tests/test-data/pbo_in/fow_functions.pbo and /dev/null differ diff --git a/tests/test-data/pbo_in/grad_adminMessages.pbo b/tests/test-data/pbo_in/grad_adminMessages.pbo deleted file mode 100644 index 1808562..0000000 Binary files a/tests/test-data/pbo_in/grad_adminMessages.pbo and /dev/null differ diff --git a/tests/test-data/pbo_in/grad_adminMessages.pbo.RVFF_TEST_KEY.bisign b/tests/test-data/pbo_in/grad_adminMessages.pbo.RVFF_TEST_KEY.bisign deleted file mode 100644 index e840661..0000000 Binary files a/tests/test-data/pbo_in/grad_adminMessages.pbo.RVFF_TEST_KEY.bisign and /dev/null differ diff --git a/tests/test-data/rap_in/bmg_texture1.rvmat b/tests/test-data/rap_in/bmg_texture1.rvmat deleted file mode 100644 index ac70faf..0000000 Binary files a/tests/test-data/rap_in/bmg_texture1.rvmat and /dev/null differ diff --git a/tests/test-data/rap_in/define.rvmat b/tests/test-data/rap_in/define.rvmat deleted file mode 100644 index 631c4ab..0000000 --- a/tests/test-data/rap_in/define.rvmat +++ /dev/null @@ -1,13 +0,0 @@ -//////////////////////////////////////////////////////////////////// -//DeRap: Produced from mikero's Dos Tools Dll version 5.24 -//Produced on Sat Nov 26 23:56:02 2016 : Created on Sat Nov 26 23:56:02 2016 -//http://dev-heaven.net/projects/list_files/mikero-pbodll -//////////////////////////////////////////////////////////////////// - -#define _ARMA_ - -//Class smurks : data\layers\P_000-000_L01.rvmat{ -ambient[] = {1,1,1,1}; -diffuse[] = {0.25,0.25,0.25,1}; -forcedDiffuse[] = {0,0,0,0}; - diff --git a/tests/test-data/rap_in/mission.sqm.bin b/tests/test-data/rap_in/mission.sqm.bin deleted file mode 100644 index 6eb2dbd..0000000 Binary files a/tests/test-data/rap_in/mission.sqm.bin and /dev/null differ diff --git a/tests/test-data/rap_in/mission.sqm.cpp b/tests/test-data/rap_in/mission.sqm.cpp deleted file mode 100644 index 0cc77ff..0000000 --- a/tests/test-data/rap_in/mission.sqm.cpp +++ /dev/null @@ -1,107 +0,0 @@ -version=54; -class EditorData -{ - moveGridStep=1; - angleGridStep=0.2617994; - scaleGridStep=1; - autoGroupingDist=10; - toggles=1; - class ItemIDProvider - { - nextID=2; - }; - class Camera - { - pos[]={19379.848,63.36829,14597.484}; - dir[]={-0.32342288,-0.42198381,0.84695548}; - up[]={-0.15053864,0.90660214,0.3942188}; - aside[]={0.93420672,-6.6123903e-008,0.35674155}; - }; -}; -// comment = 1; -sourceName="binarized"; -addons[]= -{ - "gm_characters_ge_characters" -}; -class FogE; -class AddonsMetaData : FogE -{ - class List : ListOG - { - items=1; - class Item0 - { - className="gm_characters_ge_characters"; - name="gm_characters_ge_characters"; - author="Global Mobilization"; - url="global-mobilization.com"; - }; - }; -}; -dlcs[]= -{ - "gm" -}; -randomSeed=11502127; -class ScenarioData -{ - author="Willard"; -}; -class Mission -{ - class Intel - { - timeOfChanges=1800.0002; - startWeather=0.30000001; - startWind=0.1; - startWaves=0.1; - forecastWeather=0.30000001; - forecastWind=0.1; - forecastWaves=0.1; - forecastLightnings=0.1; - year=2035; - month=6; - day=24; - hour=12; - minute=0; - startFogDecay=0.014; - forecastFogDecay=0.014; - }; - class Entities - { - items=1; - class Item0 - { - dataType="Group"; - side="West"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={19363.289,22.733288,14654.612}; - }; - side="West"; - flags=7; - class Attributes - { - isPlayer=1; - }; - id=1; - type="gm_ge_army_officer_p1_80_oli"; - atlOffset=-2.6702881e-005; - }; - }; - class Attributes - { - delete FogD; - }; - id=0; - atlOffset=-2.6702881e-005; - }; - }; -}; diff --git a/tests/test-data/rap_in/mission_grad_base.sqm b/tests/test-data/rap_in/mission_grad_base.sqm deleted file mode 100644 index 2e6785b..0000000 --- a/tests/test-data/rap_in/mission_grad_base.sqm +++ /dev/null @@ -1,57927 +0,0 @@ -version=54; -class EditorData -{ - moveGridStep=32; - angleGridStep=1.5707964; - scaleGridStep=1; - autoGroupingDist=10; - toggles=129; - class ItemIDProvider - { - nextID=5510; - }; - class MarkerIDProvider - { - nextID=19; - }; - class LayerIndexProvider - { - nextID=367; - }; - class Camera - { - pos[]={14462.045,562.8454,16645.742}; - dir[]={0.63426471,-0.11578175,0.76455927}; - up[]={0.074141845,0.99322021,0.089365125}; - aside[]={0.76973569,-1.6544946e-006,-0.63857204}; - }; -}; -binarizationWanted=0; -sourceName="Adler_Base_18"; -addons[]= -{ - "A3_Ui_F", - "A3_Characters_F", - "A3_Weapons_F_Exp_Rifles_SPAR_01", - "cba_jr", - "ace_realisticnames", - "A3_Weapons_F_Exp", - "ace_scopes", - "A3_Weapons_F_Acc", - "ace_laserpointer", - "A3_Weapons_F", - "ace_ballistics", - "rhsusf_c_weapons", - "ace_compat_rhs_usf3", - "ace_optics", - "tfar_handhelds", - "SMM_uniform_bw", - "ace_medical_treatment", - "SMM_vest_bw", - "ace_attach", - "ace_chemlights", - "ace_hearing", - "tfar_core", - "A3_Structures_F_Items_Vessels", - "acex_field_rations", - "CUP_CAStructures_E_Misc_Misc_Interier", - "A3_Supplies_F_Heli_CargoNets", - "CUP_A2_EditorObjects", - "CUP_CAMisc_E_WF", - "CUP_Misc3_Config", - "A3_Structures_F_Civ_InfoBoards", - "A3_Structures_F_EPA_Civ_Constructions", - "CUP_Misc_e_Config", - "CUP_CAMP_Armory_Misc_Infostands", - "A3_Modules_F_Curator_Curator", - "ace_interaction", - "ace_cargo", - "ace_dragging", - "A3_Structures_F_Exp_Walls_Concrete", - "A3_Structures_F_Civ_Camping", - "A3_Structures_F_Civ_Accessories", - "A3_Structures_F_Mil_Fortification", - "A3_Structures_F_Mil_Shelters", - "A3_Structures_F_System", - "A3_Structures_F_EPA_Mil_Scrapyard", - "A3_Weapons_F_Ammoboxes", - "ace_rearm", - "A3_Structures_F_Ind_Cargo", - "A3_Structures_F_Ind_Shed", - "A3_Modules_F", - "A3_Boat_F_Jets_Carrier_01", - "A3_Structures_F_Items_Food", - "A3_Misc_F_Helpers", - "A3_Signs_F_Signs_Ad", - "A3_Structures_F_Mil_BagFence", - "A3_Structures_F_Training", - "A3_Structures_F_Mark_Training", - "A3_Structures_F_EPB_Civ_Garbage", - "A3_Structures_F_Civ_Market", - "A3_Structures_F_Walls", - "A3_Structures_F_Wrecks", - "CUP_Editor_A2_Roads_Config", - "A3_Structures_F_Exp_Commercial_Market", - "A3_Structures_F_EPC_Dominants_GhostHotel", - "acex_sitting", - "A3_Structures_F_Exp_Naval_Piers", - "A3_Structures_F_Exp_Signs_Traffic", - "A3_Structures_F_Kart_Signs_Companies", - "A3_Structures_F_Naval_Piers", - "A3_Structures_F_Heli_VR_Helpers", - "A3_Props_F_Exp_A_Military_Equipment", - "A3_Structures_F_EPB_Items_Military", - "A3_Structures_F_Heli_Ind_Airport", - "A3_Structures_F_Civ_Lamps", - "A3_Structures_F_EPA_Items_Food", - "A3_Structures_F_Exp_Infrastructure_Pavements", - "A3_Supplies_F_Exp_Ammoboxes", - "rhssaf_c_weapons", - "A3_Signs_F", - "A3_Structures_F_Bootcamp_VR_Helpers", - "A3_Structures_F_Argo_Signs_Warnings", - "A3_Structures_F_Orange_VR_Helpers", - "A3_Soft_F_Kart_Kart_01", - "A3_Structures_F_Kart_Civ_SportsGrounds", - "A3_Structures_F_Items_Electronics", - "ace_nouniformrestrictions", - "A3_Props_F_Orange_Humanitarian_Supplies", - "A3_Structures_F_Dominants_Lighthouse", - "A3_Rocks_F_Sharp", - "A3_Rocks_F", - "A3_Static_F_Exp_Mortar_01", - "rhsusf_c_m252", - "ace_mk6mortar", - "GRAD_flag", - "A3_Structures_F_Mil_Helipads", - "A3_Structures_F_Heli_Items_Airport", - "CUP_CAStructures_Castle", - "A3_Structures_F_Exp_Civilian_Accessories", - "A3_Structures_F_EPA_Walls", - "A3_Boat_F_Destroyer_Destroyer_01", - "A3_Characters_F_Common", - "A3_Static_F_Destroyer_Ship_Gun_01", - "A3_Static_F_Destroyer_Ship_MRLS_01", - "A3_Static_F_Jets_SAM_System_02", - "A3_Static_F_Jets_AAA_System_01", - "A3_Static_F_Jets_SAM_System_01", - "A3_Static_F_Sams_Radar_System_01", - "A3_Static_F_Sams_SAM_System_03" -}; -class AddonsMetaData -{ - class List - { - items=71; - class Item0 - { - className="A3_Ui_F"; - name="Arma 3 - User Interface"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - class Item1 - { - className="A3_Characters_F"; - name="Arma 3 Alpha - Characters and Clothing"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - class Item2 - { - className="A3_Weapons_F_Exp"; - name="Arma 3 Apex - Weapons and Accessories"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - class Item3 - { - className="cba_jr"; - name="Community Base Addons - Joint Rails"; - author="CBA Team"; - url="https://www.github.com/CBATeam/CBA_A3"; - }; - class Item4 - { - className="ace_scopes"; - name="ACE3 - Scopes"; - author="ACE-Team"; - url="http://ace3mod.com/"; - }; - class Item5 - { - className="A3_Weapons_F"; - name="Arma 3 Alpha - Weapons and Accessories"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - class Item6 - { - className="ace_laserpointer"; - name="ACE3 - Laser Pointer"; - author="ACE-Team"; - url="http://ace3mod.com/"; - }; - class Item7 - { - className="ace_ballistics"; - name="ACE3 - Ballistics"; - author="ACE-Team"; - url="http://ace3mod.com/"; - }; - class Item8 - { - className="rhsusf_c_weapons"; - name="RHSUSF Weapons & Accessories"; - author="Red Hammer Studios"; - url="http://www.rhsmods.org/"; - }; - class Item9 - { - className="ace_compat_rhs_usf3"; - name="ACE3 - RHS USF Compatibility"; - author="ACE-Team"; - url="http://ace3mod.com/"; - }; - class Item10 - { - className="ace_optics"; - name="ACE3 - Optics"; - author="ACE-Team"; - url="http://ace3mod.com/"; - }; - class Item11 - { - className="tfar_handhelds"; - name="tfar_handhelds"; - url="https://github.com/michail-nikolaev/task-force-arma-3-radio"; - }; - class Item12 - { - className="SMM_uniform_bw"; - name="SMM BW Uniforms"; - author="Simmax"; - url="https://www.gruppe-adler.de"; - }; - class Item13 - { - className="ace_medical_treatment"; - name="ACE3 - Medical Treatment"; - author="ACE-Team"; - url="http://ace3mod.com/"; - }; - class Item14 - { - className="SMM_vest_bw"; - name="SMM BW Vests"; - author="Simmax"; - url="https://www.gruppe-adler.de"; - }; - class Item15 - { - className="ace_attach"; - name="ACE3 - Attach"; - author="ACE-Team"; - url="http://ace3mod.com/"; - }; - class Item16 - { - className="ace_chemlights"; - name="ace_chemlights"; - author="ACE-Team"; - url="http://ace3mod.com/"; - }; - class Item17 - { - className="ace_hearing"; - name="ACE3 - Hearing"; - author="ACE-Team"; - url="http://ace3mod.com/"; - }; - class Item18 - { - className="tfar_core"; - name="TFAR - Core"; - author="Task Force Arrowhead Radio Team"; - }; - class Item19 - { - className="A3_Structures_F"; - name="Arma 3 - Buildings and Structures"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - class Item20 - { - className="acex_field_rations"; - name="ACEX - Field Rations"; - author="ACE-Team"; - url="http://ace3mod.com/"; - }; - class Item21 - { - className="CUP_CAStructures_E_Misc_Misc_Interier"; - name="CUP_CAStructures_E_Misc_Misc_Interier"; - }; - class Item22 - { - className="A3_Supplies_F_Heli"; - name="Arma 3 Helicopters - Ammoboxes and Supplies"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - class Item23 - { - className="CUP_A2_EditorObjects"; - name="CUP_A2_EditorObjects"; - author="MemphisBelle"; - }; - class Item24 - { - className="CUP_CAMisc_E_WF"; - name="CUP_CAMisc_E_WF"; - }; - class Item25 - { - className="CUP_Misc3_Config"; - name="CUP_Misc3_Config"; - }; - class Item26 - { - className="A3_Structures_F_EPA"; - name="Arma 3 Survive Episode - Buildings and Structures"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - class Item27 - { - className="CUP_Misc_e_Config"; - name="CUP_Misc_e_Config"; - }; - class Item28 - { - className="CUP_CAMP_Armory_Misc_Infostands"; - name="CUP_CAMP_Armory_Misc_Infostands"; - }; - class Item29 - { - className="A3_Modules_F_Curator"; - name="Arma 3 Zeus Update - Scripted Modules"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - class Item30 - { - className="ace_interaction"; - name="ACE3 - Interaction"; - author="ACE-Team"; - url="http://ace3mod.com/"; - }; - class Item31 - { - className="ace_cargo"; - name="ACE3 - Cargo"; - author="ACE-Team"; - url="http://ace3mod.com/"; - }; - class Item32 - { - className="ace_dragging"; - name="ACE3 - Dragging"; - author="ACE-Team"; - url="http://ace3mod.com/"; - }; - class Item33 - { - className="A3_Structures_F_Exp"; - name="Arma 3 Apex - Buildings and Structures"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - class Item34 - { - className="A3_Structures_F_Mil"; - name="Arma 3 - Military Buildings and Structures"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - class Item35 - { - className="ace_rearm"; - name="ACE3 - Rearm"; - author="ACE-Team"; - url="http://ace3mod.com/"; - }; - class Item36 - { - className="A3_Structures_F_Ind"; - name="Arma 3 - Industrial Structures"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - class Item37 - { - className="A3_Modules_F"; - name="Arma 3 Alpha - Scripted Modules"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - class Item38 - { - className="A3_Boat_F_Jets"; - name="Arma 3 Jets - Boats and Submersibles"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - class Item39 - { - className="A3_Misc_F"; - name="Arma 3 - 3D Aids and Helpers"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - class Item40 - { - className="A3_Signs_F"; - name="Arma 3 - Signs"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - class Item41 - { - className="A3_Structures_F_Mark"; - name="Arma 3 Marksmen - Buildings and Structures"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - class Item42 - { - className="A3_Structures_F_EPB"; - name="Arma 3 Adapt Episode - Buildings and Structures"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - class Item43 - { - className="A3_Structures_F_Wrecks"; - name="Arma 3 - Vehicle Wrecks"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - class Item44 - { - className="CUP_Editor_A2_Roads_Config"; - name="CUP_Editor_A2_Roads_Config"; - }; - class Item45 - { - className="A3_Structures_F_Exp_Commercial"; - name="Arma 3 Apex - Commercial Buildings"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - class Item46 - { - className="A3_Structures_F_EPC"; - name="Arma 3 Win Episode - Buildings and Structures"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - class Item47 - { - className="acex_sitting"; - name="ACEX - Sitting"; - author="ACE-Team"; - url="http://ace3mod.com/"; - }; - class Item48 - { - className="A3_Structures_F_Kart"; - name="Arma 3 Karts - Buildings and Structures"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - class Item49 - { - className="A3_Structures_F_Heli"; - name="Arma 3 Helicopters - Buildings and Structures"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - class Item50 - { - className="A3_Props_F_Exp_A"; - name="Arma 3 Nexus Update - Decorative and Mission Objects"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - class Item51 - { - className="A3_Structures_F_Exp_Infrastructure"; - name="Arma 3 Apex - Infrastructure Objects"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - class Item52 - { - className="A3_Supplies_F_Exp"; - name="Arma 3 Apex - Ammoboxes and Supplies"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - class Item53 - { - className="rhssaf_c_weapons"; - name="RHS: SAF Weapons configuration"; - author="Red Hammer Studios"; - url="http://www.rhsmods.org/"; - }; - class Item54 - { - className="A3_Structures_F_Bootcamp"; - name="Arma 3 Bootcamp Update - Buildings and Structures"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - class Item55 - { - className="A3_Structures_F_Argo"; - name="Arma 3 Malden - Buildings and Structures"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - class Item56 - { - className="A3_Structures_F_Orange"; - name="Arma 3 Orange - Buildings and Structures"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - class Item57 - { - className="A3_Soft_F_Kart"; - name="Arma 3 Karts - Unarmored Land Vehicles"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - class Item58 - { - className="ace_nouniformrestrictions"; - name="ACE3 - No Uniform Restrictions"; - author="ACE-Team"; - url="http://ace3mod.com/"; - }; - class Item59 - { - className="A3_Props_F_Orange"; - name="Arma 3 Orange - Decorative and Mission Objects"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - class Item60 - { - className="A3_Rocks_F"; - name="Arma 3 - Rocks and Stones"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - class Item61 - { - className="A3_Static_F_Exp"; - name="Arma 3 Apex - Turrets"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - class Item62 - { - className="rhsusf_c_m252"; - name="rhsusf_c_m252"; - author="Red Hammer Studios"; - url="http://www.rhsmods.org/"; - }; - class Item63 - { - className="ace_mk6mortar"; - name="ACE3 - Mk6 Mortar"; - author="ACE-Team"; - url="http://ace3mod.com/"; - }; - class Item64 - { - className="GRAD_flag"; - name="GRAD_flag"; - author="Gruppe Adler"; - url="https://www.gruppe-adler.de/international/"; - }; - class Item65 - { - className="CUP_CAStructures_Castle"; - name="CUP_CAStructures_Castle"; - }; - class Item66 - { - className="A3_Structures_F_Exp_Civilian"; - name="Arma 3 Apex - Civilian Buildings"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - class Item67 - { - className="A3_Boat_F_Destroyer"; - name="Arma 3 Jets - Boats and Submersibles"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - class Item68 - { - className="A3_Static_F_Destroyer"; - name="CFGPATCHES_A3_Static_F_Destroyer"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - class Item69 - { - className="A3_Static_F_Jets"; - name="Arma 3 Jets - Turrets"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - class Item70 - { - className="A3_Static_F_Sams"; - name="Arma 3 Sams - Turrets"; - author="Bohemia Interactive"; - url="https://www.arma3.com"; - }; - }; -}; -dlcs[]= -{ - "RHS_USAF", - "Heli", - "Expansion", - "Jets", - "Kart", - "Mark", - "Argo", - "Orange" -}; -randomSeed=3122125; -class ScenarioData -{ - disabledAI=1; - class Header - { - gameType="Sandbox"; - minPlayers=1; - maxPlayers=36; - }; -}; -class CustomAttributes -{ - class Category0 - { - name="Multiplayer"; - class Attribute0 - { - property="RespawnTemplates"; - expression="true"; - class Value - { - class data - { - class type - { - type[]= - { - "ARRAY" - }; - }; - class value - { - items=1; - class Item0 - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="None"; - }; - }; - }; - }; - }; - }; - class Attribute1 - { - property="ReviveRequiredTrait"; - expression="false"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0; - }; - }; - }; - class Attribute2 - { - property="ReviveMode"; - expression="false"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0; - }; - }; - }; - class Attribute3 - { - property="ReviveMedicSpeedMultiplier"; - expression="false"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=2; - }; - }; - }; - class Attribute4 - { - property="SharedObjectives"; - expression="if (isMultiplayer) then {[_value] spawn bis_fnc_sharedObjectives;};"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0; - }; - }; - }; - class Attribute5 - { - property="RespawnButton"; - expression="true"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - class Attribute6 - { - property="ReviveForceRespawnDelay"; - expression="false"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=3; - }; - }; - }; - class Attribute7 - { - property="ReviveBleedOutDelay"; - expression="false"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=20; - }; - }; - }; - class Attribute8 - { - property="ReviveDelay"; - expression="false"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=6; - }; - }; - }; - class Attribute9 - { - property="ReviveUnconsciousStateMode"; - expression="false"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0; - }; - }; - }; - class Attribute10 - { - property="ReviveRequiredItems"; - expression="false"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0; - }; - }; - }; - nAttributes=11; - }; - class Category1 - { - name="Scenario"; - class Attribute0 - { - property="cba_settings_hash"; - expression="false"; - class Value - { - class data - { - class type - { - type[]= - { - "ARRAY" - }; - }; - class value - { - items=4; - class Item0 - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="#CBA_HASH#"; - }; - }; - class Item1 - { - class data - { - class type - { - type[]= - { - "ARRAY" - }; - }; - class value - { - items=46; - class Item0 - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="sthud_settings_occlusion"; - }; - }; - class Item1 - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="sthud_settings_squadbar"; - }; - }; - class Item2 - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="sthud_settings_removedeadviaproximity"; - }; - }; - class Item3 - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="ace_finger_enabled"; - }; - }; - class Item4 - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="ace_interaction_disablenegativerating"; - }; - }; - class Item5 - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="ace_map_bft_enabled"; - }; - }; - class Item6 - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="ace_map_bft_hideaigroups"; - }; - }; - class Item7 - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="ace_map_mapshowcursorcoordinates"; - }; - }; - class Item8 - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="ace_medical_level"; - }; - }; - class Item9 - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="ace_medical_medicsetting"; - }; - }; - class Item10 - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="ace_medical_bleedingcoefficient"; - }; - }; - class Item11 - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="ace_medical_enableadvancedwounds"; - }; - }; - class Item12 - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="ace_medical_aidamagethreshold"; - }; - }; - class Item13 - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="ace_medical_preventinstadeath"; - }; - }; - class Item14 - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="ace_medical_enablerevive"; - }; - }; - class Item15 - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="ace_medical_maxrevivetime"; - }; - }; - class Item16 - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="ace_medical_allowdeadbodymovement"; - }; - }; - class Item17 - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="ace_medical_littersimulationdetail"; - }; - }; - class Item18 - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="ace_medical_littercleanupdelay"; - }; - }; - class Item19 - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="ace_medical_uselocation_pak"; - }; - }; - class Item20 - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="ace_medical_uselocation_surgicalkit"; - }; - }; - class Item21 - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="ace_medical_usecondition_pak"; - }; - }; - class Item22 - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="ace_medical_usecondition_surgicalkit"; - }; - }; - class Item23 - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="ace_mk6mortar_airresistanceenabled"; - }; - }; - class Item24 - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="ace_mk6mortar_allowcomputerrangefinder"; - }; - }; - class Item25 - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="ace_nightvision_disablenvgswithsights"; - }; - }; - class Item26 - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="ace_nightvision_fogscaling"; - }; - }; - class Item27 - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="ace_nightvision_effectscaling"; - }; - }; - class Item28 - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="ace_nightvision_aimdownsightsblur"; - }; - }; - class Item29 - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="ace_vehiclelock_lockvehicleinventory"; - }; - }; - class Item30 - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="ace_weather_enabled"; - }; - }; - class Item31 - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="acex_sitting_enable"; - }; - }; - class Item32 - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="ace_hearing_enablecombatdeafness"; - }; - }; - class Item33 - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="ace_hearing_disableearringing"; - }; - }; - class Item34 - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="acex_headless_enabled"; - }; - }; - class Item35 - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="acex_headless_endmission"; - }; - }; - class Item36 - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="acex_headless_log"; - }; - }; - class Item37 - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="ace_respawn_savepredeathgear"; - }; - }; - class Item38 - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="ace_weather_updateinterval"; - }; - }; - class Item39 - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="ace_weather_windsimulation"; - }; - }; - class Item40 - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="ace_advanced_ballistics_enabled"; - }; - }; - class Item41 - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="ace_advanced_ballistics_muzzlevelocityvariationenabled"; - }; - }; - class Item42 - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="ace_advanced_ballistics_ammotemperatureenabled"; - }; - }; - class Item43 - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="ace_advanced_ballistics_barrellengthinfluenceenabled"; - }; - }; - class Item44 - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="ace_advanced_ballistics_bullettraceenabled"; - }; - }; - class Item45 - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="ace_advanced_ballistics_simulationinterval"; - }; - }; - }; - }; - }; - class Item2 - { - class data - { - class type - { - type[]= - { - "ARRAY" - }; - }; - class value - { - items=46; - class Item0 - { - class data - { - class type - { - type[]= - { - "ARRAY" - }; - }; - class value - { - items=2; - class Item0 - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - class Item1 - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - }; - }; - class Item1 - { - class data - { - class type - { - type[]= - { - "ARRAY" - }; - }; - class value - { - items=2; - class Item0 - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - class Item1 - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - }; - }; - class Item2 - { - class data - { - class type - { - type[]= - { - "ARRAY" - }; - }; - class value - { - items=2; - class Item0 - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - class Item1 - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - }; - }; - class Item3 - { - class data - { - class type - { - type[]= - { - "ARRAY" - }; - }; - class value - { - items=2; - class Item0 - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - class Item1 - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - }; - }; - class Item4 - { - class data - { - class type - { - type[]= - { - "ARRAY" - }; - }; - class value - { - items=2; - class Item0 - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - class Item1 - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - }; - }; - class Item5 - { - class data - { - class type - { - type[]= - { - "ARRAY" - }; - }; - class value - { - items=2; - class Item0 - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - class Item1 - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - }; - }; - class Item6 - { - class data - { - class type - { - type[]= - { - "ARRAY" - }; - }; - class value - { - items=2; - class Item0 - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - class Item1 - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - }; - }; - class Item7 - { - class data - { - class type - { - type[]= - { - "ARRAY" - }; - }; - class value - { - items=2; - class Item0 - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - class Item1 - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - }; - }; - class Item8 - { - class data - { - class type - { - type[]= - { - "ARRAY" - }; - }; - class value - { - items=2; - class Item0 - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=2; - }; - }; - class Item1 - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - }; - }; - class Item9 - { - class data - { - class type - { - type[]= - { - "ARRAY" - }; - }; - class value - { - items=2; - class Item0 - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=2; - }; - }; - class Item1 - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - }; - }; - class Item10 - { - class data - { - class type - { - type[]= - { - "ARRAY" - }; - }; - class value - { - items=2; - class Item0 - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.5; - }; - }; - class Item1 - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - }; - }; - class Item11 - { - class data - { - class type - { - type[]= - { - "ARRAY" - }; - }; - class value - { - items=2; - class Item0 - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - class Item1 - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - }; - }; - class Item12 - { - class data - { - class type - { - type[]= - { - "ARRAY" - }; - }; - class value - { - items=2; - class Item0 - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.69999999; - }; - }; - class Item1 - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - }; - }; - class Item13 - { - class data - { - class type - { - type[]= - { - "ARRAY" - }; - }; - class value - { - items=2; - class Item0 - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - class Item1 - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - }; - }; - class Item14 - { - class data - { - class type - { - type[]= - { - "ARRAY" - }; - }; - class value - { - items=2; - class Item0 - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - class Item1 - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - }; - }; - class Item15 - { - class data - { - class type - { - type[]= - { - "ARRAY" - }; - }; - class value - { - items=2; - class Item0 - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1200; - }; - }; - class Item1 - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - }; - }; - class Item16 - { - class data - { - class type - { - type[]= - { - "ARRAY" - }; - }; - class value - { - items=2; - class Item0 - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - class Item1 - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - }; - }; - class Item17 - { - class data - { - class type - { - type[]= - { - "ARRAY" - }; - }; - class value - { - items=2; - class Item0 - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=2; - }; - }; - class Item1 - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - }; - }; - class Item18 - { - class data - { - class type - { - type[]= - { - "ARRAY" - }; - }; - class value - { - items=2; - class Item0 - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=300; - }; - }; - class Item1 - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - }; - }; - class Item19 - { - class data - { - class type - { - type[]= - { - "ARRAY" - }; - }; - class value - { - items=2; - class Item0 - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0; - }; - }; - class Item1 - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - }; - }; - class Item20 - { - class data - { - class type - { - type[]= - { - "ARRAY" - }; - }; - class value - { - items=2; - class Item0 - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0; - }; - }; - class Item1 - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - }; - }; - class Item21 - { - class data - { - class type - { - type[]= - { - "ARRAY" - }; - }; - class value - { - items=2; - class Item0 - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - class Item1 - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - }; - }; - class Item22 - { - class data - { - class type - { - type[]= - { - "ARRAY" - }; - }; - class value - { - items=2; - class Item0 - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - class Item1 - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - }; - }; - class Item23 - { - class data - { - class type - { - type[]= - { - "ARRAY" - }; - }; - class value - { - items=2; - class Item0 - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - class Item1 - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - }; - }; - class Item24 - { - class data - { - class type - { - type[]= - { - "ARRAY" - }; - }; - class value - { - items=2; - class Item0 - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - class Item1 - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - }; - }; - class Item25 - { - class data - { - class type - { - type[]= - { - "ARRAY" - }; - }; - class value - { - items=2; - class Item0 - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - class Item1 - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - }; - }; - class Item26 - { - class data - { - class type - { - type[]= - { - "ARRAY" - }; - }; - class value - { - items=2; - class Item0 - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.1; - }; - }; - class Item1 - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - }; - }; - class Item27 - { - class data - { - class type - { - type[]= - { - "ARRAY" - }; - }; - class value - { - items=2; - class Item0 - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.5; - }; - }; - class Item1 - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - }; - }; - class Item28 - { - class data - { - class type - { - type[]= - { - "ARRAY" - }; - }; - class value - { - items=2; - class Item0 - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.40000001; - }; - }; - class Item1 - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - }; - }; - class Item29 - { - class data - { - class type - { - type[]= - { - "ARRAY" - }; - }; - class value - { - items=2; - class Item0 - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - class Item1 - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - }; - }; - class Item30 - { - class data - { - class type - { - type[]= - { - "ARRAY" - }; - }; - class value - { - items=2; - class Item0 - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - class Item1 - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - }; - }; - class Item31 - { - class data - { - class type - { - type[]= - { - "ARRAY" - }; - }; - class value - { - items=2; - class Item0 - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - class Item1 - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - }; - }; - class Item32 - { - class data - { - class type - { - type[]= - { - "ARRAY" - }; - }; - class value - { - items=2; - class Item0 - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - class Item1 - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - }; - }; - class Item33 - { - class data - { - class type - { - type[]= - { - "ARRAY" - }; - }; - class value - { - items=2; - class Item0 - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - class Item1 - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - }; - }; - class Item34 - { - class data - { - class type - { - type[]= - { - "ARRAY" - }; - }; - class value - { - items=2; - class Item0 - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - class Item1 - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - }; - }; - class Item35 - { - class data - { - class type - { - type[]= - { - "ARRAY" - }; - }; - class value - { - items=2; - class Item0 - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0; - }; - }; - class Item1 - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - }; - }; - class Item36 - { - class data - { - class type - { - type[]= - { - "ARRAY" - }; - }; - class value - { - items=2; - class Item0 - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - class Item1 - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - }; - }; - class Item37 - { - class data - { - class type - { - type[]= - { - "ARRAY" - }; - }; - class value - { - items=2; - class Item0 - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - class Item1 - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - }; - }; - class Item38 - { - class data - { - class type - { - type[]= - { - "ARRAY" - }; - }; - class value - { - items=2; - class Item0 - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=300; - }; - }; - class Item1 - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - }; - }; - class Item39 - { - class data - { - class type - { - type[]= - { - "ARRAY" - }; - }; - class value - { - items=2; - class Item0 - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - class Item1 - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - }; - }; - class Item40 - { - class data - { - class type - { - type[]= - { - "ARRAY" - }; - }; - class value - { - items=2; - class Item0 - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - class Item1 - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - }; - }; - class Item41 - { - class data - { - class type - { - type[]= - { - "ARRAY" - }; - }; - class value - { - items=2; - class Item0 - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - class Item1 - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - }; - }; - class Item42 - { - class data - { - class type - { - type[]= - { - "ARRAY" - }; - }; - class value - { - items=2; - class Item0 - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - class Item1 - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - }; - }; - class Item43 - { - class data - { - class type - { - type[]= - { - "ARRAY" - }; - }; - class value - { - items=2; - class Item0 - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - class Item1 - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - }; - }; - class Item44 - { - class data - { - class type - { - type[]= - { - "ARRAY" - }; - }; - class value - { - items=2; - class Item0 - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - class Item1 - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - }; - }; - class Item45 - { - class data - { - class type - { - type[]= - { - "ARRAY" - }; - }; - class value - { - items=2; - class Item0 - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0.050000001; - }; - }; - class Item1 - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - }; - }; - }; - }; - }; - class Item3 - { - class data - { - nil=1; - class type - { - type[]= - { - "ANY" - }; - }; - }; - }; - }; - }; - }; - }; - class Attribute1 - { - property="EnableDebugConsole"; - expression="true"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - nAttributes=2; - }; -}; -class Mission -{ - class Intel - { - overviewText="Adler Base zum Ausrüsten und Waffen testen."; - timeOfChanges=10800; - startWeather=0.092054911; - startWind=0.29999992; - startWindDir=310; - startWaves=0.099999994; - forecastWeather=0.87699741; - forecastWind=0.29999998; - forecastWaves=0.099999994; - forecastLightnings=0.099999994; - forecastWindDir=310; - rainForced=1; - lightningsForced=1; - wavesForced=1; - windForced=1; - year=2020; - month=6; - day=24; - hour=12; - minute=0; - startFogDecay=0.013; - forecastFogDecay=0.013; - }; - class Entities - { - items=1356; - class Item0 - { - dataType="Marker"; - position[]={14190.878,22.927769,16272.973}; - name="respawn_west"; - type="Empty"; - angle=224.09334; - id=0; - atlOffset=3.343895; - }; - class Item1 - { - dataType="Group"; - side="West"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={14200.868,19.577,16273.004}; - angles[]={0.014664836,3.8592575,6.2818484}; - }; - side="West"; - flags=6; - class Attributes - { - skill=0.60000002; - isPlayable=1; - class Inventory - { - class primaryWeapon - { - name="arifle_SPAR_01_blk_F"; - optics="optic_ERCO_blk_F"; - flashlight="acc_pointer_IR"; - class primaryMuzzleMag - { - name="30Rnd_556x45_Stanag_Tracer_Red"; - ammoLeft=30; - }; - }; - class handgun - { - name="rhsusf_weap_glock17g4"; - class primaryMuzzleMag - { - name="rhsusf_mag_17Rnd_9x19_FMJ"; - ammoLeft=17; - }; - }; - class binocular - { - name="Binocular"; - }; - class uniform - { - typeName="SMM_Uniform_BW_FT"; - isBackpack=0; - class MagazineCargo - { - items=1; - class Item0 - { - name="30Rnd_556x45_Stanag_Tracer_Green"; - count=4; - ammoLeft=30; - }; - }; - class ItemCargo - { - items=2; - class Item0 - { - name="ACE_fieldDressing"; - count=2; - }; - class Item1 - { - name="ACE_morphine"; - count=1; - }; - }; - }; - class vest - { - typeName="SMM_Vest_BW_FT"; - isBackpack=0; - class MagazineCargo - { - items=6; - class Item0 - { - name="SmokeShell"; - count=1; - ammoLeft=1; - }; - class Item1 - { - name="SmokeShellGreen"; - count=1; - ammoLeft=1; - }; - class Item2 - { - name="Chemlight_green"; - count=2; - ammoLeft=1; - }; - class Item3 - { - name="HandGrenade"; - count=2; - ammoLeft=1; - }; - class Item4 - { - name="MiniGrenade"; - count=3; - ammoLeft=1; - }; - class Item5 - { - name="30Rnd_556x45_Stanag_Tracer_Red"; - count=2; - ammoLeft=30; - }; - }; - class ItemCargo - { - items=3; - class Item0 - { - name="ACE_EarPlugs"; - count=1; - }; - class Item1 - { - name="ACE_fieldDressing"; - count=10; - }; - class Item2 - { - name="ACE_morphine"; - count=6; - }; - }; - }; - map="ItemMap"; - compass="ItemCompass"; - watch="ItemWatch"; - radio="tf_anprc152"; - gps="ItemGPS"; - headgear="SMM_Helmet_BW_FT"; - }; - }; - id=171; - type="B_Soldier_F"; - atlOffset=5.7220459e-005; - class CustomAttributes - { - class Attribute0 - { - property="acex_headless_blacklist"; - expression="_this setVariable [""acex_headless_blacklist"",_value,true]"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isHandcuffed"; - expression="if (_value) then {[objNull, [_this], true] call ace_captives_fnc_moduleHandcuffed}"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute2 - { - property="ace_isSurrendered"; - expression="if (_value) then {[objNull, [_this], true] call ace_captives_fnc_moduleSurrender}"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=3; - }; - }; - }; - class Attributes - { - }; - id=170; - atlOffset=5.7220459e-005; - }; - class Item2 - { - dataType="Group"; - side="West"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={14199.107,19.556314,16274.574}; - angles[]={0.014664836,3.8592575,6.2818484}; - }; - side="West"; - flags=6; - class Attributes - { - skill=0.60000002; - isPlayable=1; - class Inventory - { - class primaryWeapon - { - name="arifle_SPAR_01_blk_F"; - optics="optic_ERCO_blk_F"; - flashlight="acc_pointer_IR"; - class primaryMuzzleMag - { - name="30Rnd_556x45_Stanag_Tracer_Red"; - ammoLeft=30; - }; - }; - class handgun - { - name="rhsusf_weap_glock17g4"; - class primaryMuzzleMag - { - name="rhsusf_mag_17Rnd_9x19_FMJ"; - ammoLeft=17; - }; - }; - class binocular - { - name="Binocular"; - }; - class uniform - { - typeName="SMM_Uniform_BW_FT"; - isBackpack=0; - class MagazineCargo - { - items=1; - class Item0 - { - name="30Rnd_556x45_Stanag_Tracer_Green"; - count=4; - ammoLeft=30; - }; - }; - class ItemCargo - { - items=2; - class Item0 - { - name="ACE_fieldDressing"; - count=2; - }; - class Item1 - { - name="ACE_morphine"; - count=1; - }; - }; - }; - class vest - { - typeName="SMM_Vest_BW_FT"; - isBackpack=0; - class MagazineCargo - { - items=6; - class Item0 - { - name="SmokeShell"; - count=1; - ammoLeft=1; - }; - class Item1 - { - name="SmokeShellGreen"; - count=1; - ammoLeft=1; - }; - class Item2 - { - name="Chemlight_green"; - count=2; - ammoLeft=1; - }; - class Item3 - { - name="HandGrenade"; - count=2; - ammoLeft=1; - }; - class Item4 - { - name="MiniGrenade"; - count=3; - ammoLeft=1; - }; - class Item5 - { - name="30Rnd_556x45_Stanag_Tracer_Red"; - count=2; - ammoLeft=30; - }; - }; - class ItemCargo - { - items=3; - class Item0 - { - name="ACE_EarPlugs"; - count=1; - }; - class Item1 - { - name="ACE_fieldDressing"; - count=10; - }; - class Item2 - { - name="ACE_morphine"; - count=6; - }; - }; - }; - map="ItemMap"; - compass="ItemCompass"; - watch="ItemWatch"; - radio="tf_anprc152"; - gps="ItemGPS"; - headgear="SMM_Helmet_BW_FT"; - }; - }; - id=173; - type="B_Soldier_F"; - atlOffset=6.4849854e-005; - class CustomAttributes - { - class Attribute0 - { - property="acex_headless_blacklist"; - expression="_this setVariable [""acex_headless_blacklist"",_value,true]"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isHandcuffed"; - expression="if (_value) then {[objNull, [_this], true] call ace_captives_fnc_moduleHandcuffed}"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute2 - { - property="ace_isSurrendered"; - expression="if (_value) then {[objNull, [_this], true] call ace_captives_fnc_moduleSurrender}"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=3; - }; - }; - }; - class Attributes - { - }; - id=172; - atlOffset=6.4849854e-005; - }; - class Item3 - { - dataType="Group"; - side="West"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={14197.498,19.540548,16276.07}; - angles[]={0.010664274,3.8592575,6.2751846}; - }; - side="West"; - flags=6; - class Attributes - { - skill=0.60000002; - isPlayable=1; - class Inventory - { - class primaryWeapon - { - name="arifle_SPAR_01_blk_F"; - optics="optic_ERCO_blk_F"; - flashlight="acc_pointer_IR"; - class primaryMuzzleMag - { - name="30Rnd_556x45_Stanag_Tracer_Red"; - ammoLeft=30; - }; - }; - class handgun - { - name="rhsusf_weap_glock17g4"; - class primaryMuzzleMag - { - name="rhsusf_mag_17Rnd_9x19_FMJ"; - ammoLeft=17; - }; - }; - class binocular - { - name="Binocular"; - }; - class uniform - { - typeName="SMM_Uniform_BW_FT"; - isBackpack=0; - class MagazineCargo - { - items=1; - class Item0 - { - name="30Rnd_556x45_Stanag_Tracer_Green"; - count=4; - ammoLeft=30; - }; - }; - class ItemCargo - { - items=2; - class Item0 - { - name="ACE_fieldDressing"; - count=2; - }; - class Item1 - { - name="ACE_morphine"; - count=1; - }; - }; - }; - class vest - { - typeName="SMM_Vest_BW_FT"; - isBackpack=0; - class MagazineCargo - { - items=6; - class Item0 - { - name="SmokeShell"; - count=1; - ammoLeft=1; - }; - class Item1 - { - name="SmokeShellGreen"; - count=1; - ammoLeft=1; - }; - class Item2 - { - name="Chemlight_green"; - count=2; - ammoLeft=1; - }; - class Item3 - { - name="HandGrenade"; - count=2; - ammoLeft=1; - }; - class Item4 - { - name="MiniGrenade"; - count=3; - ammoLeft=1; - }; - class Item5 - { - name="30Rnd_556x45_Stanag_Tracer_Red"; - count=2; - ammoLeft=30; - }; - }; - class ItemCargo - { - items=3; - class Item0 - { - name="ACE_EarPlugs"; - count=1; - }; - class Item1 - { - name="ACE_fieldDressing"; - count=10; - }; - class Item2 - { - name="ACE_morphine"; - count=6; - }; - }; - }; - map="ItemMap"; - compass="ItemCompass"; - watch="ItemWatch"; - radio="tf_anprc152"; - gps="ItemGPS"; - headgear="SMM_Helmet_BW_FT"; - }; - }; - id=175; - type="B_Soldier_F"; - atlOffset=1.9073486e-006; - class CustomAttributes - { - class Attribute0 - { - property="acex_headless_blacklist"; - expression="_this setVariable [""acex_headless_blacklist"",_value,true]"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isHandcuffed"; - expression="if (_value) then {[objNull, [_this], true] call ace_captives_fnc_moduleHandcuffed}"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute2 - { - property="ace_isSurrendered"; - expression="if (_value) then {[objNull, [_this], true] call ace_captives_fnc_moduleSurrender}"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=3; - }; - }; - }; - class Attributes - { - }; - id=174; - atlOffset=1.9073486e-006; - }; - class Item4 - { - dataType="Group"; - side="West"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={14195.812,19.538708,16277.508}; - angles[]={0.010664274,3.8592575,6.2751846}; - }; - side="West"; - flags=6; - class Attributes - { - skill=0.60000002; - isPlayable=1; - class Inventory - { - class primaryWeapon - { - name="arifle_SPAR_01_blk_F"; - optics="optic_ERCO_blk_F"; - flashlight="acc_pointer_IR"; - class primaryMuzzleMag - { - name="30Rnd_556x45_Stanag_Tracer_Red"; - ammoLeft=30; - }; - }; - class handgun - { - name="rhsusf_weap_glock17g4"; - class primaryMuzzleMag - { - name="rhsusf_mag_17Rnd_9x19_FMJ"; - ammoLeft=17; - }; - }; - class binocular - { - name="Binocular"; - }; - class uniform - { - typeName="SMM_Uniform_BW_FT"; - isBackpack=0; - class MagazineCargo - { - items=1; - class Item0 - { - name="30Rnd_556x45_Stanag_Tracer_Green"; - count=4; - ammoLeft=30; - }; - }; - class ItemCargo - { - items=2; - class Item0 - { - name="ACE_fieldDressing"; - count=2; - }; - class Item1 - { - name="ACE_morphine"; - count=1; - }; - }; - }; - class vest - { - typeName="SMM_Vest_BW_FT"; - isBackpack=0; - class MagazineCargo - { - items=6; - class Item0 - { - name="SmokeShell"; - count=1; - ammoLeft=1; - }; - class Item1 - { - name="SmokeShellGreen"; - count=1; - ammoLeft=1; - }; - class Item2 - { - name="Chemlight_green"; - count=2; - ammoLeft=1; - }; - class Item3 - { - name="HandGrenade"; - count=2; - ammoLeft=1; - }; - class Item4 - { - name="MiniGrenade"; - count=3; - ammoLeft=1; - }; - class Item5 - { - name="30Rnd_556x45_Stanag_Tracer_Red"; - count=2; - ammoLeft=30; - }; - }; - class ItemCargo - { - items=3; - class Item0 - { - name="ACE_EarPlugs"; - count=1; - }; - class Item1 - { - name="ACE_fieldDressing"; - count=10; - }; - class Item2 - { - name="ACE_morphine"; - count=6; - }; - }; - }; - map="ItemMap"; - compass="ItemCompass"; - watch="ItemWatch"; - radio="tf_anprc152"; - gps="ItemGPS"; - headgear="SMM_Helmet_BW_FT"; - }; - }; - id=177; - type="B_Soldier_F"; - atlOffset=1.9073486e-006; - class CustomAttributes - { - class Attribute0 - { - property="acex_headless_blacklist"; - expression="_this setVariable [""acex_headless_blacklist"",_value,true]"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isHandcuffed"; - expression="if (_value) then {[objNull, [_this], true] call ace_captives_fnc_moduleHandcuffed}"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute2 - { - property="ace_isSurrendered"; - expression="if (_value) then {[objNull, [_this], true] call ace_captives_fnc_moduleSurrender}"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=3; - }; - }; - }; - class Attributes - { - }; - id=176; - atlOffset=1.9073486e-006; - }; - class Item5 - { - dataType="Group"; - side="West"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={14193.611,19.532156,16279.773}; - angles[]={0.010664274,3.8592575,6.2751846}; - }; - side="West"; - flags=6; - class Attributes - { - skill=0.60000002; - isPlayable=1; - class Inventory - { - class primaryWeapon - { - name="arifle_SPAR_01_blk_F"; - optics="optic_ERCO_blk_F"; - flashlight="acc_pointer_IR"; - class primaryMuzzleMag - { - name="30Rnd_556x45_Stanag_Tracer_Red"; - ammoLeft=30; - }; - }; - class handgun - { - name="rhsusf_weap_glock17g4"; - class primaryMuzzleMag - { - name="rhsusf_mag_17Rnd_9x19_FMJ"; - ammoLeft=17; - }; - }; - class binocular - { - name="Binocular"; - }; - class uniform - { - typeName="SMM_Uniform_BW_FT"; - isBackpack=0; - class MagazineCargo - { - items=1; - class Item0 - { - name="30Rnd_556x45_Stanag_Tracer_Green"; - count=4; - ammoLeft=30; - }; - }; - class ItemCargo - { - items=2; - class Item0 - { - name="ACE_fieldDressing"; - count=2; - }; - class Item1 - { - name="ACE_morphine"; - count=1; - }; - }; - }; - class vest - { - typeName="SMM_Vest_BW_FT"; - isBackpack=0; - class MagazineCargo - { - items=6; - class Item0 - { - name="SmokeShell"; - count=1; - ammoLeft=1; - }; - class Item1 - { - name="SmokeShellGreen"; - count=1; - ammoLeft=1; - }; - class Item2 - { - name="Chemlight_green"; - count=2; - ammoLeft=1; - }; - class Item3 - { - name="HandGrenade"; - count=2; - ammoLeft=1; - }; - class Item4 - { - name="MiniGrenade"; - count=3; - ammoLeft=1; - }; - class Item5 - { - name="30Rnd_556x45_Stanag_Tracer_Red"; - count=2; - ammoLeft=30; - }; - }; - class ItemCargo - { - items=3; - class Item0 - { - name="ACE_EarPlugs"; - count=1; - }; - class Item1 - { - name="ACE_fieldDressing"; - count=10; - }; - class Item2 - { - name="ACE_morphine"; - count=6; - }; - }; - }; - map="ItemMap"; - compass="ItemCompass"; - watch="ItemWatch"; - radio="tf_anprc152"; - gps="ItemGPS"; - headgear="SMM_Helmet_BW_FT"; - }; - }; - id=179; - type="B_Soldier_F"; - atlOffset=1.9073486e-006; - class CustomAttributes - { - class Attribute0 - { - property="acex_headless_blacklist"; - expression="_this setVariable [""acex_headless_blacklist"",_value,true]"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isHandcuffed"; - expression="if (_value) then {[objNull, [_this], true] call ace_captives_fnc_moduleHandcuffed}"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute2 - { - property="ace_isSurrendered"; - expression="if (_value) then {[objNull, [_this], true] call ace_captives_fnc_moduleSurrender}"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=3; - }; - }; - }; - class Attributes - { - }; - id=178; - atlOffset=1.9073486e-006; - }; - class Item6 - { - dataType="Group"; - side="West"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={14191.453,19.529497,16281.641}; - angles[]={0.010664274,3.8592575,6.2751846}; - }; - side="West"; - flags=6; - class Attributes - { - skill=0.60000002; - isPlayable=1; - class Inventory - { - class primaryWeapon - { - name="arifle_SPAR_01_blk_F"; - optics="optic_ERCO_blk_F"; - flashlight="acc_pointer_IR"; - class primaryMuzzleMag - { - name="30Rnd_556x45_Stanag_Tracer_Red"; - ammoLeft=30; - }; - }; - class handgun - { - name="rhsusf_weap_glock17g4"; - class primaryMuzzleMag - { - name="rhsusf_mag_17Rnd_9x19_FMJ"; - ammoLeft=17; - }; - }; - class binocular - { - name="Binocular"; - }; - class uniform - { - typeName="SMM_Uniform_BW_FT"; - isBackpack=0; - class MagazineCargo - { - items=1; - class Item0 - { - name="30Rnd_556x45_Stanag_Tracer_Green"; - count=4; - ammoLeft=30; - }; - }; - class ItemCargo - { - items=2; - class Item0 - { - name="ACE_fieldDressing"; - count=2; - }; - class Item1 - { - name="ACE_morphine"; - count=1; - }; - }; - }; - class vest - { - typeName="SMM_Vest_BW_FT"; - isBackpack=0; - class MagazineCargo - { - items=6; - class Item0 - { - name="SmokeShell"; - count=1; - ammoLeft=1; - }; - class Item1 - { - name="SmokeShellGreen"; - count=1; - ammoLeft=1; - }; - class Item2 - { - name="Chemlight_green"; - count=2; - ammoLeft=1; - }; - class Item3 - { - name="HandGrenade"; - count=2; - ammoLeft=1; - }; - class Item4 - { - name="MiniGrenade"; - count=3; - ammoLeft=1; - }; - class Item5 - { - name="30Rnd_556x45_Stanag_Tracer_Red"; - count=2; - ammoLeft=30; - }; - }; - class ItemCargo - { - items=3; - class Item0 - { - name="ACE_EarPlugs"; - count=1; - }; - class Item1 - { - name="ACE_fieldDressing"; - count=10; - }; - class Item2 - { - name="ACE_morphine"; - count=6; - }; - }; - }; - map="ItemMap"; - compass="ItemCompass"; - watch="ItemWatch"; - radio="tf_anprc152"; - gps="ItemGPS"; - headgear="SMM_Helmet_BW_FT"; - }; - }; - id=181; - type="B_Soldier_F"; - atlOffset=1.9073486e-006; - class CustomAttributes - { - class Attribute0 - { - property="acex_headless_blacklist"; - expression="_this setVariable [""acex_headless_blacklist"",_value,true]"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isHandcuffed"; - expression="if (_value) then {[objNull, [_this], true] call ace_captives_fnc_moduleHandcuffed}"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute2 - { - property="ace_isSurrendered"; - expression="if (_value) then {[objNull, [_this], true] call ace_captives_fnc_moduleSurrender}"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=3; - }; - }; - }; - class Attributes - { - }; - id=180; - atlOffset=1.9073486e-006; - }; - class Item7 - { - dataType="Group"; - side="West"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={14189.296,19.520504,16283.545}; - angles[]={0.021328852,3.8592575,6.2685208}; - }; - side="West"; - flags=6; - class Attributes - { - skill=0.60000002; - isPlayable=1; - class Inventory - { - class primaryWeapon - { - name="arifle_SPAR_01_blk_F"; - optics="optic_ERCO_blk_F"; - flashlight="acc_pointer_IR"; - class primaryMuzzleMag - { - name="30Rnd_556x45_Stanag_Tracer_Red"; - ammoLeft=30; - }; - }; - class handgun - { - name="rhsusf_weap_glock17g4"; - class primaryMuzzleMag - { - name="rhsusf_mag_17Rnd_9x19_FMJ"; - ammoLeft=17; - }; - }; - class binocular - { - name="Binocular"; - }; - class uniform - { - typeName="SMM_Uniform_BW_FT"; - isBackpack=0; - class MagazineCargo - { - items=1; - class Item0 - { - name="30Rnd_556x45_Stanag_Tracer_Green"; - count=4; - ammoLeft=30; - }; - }; - class ItemCargo - { - items=2; - class Item0 - { - name="ACE_fieldDressing"; - count=2; - }; - class Item1 - { - name="ACE_morphine"; - count=1; - }; - }; - }; - class vest - { - typeName="SMM_Vest_BW_FT"; - isBackpack=0; - class MagazineCargo - { - items=6; - class Item0 - { - name="SmokeShell"; - count=1; - ammoLeft=1; - }; - class Item1 - { - name="SmokeShellGreen"; - count=1; - ammoLeft=1; - }; - class Item2 - { - name="Chemlight_green"; - count=2; - ammoLeft=1; - }; - class Item3 - { - name="HandGrenade"; - count=2; - ammoLeft=1; - }; - class Item4 - { - name="MiniGrenade"; - count=3; - ammoLeft=1; - }; - class Item5 - { - name="30Rnd_556x45_Stanag_Tracer_Red"; - count=2; - ammoLeft=30; - }; - }; - class ItemCargo - { - items=3; - class Item0 - { - name="ACE_EarPlugs"; - count=1; - }; - class Item1 - { - name="ACE_fieldDressing"; - count=10; - }; - class Item2 - { - name="ACE_morphine"; - count=6; - }; - }; - }; - map="ItemMap"; - compass="ItemCompass"; - watch="ItemWatch"; - radio="tf_anprc152"; - gps="ItemGPS"; - headgear="SMM_Helmet_BW_FT"; - }; - }; - id=183; - type="B_Soldier_F"; - atlOffset=1.9073486e-006; - class CustomAttributes - { - class Attribute0 - { - property="acex_headless_blacklist"; - expression="_this setVariable [""acex_headless_blacklist"",_value,true]"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isHandcuffed"; - expression="if (_value) then {[objNull, [_this], true] call ace_captives_fnc_moduleHandcuffed}"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute2 - { - property="ace_isSurrendered"; - expression="if (_value) then {[objNull, [_this], true] call ace_captives_fnc_moduleSurrender}"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=3; - }; - }; - }; - class Attributes - { - }; - id=182; - atlOffset=1.9073486e-006; - }; - class Item8 - { - dataType="Group"; - side="West"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={14187.613,19.551428,16281.459}; - angles[]={0.0066682254,3.8592575,6.2778587}; - }; - side="West"; - flags=6; - class Attributes - { - skill=0.60000002; - isPlayable=1; - class Inventory - { - class primaryWeapon - { - name="arifle_SPAR_01_blk_F"; - optics="optic_ERCO_blk_F"; - flashlight="acc_pointer_IR"; - class primaryMuzzleMag - { - name="30Rnd_556x45_Stanag_Tracer_Red"; - ammoLeft=30; - }; - }; - class handgun - { - name="rhsusf_weap_glock17g4"; - class primaryMuzzleMag - { - name="rhsusf_mag_17Rnd_9x19_FMJ"; - ammoLeft=17; - }; - }; - class binocular - { - name="Binocular"; - }; - class uniform - { - typeName="SMM_Uniform_BW_FT"; - isBackpack=0; - class MagazineCargo - { - items=1; - class Item0 - { - name="30Rnd_556x45_Stanag_Tracer_Green"; - count=4; - ammoLeft=30; - }; - }; - class ItemCargo - { - items=2; - class Item0 - { - name="ACE_fieldDressing"; - count=2; - }; - class Item1 - { - name="ACE_morphine"; - count=1; - }; - }; - }; - class vest - { - typeName="SMM_Vest_BW_FT"; - isBackpack=0; - class MagazineCargo - { - items=6; - class Item0 - { - name="SmokeShell"; - count=1; - ammoLeft=1; - }; - class Item1 - { - name="SmokeShellGreen"; - count=1; - ammoLeft=1; - }; - class Item2 - { - name="Chemlight_green"; - count=2; - ammoLeft=1; - }; - class Item3 - { - name="HandGrenade"; - count=2; - ammoLeft=1; - }; - class Item4 - { - name="MiniGrenade"; - count=3; - ammoLeft=1; - }; - class Item5 - { - name="30Rnd_556x45_Stanag_Tracer_Red"; - count=2; - ammoLeft=30; - }; - }; - class ItemCargo - { - items=3; - class Item0 - { - name="ACE_EarPlugs"; - count=1; - }; - class Item1 - { - name="ACE_fieldDressing"; - count=10; - }; - class Item2 - { - name="ACE_morphine"; - count=6; - }; - }; - }; - map="ItemMap"; - compass="ItemCompass"; - watch="ItemWatch"; - radio="tf_anprc152"; - gps="ItemGPS"; - headgear="SMM_Helmet_BW_FT"; - }; - }; - id=185; - type="B_Soldier_F"; - atlOffset=1.9073486e-006; - class CustomAttributes - { - class Attribute0 - { - property="acex_headless_blacklist"; - expression="_this setVariable [""acex_headless_blacklist"",_value,true]"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isHandcuffed"; - expression="if (_value) then {[objNull, [_this], true] call ace_captives_fnc_moduleHandcuffed}"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute2 - { - property="ace_isSurrendered"; - expression="if (_value) then {[objNull, [_this], true] call ace_captives_fnc_moduleSurrender}"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=3; - }; - }; - }; - class Attributes - { - }; - id=184; - atlOffset=1.9073486e-006; - }; - class Item9 - { - dataType="Group"; - side="West"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={14189.933,19.552097,16279.504}; - angles[]={0.0066682254,3.8592575,6.2778587}; - }; - side="West"; - flags=6; - class Attributes - { - skill=0.60000002; - isPlayable=1; - class Inventory - { - class primaryWeapon - { - name="arifle_SPAR_01_blk_F"; - optics="optic_ERCO_blk_F"; - flashlight="acc_pointer_IR"; - class primaryMuzzleMag - { - name="30Rnd_556x45_Stanag_Tracer_Red"; - ammoLeft=30; - }; - }; - class handgun - { - name="rhsusf_weap_glock17g4"; - class primaryMuzzleMag - { - name="rhsusf_mag_17Rnd_9x19_FMJ"; - ammoLeft=17; - }; - }; - class binocular - { - name="Binocular"; - }; - class uniform - { - typeName="SMM_Uniform_BW_FT"; - isBackpack=0; - class MagazineCargo - { - items=1; - class Item0 - { - name="30Rnd_556x45_Stanag_Tracer_Green"; - count=4; - ammoLeft=30; - }; - }; - class ItemCargo - { - items=2; - class Item0 - { - name="ACE_fieldDressing"; - count=2; - }; - class Item1 - { - name="ACE_morphine"; - count=1; - }; - }; - }; - class vest - { - typeName="SMM_Vest_BW_FT"; - isBackpack=0; - class MagazineCargo - { - items=6; - class Item0 - { - name="SmokeShell"; - count=1; - ammoLeft=1; - }; - class Item1 - { - name="SmokeShellGreen"; - count=1; - ammoLeft=1; - }; - class Item2 - { - name="Chemlight_green"; - count=2; - ammoLeft=1; - }; - class Item3 - { - name="HandGrenade"; - count=2; - ammoLeft=1; - }; - class Item4 - { - name="MiniGrenade"; - count=3; - ammoLeft=1; - }; - class Item5 - { - name="30Rnd_556x45_Stanag_Tracer_Red"; - count=2; - ammoLeft=30; - }; - }; - class ItemCargo - { - items=3; - class Item0 - { - name="ACE_EarPlugs"; - count=1; - }; - class Item1 - { - name="ACE_fieldDressing"; - count=10; - }; - class Item2 - { - name="ACE_morphine"; - count=6; - }; - }; - }; - map="ItemMap"; - compass="ItemCompass"; - watch="ItemWatch"; - radio="tf_anprc152"; - gps="ItemGPS"; - headgear="SMM_Helmet_BW_FT"; - }; - }; - id=187; - type="B_Soldier_F"; - atlOffset=1.9073486e-006; - class CustomAttributes - { - class Attribute0 - { - property="acex_headless_blacklist"; - expression="_this setVariable [""acex_headless_blacklist"",_value,true]"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isHandcuffed"; - expression="if (_value) then {[objNull, [_this], true] call ace_captives_fnc_moduleHandcuffed}"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute2 - { - property="ace_isSurrendered"; - expression="if (_value) then {[objNull, [_this], true] call ace_captives_fnc_moduleSurrender}"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=3; - }; - }; - }; - class Attributes - { - }; - id=186; - atlOffset=1.9073486e-006; - }; - class Item10 - { - dataType="Group"; - side="West"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={14191.683,19.555429,16277.939}; - angles[]={0.0066682254,3.8592575,6.2791886}; - }; - side="West"; - flags=6; - class Attributes - { - skill=0.60000002; - isPlayable=1; - class Inventory - { - class primaryWeapon - { - name="arifle_SPAR_01_blk_F"; - optics="optic_ERCO_blk_F"; - flashlight="acc_pointer_IR"; - class primaryMuzzleMag - { - name="30Rnd_556x45_Stanag_Tracer_Red"; - ammoLeft=30; - }; - }; - class handgun - { - name="rhsusf_weap_glock17g4"; - class primaryMuzzleMag - { - name="rhsusf_mag_17Rnd_9x19_FMJ"; - ammoLeft=17; - }; - }; - class binocular - { - name="Binocular"; - }; - class uniform - { - typeName="SMM_Uniform_BW_FT"; - isBackpack=0; - class MagazineCargo - { - items=1; - class Item0 - { - name="30Rnd_556x45_Stanag_Tracer_Green"; - count=4; - ammoLeft=30; - }; - }; - class ItemCargo - { - items=2; - class Item0 - { - name="ACE_fieldDressing"; - count=2; - }; - class Item1 - { - name="ACE_morphine"; - count=1; - }; - }; - }; - class vest - { - typeName="SMM_Vest_BW_FT"; - isBackpack=0; - class MagazineCargo - { - items=6; - class Item0 - { - name="SmokeShell"; - count=1; - ammoLeft=1; - }; - class Item1 - { - name="SmokeShellGreen"; - count=1; - ammoLeft=1; - }; - class Item2 - { - name="Chemlight_green"; - count=2; - ammoLeft=1; - }; - class Item3 - { - name="HandGrenade"; - count=2; - ammoLeft=1; - }; - class Item4 - { - name="MiniGrenade"; - count=3; - ammoLeft=1; - }; - class Item5 - { - name="30Rnd_556x45_Stanag_Tracer_Red"; - count=2; - ammoLeft=30; - }; - }; - class ItemCargo - { - items=3; - class Item0 - { - name="ACE_EarPlugs"; - count=1; - }; - class Item1 - { - name="ACE_fieldDressing"; - count=10; - }; - class Item2 - { - name="ACE_morphine"; - count=6; - }; - }; - }; - map="ItemMap"; - compass="ItemCompass"; - watch="ItemWatch"; - radio="tf_anprc152"; - gps="ItemGPS"; - headgear="SMM_Helmet_BW_FT"; - }; - }; - id=189; - type="B_Soldier_F"; - class CustomAttributes - { - class Attribute0 - { - property="acex_headless_blacklist"; - expression="_this setVariable [""acex_headless_blacklist"",_value,true]"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isHandcuffed"; - expression="if (_value) then {[objNull, [_this], true] call ace_captives_fnc_moduleHandcuffed}"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute2 - { - property="ace_isSurrendered"; - expression="if (_value) then {[objNull, [_this], true] call ace_captives_fnc_moduleSurrender}"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=3; - }; - }; - }; - class Attributes - { - }; - id=188; - }; - class Item11 - { - dataType="Group"; - side="West"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={14193.875,19.560991,16275.791}; - angles[]={0.0066682254,3.8592575,6.2791886}; - }; - side="West"; - flags=6; - class Attributes - { - skill=0.60000002; - isPlayable=1; - class Inventory - { - class primaryWeapon - { - name="arifle_SPAR_01_blk_F"; - optics="optic_ERCO_blk_F"; - flashlight="acc_pointer_IR"; - class primaryMuzzleMag - { - name="30Rnd_556x45_Stanag_Tracer_Red"; - ammoLeft=30; - }; - }; - class handgun - { - name="rhsusf_weap_glock17g4"; - class primaryMuzzleMag - { - name="rhsusf_mag_17Rnd_9x19_FMJ"; - ammoLeft=17; - }; - }; - class binocular - { - name="Binocular"; - }; - class uniform - { - typeName="SMM_Uniform_BW_FT"; - isBackpack=0; - class MagazineCargo - { - items=1; - class Item0 - { - name="30Rnd_556x45_Stanag_Tracer_Green"; - count=4; - ammoLeft=30; - }; - }; - class ItemCargo - { - items=2; - class Item0 - { - name="ACE_fieldDressing"; - count=2; - }; - class Item1 - { - name="ACE_morphine"; - count=1; - }; - }; - }; - class vest - { - typeName="SMM_Vest_BW_FT"; - isBackpack=0; - class MagazineCargo - { - items=6; - class Item0 - { - name="SmokeShell"; - count=1; - ammoLeft=1; - }; - class Item1 - { - name="SmokeShellGreen"; - count=1; - ammoLeft=1; - }; - class Item2 - { - name="Chemlight_green"; - count=2; - ammoLeft=1; - }; - class Item3 - { - name="HandGrenade"; - count=2; - ammoLeft=1; - }; - class Item4 - { - name="MiniGrenade"; - count=3; - ammoLeft=1; - }; - class Item5 - { - name="30Rnd_556x45_Stanag_Tracer_Red"; - count=2; - ammoLeft=30; - }; - }; - class ItemCargo - { - items=3; - class Item0 - { - name="ACE_EarPlugs"; - count=1; - }; - class Item1 - { - name="ACE_fieldDressing"; - count=10; - }; - class Item2 - { - name="ACE_morphine"; - count=6; - }; - }; - }; - map="ItemMap"; - compass="ItemCompass"; - watch="ItemWatch"; - radio="tf_anprc152"; - gps="ItemGPS"; - headgear="SMM_Helmet_BW_FT"; - }; - }; - id=191; - type="B_Soldier_F"; - class CustomAttributes - { - class Attribute0 - { - property="acex_headless_blacklist"; - expression="_this setVariable [""acex_headless_blacklist"",_value,true]"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isHandcuffed"; - expression="if (_value) then {[objNull, [_this], true] call ace_captives_fnc_moduleHandcuffed}"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute2 - { - property="ace_isSurrendered"; - expression="if (_value) then {[objNull, [_this], true] call ace_captives_fnc_moduleSurrender}"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=3; - }; - }; - }; - class Attributes - { - }; - id=190; - }; - class Item12 - { - dataType="Group"; - side="West"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={14195.907,19.562494,16274.346}; - angles[]={0.0066682254,3.8592575,6.2791886}; - }; - side="West"; - flags=6; - class Attributes - { - skill=0.60000002; - isPlayable=1; - class Inventory - { - class primaryWeapon - { - name="arifle_SPAR_01_blk_F"; - optics="optic_ERCO_blk_F"; - flashlight="acc_pointer_IR"; - class primaryMuzzleMag - { - name="30Rnd_556x45_Stanag_Tracer_Red"; - ammoLeft=30; - }; - }; - class handgun - { - name="rhsusf_weap_glock17g4"; - class primaryMuzzleMag - { - name="rhsusf_mag_17Rnd_9x19_FMJ"; - ammoLeft=17; - }; - }; - class binocular - { - name="Binocular"; - }; - class uniform - { - typeName="SMM_Uniform_BW_FT"; - isBackpack=0; - class MagazineCargo - { - items=1; - class Item0 - { - name="30Rnd_556x45_Stanag_Tracer_Green"; - count=4; - ammoLeft=30; - }; - }; - class ItemCargo - { - items=2; - class Item0 - { - name="ACE_fieldDressing"; - count=2; - }; - class Item1 - { - name="ACE_morphine"; - count=1; - }; - }; - }; - class vest - { - typeName="SMM_Vest_BW_FT"; - isBackpack=0; - class MagazineCargo - { - items=6; - class Item0 - { - name="SmokeShell"; - count=1; - ammoLeft=1; - }; - class Item1 - { - name="SmokeShellGreen"; - count=1; - ammoLeft=1; - }; - class Item2 - { - name="Chemlight_green"; - count=2; - ammoLeft=1; - }; - class Item3 - { - name="HandGrenade"; - count=2; - ammoLeft=1; - }; - class Item4 - { - name="MiniGrenade"; - count=3; - ammoLeft=1; - }; - class Item5 - { - name="30Rnd_556x45_Stanag_Tracer_Red"; - count=2; - ammoLeft=30; - }; - }; - class ItemCargo - { - items=3; - class Item0 - { - name="ACE_EarPlugs"; - count=1; - }; - class Item1 - { - name="ACE_fieldDressing"; - count=10; - }; - class Item2 - { - name="ACE_morphine"; - count=6; - }; - }; - }; - map="ItemMap"; - compass="ItemCompass"; - watch="ItemWatch"; - radio="tf_anprc152"; - gps="ItemGPS"; - headgear="SMM_Helmet_BW_FT"; - }; - }; - id=193; - type="B_Soldier_F"; - class CustomAttributes - { - class Attribute0 - { - property="acex_headless_blacklist"; - expression="_this setVariable [""acex_headless_blacklist"",_value,true]"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isHandcuffed"; - expression="if (_value) then {[objNull, [_this], true] call ace_captives_fnc_moduleHandcuffed}"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute2 - { - property="ace_isSurrendered"; - expression="if (_value) then {[objNull, [_this], true] call ace_captives_fnc_moduleSurrender}"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=3; - }; - }; - }; - class Attributes - { - }; - id=192; - }; - class Item13 - { - dataType="Group"; - side="West"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={14197.431,19.568745,16272.504}; - angles[]={0.0066682254,3.8592575,6.2791886}; - }; - side="West"; - flags=6; - class Attributes - { - skill=0.60000002; - isPlayable=1; - class Inventory - { - class primaryWeapon - { - name="arifle_SPAR_01_blk_F"; - optics="optic_ERCO_blk_F"; - flashlight="acc_pointer_IR"; - class primaryMuzzleMag - { - name="30Rnd_556x45_Stanag_Tracer_Red"; - ammoLeft=30; - }; - }; - class handgun - { - name="rhsusf_weap_glock17g4"; - class primaryMuzzleMag - { - name="rhsusf_mag_17Rnd_9x19_FMJ"; - ammoLeft=17; - }; - }; - class binocular - { - name="Binocular"; - }; - class uniform - { - typeName="SMM_Uniform_BW_FT"; - isBackpack=0; - class MagazineCargo - { - items=1; - class Item0 - { - name="30Rnd_556x45_Stanag_Tracer_Green"; - count=4; - ammoLeft=30; - }; - }; - class ItemCargo - { - items=2; - class Item0 - { - name="ACE_fieldDressing"; - count=2; - }; - class Item1 - { - name="ACE_morphine"; - count=1; - }; - }; - }; - class vest - { - typeName="SMM_Vest_BW_FT"; - isBackpack=0; - class MagazineCargo - { - items=6; - class Item0 - { - name="SmokeShell"; - count=1; - ammoLeft=1; - }; - class Item1 - { - name="SmokeShellGreen"; - count=1; - ammoLeft=1; - }; - class Item2 - { - name="Chemlight_green"; - count=2; - ammoLeft=1; - }; - class Item3 - { - name="HandGrenade"; - count=2; - ammoLeft=1; - }; - class Item4 - { - name="MiniGrenade"; - count=3; - ammoLeft=1; - }; - class Item5 - { - name="30Rnd_556x45_Stanag_Tracer_Red"; - count=2; - ammoLeft=30; - }; - }; - class ItemCargo - { - items=3; - class Item0 - { - name="ACE_EarPlugs"; - count=1; - }; - class Item1 - { - name="ACE_fieldDressing"; - count=10; - }; - class Item2 - { - name="ACE_morphine"; - count=6; - }; - }; - }; - map="ItemMap"; - compass="ItemCompass"; - watch="ItemWatch"; - radio="tf_anprc152"; - gps="ItemGPS"; - headgear="SMM_Helmet_BW_FT"; - }; - }; - id=195; - type="B_Soldier_F"; - atlOffset=6.4849854e-005; - class CustomAttributes - { - class Attribute0 - { - property="acex_headless_blacklist"; - expression="_this setVariable [""acex_headless_blacklist"",_value,true]"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isHandcuffed"; - expression="if (_value) then {[objNull, [_this], true] call ace_captives_fnc_moduleHandcuffed}"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute2 - { - property="ace_isSurrendered"; - expression="if (_value) then {[objNull, [_this], true] call ace_captives_fnc_moduleSurrender}"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=3; - }; - }; - }; - class Attributes - { - }; - id=194; - atlOffset=6.4849854e-005; - }; - class Item14 - { - dataType="Group"; - side="West"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={14198.874,19.58882,16270.826}; - angles[]={0.0066682254,3.8592575,0.0066682254}; - }; - side="West"; - flags=6; - class Attributes - { - skill=0.60000002; - isPlayable=1; - class Inventory - { - class primaryWeapon - { - name="arifle_SPAR_01_blk_F"; - optics="optic_ERCO_blk_F"; - flashlight="acc_pointer_IR"; - class primaryMuzzleMag - { - name="30Rnd_556x45_Stanag_Tracer_Red"; - ammoLeft=30; - }; - }; - class handgun - { - name="rhsusf_weap_glock17g4"; - class primaryMuzzleMag - { - name="rhsusf_mag_17Rnd_9x19_FMJ"; - ammoLeft=17; - }; - }; - class binocular - { - name="Binocular"; - }; - class uniform - { - typeName="SMM_Uniform_BW_FT"; - isBackpack=0; - class MagazineCargo - { - items=1; - class Item0 - { - name="30Rnd_556x45_Stanag_Tracer_Green"; - count=4; - ammoLeft=30; - }; - }; - class ItemCargo - { - items=2; - class Item0 - { - name="ACE_fieldDressing"; - count=2; - }; - class Item1 - { - name="ACE_morphine"; - count=1; - }; - }; - }; - class vest - { - typeName="SMM_Vest_BW_FT"; - isBackpack=0; - class MagazineCargo - { - items=6; - class Item0 - { - name="SmokeShell"; - count=1; - ammoLeft=1; - }; - class Item1 - { - name="SmokeShellGreen"; - count=1; - ammoLeft=1; - }; - class Item2 - { - name="Chemlight_green"; - count=2; - ammoLeft=1; - }; - class Item3 - { - name="HandGrenade"; - count=2; - ammoLeft=1; - }; - class Item4 - { - name="MiniGrenade"; - count=3; - ammoLeft=1; - }; - class Item5 - { - name="30Rnd_556x45_Stanag_Tracer_Red"; - count=2; - ammoLeft=30; - }; - }; - class ItemCargo - { - items=3; - class Item0 - { - name="ACE_EarPlugs"; - count=1; - }; - class Item1 - { - name="ACE_fieldDressing"; - count=10; - }; - class Item2 - { - name="ACE_morphine"; - count=6; - }; - }; - }; - map="ItemMap"; - compass="ItemCompass"; - watch="ItemWatch"; - radio="tf_anprc152"; - gps="ItemGPS"; - headgear="SMM_Helmet_BW_FT"; - }; - }; - id=197; - type="B_Soldier_F"; - atlOffset=6.4849854e-005; - class CustomAttributes - { - class Attribute0 - { - property="acex_headless_blacklist"; - expression="_this setVariable [""acex_headless_blacklist"",_value,true]"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isHandcuffed"; - expression="if (_value) then {[objNull, [_this], true] call ace_captives_fnc_moduleHandcuffed}"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute2 - { - property="ace_isSurrendered"; - expression="if (_value) then {[objNull, [_this], true] call ace_captives_fnc_moduleSurrender}"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=3; - }; - }; - }; - class Attributes - { - }; - id=196; - atlOffset=6.4849854e-005; - }; - class Item15 - { - dataType="Group"; - side="West"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={14187.961,19.576681,16277.394}; - angles[]={0.0066682254,3.8592575,6.2778587}; - }; - side="West"; - flags=6; - class Attributes - { - skill=0.60000002; - isPlayable=1; - class Inventory - { - class primaryWeapon - { - name="arifle_SPAR_01_blk_F"; - optics="optic_ERCO_blk_F"; - flashlight="acc_pointer_IR"; - class primaryMuzzleMag - { - name="30Rnd_556x45_Stanag_Tracer_Red"; - ammoLeft=30; - }; - }; - class handgun - { - name="rhsusf_weap_glock17g4"; - class primaryMuzzleMag - { - name="rhsusf_mag_17Rnd_9x19_FMJ"; - ammoLeft=17; - }; - }; - class binocular - { - name="Binocular"; - }; - class uniform - { - typeName="SMM_Uniform_BW_FT"; - isBackpack=0; - class MagazineCargo - { - items=1; - class Item0 - { - name="30Rnd_556x45_Stanag_Tracer_Green"; - count=4; - ammoLeft=30; - }; - }; - class ItemCargo - { - items=2; - class Item0 - { - name="ACE_fieldDressing"; - count=2; - }; - class Item1 - { - name="ACE_morphine"; - count=1; - }; - }; - }; - class vest - { - typeName="SMM_Vest_BW_FT"; - isBackpack=0; - class MagazineCargo - { - items=6; - class Item0 - { - name="SmokeShell"; - count=1; - ammoLeft=1; - }; - class Item1 - { - name="SmokeShellGreen"; - count=1; - ammoLeft=1; - }; - class Item2 - { - name="Chemlight_green"; - count=2; - ammoLeft=1; - }; - class Item3 - { - name="HandGrenade"; - count=2; - ammoLeft=1; - }; - class Item4 - { - name="MiniGrenade"; - count=3; - ammoLeft=1; - }; - class Item5 - { - name="30Rnd_556x45_Stanag_Tracer_Red"; - count=2; - ammoLeft=30; - }; - }; - class ItemCargo - { - items=3; - class Item0 - { - name="ACE_EarPlugs"; - count=1; - }; - class Item1 - { - name="ACE_fieldDressing"; - count=10; - }; - class Item2 - { - name="ACE_morphine"; - count=6; - }; - }; - }; - map="ItemMap"; - compass="ItemCompass"; - watch="ItemWatch"; - radio="tf_anprc152"; - gps="ItemGPS"; - headgear="SMM_Helmet_BW_FT"; - }; - }; - id=199; - type="B_Soldier_F"; - class CustomAttributes - { - class Attribute0 - { - property="acex_headless_blacklist"; - expression="_this setVariable [""acex_headless_blacklist"",_value,true]"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isHandcuffed"; - expression="if (_value) then {[objNull, [_this], true] call ace_captives_fnc_moduleHandcuffed}"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute2 - { - property="ace_isSurrendered"; - expression="if (_value) then {[objNull, [_this], true] call ace_captives_fnc_moduleSurrender}"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=3; - }; - }; - }; - class Attributes - { - }; - id=198; - }; - class Item16 - { - dataType="Logic"; - class PositionInfo - { - position[]={13983.001,18.56929,16280.727}; - angles[]={6.2805333,0,0.0080009829}; - }; - id=275; - type="TFAR_ModuleTaskForceRadioEnforceUsage"; - }; - class Item17 - { - dataType="Group"; - side="West"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={14187.353,19.515057,16285.09}; - angles[]={0.012000273,3.8592575,6.2778587}; - }; - side="West"; - flags=6; - class Attributes - { - skill=0.60000002; - isPlayable=1; - class Inventory - { - class primaryWeapon - { - name="arifle_SPAR_01_blk_F"; - optics="optic_ERCO_blk_F"; - flashlight="acc_pointer_IR"; - class primaryMuzzleMag - { - name="30Rnd_556x45_Stanag_Tracer_Red"; - ammoLeft=30; - }; - }; - class handgun - { - name="rhsusf_weap_glock17g4"; - class primaryMuzzleMag - { - name="rhsusf_mag_17Rnd_9x19_FMJ"; - ammoLeft=17; - }; - }; - class binocular - { - name="Binocular"; - }; - class uniform - { - typeName="SMM_Uniform_BW_FT"; - isBackpack=0; - class MagazineCargo - { - items=1; - class Item0 - { - name="30Rnd_556x45_Stanag_Tracer_Green"; - count=4; - ammoLeft=30; - }; - }; - class ItemCargo - { - items=2; - class Item0 - { - name="ACE_fieldDressing"; - count=2; - }; - class Item1 - { - name="ACE_morphine"; - count=1; - }; - }; - }; - class vest - { - typeName="SMM_Vest_BW_FT"; - isBackpack=0; - class MagazineCargo - { - items=6; - class Item0 - { - name="SmokeShell"; - count=1; - ammoLeft=1; - }; - class Item1 - { - name="SmokeShellGreen"; - count=1; - ammoLeft=1; - }; - class Item2 - { - name="Chemlight_green"; - count=2; - ammoLeft=1; - }; - class Item3 - { - name="HandGrenade"; - count=2; - ammoLeft=1; - }; - class Item4 - { - name="MiniGrenade"; - count=3; - ammoLeft=1; - }; - class Item5 - { - name="30Rnd_556x45_Stanag_Tracer_Red"; - count=2; - ammoLeft=30; - }; - }; - class ItemCargo - { - items=3; - class Item0 - { - name="ACE_EarPlugs"; - count=1; - }; - class Item1 - { - name="ACE_fieldDressing"; - count=10; - }; - class Item2 - { - name="ACE_morphine"; - count=6; - }; - }; - }; - map="ItemMap"; - compass="ItemCompass"; - watch="ItemWatch"; - radio="tf_anprc152"; - gps="ItemGPS"; - headgear="SMM_Helmet_BW_FT"; - }; - }; - id=473; - type="B_Soldier_F"; - class CustomAttributes - { - class Attribute0 - { - property="acex_headless_blacklist"; - expression="_this setVariable [""acex_headless_blacklist"",_value,true]"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isHandcuffed"; - expression="if (_value) then {[objNull, [_this], true] call ace_captives_fnc_moduleHandcuffed}"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute2 - { - property="ace_isSurrendered"; - expression="if (_value) then {[objNull, [_this], true] call ace_captives_fnc_moduleSurrender}"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=3; - }; - }; - }; - class Attributes - { - }; - id=472; - }; - class Item18 - { - dataType="Group"; - side="West"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={14185.193,19.504179,16286.956}; - angles[]={0.012000273,3.8592575,6.2778587}; - }; - side="West"; - flags=6; - class Attributes - { - skill=0.60000002; - isPlayable=1; - class Inventory - { - class primaryWeapon - { - name="arifle_SPAR_01_blk_F"; - optics="optic_ERCO_blk_F"; - flashlight="acc_pointer_IR"; - class primaryMuzzleMag - { - name="30Rnd_556x45_Stanag_Tracer_Red"; - ammoLeft=30; - }; - }; - class handgun - { - name="rhsusf_weap_glock17g4"; - class primaryMuzzleMag - { - name="rhsusf_mag_17Rnd_9x19_FMJ"; - ammoLeft=17; - }; - }; - class binocular - { - name="Binocular"; - }; - class uniform - { - typeName="SMM_Uniform_BW_FT"; - isBackpack=0; - class MagazineCargo - { - items=1; - class Item0 - { - name="30Rnd_556x45_Stanag_Tracer_Green"; - count=4; - ammoLeft=30; - }; - }; - class ItemCargo - { - items=2; - class Item0 - { - name="ACE_fieldDressing"; - count=2; - }; - class Item1 - { - name="ACE_morphine"; - count=1; - }; - }; - }; - class vest - { - typeName="SMM_Vest_BW_FT"; - isBackpack=0; - class MagazineCargo - { - items=6; - class Item0 - { - name="SmokeShell"; - count=1; - ammoLeft=1; - }; - class Item1 - { - name="SmokeShellGreen"; - count=1; - ammoLeft=1; - }; - class Item2 - { - name="Chemlight_green"; - count=2; - ammoLeft=1; - }; - class Item3 - { - name="HandGrenade"; - count=2; - ammoLeft=1; - }; - class Item4 - { - name="MiniGrenade"; - count=3; - ammoLeft=1; - }; - class Item5 - { - name="30Rnd_556x45_Stanag_Tracer_Red"; - count=2; - ammoLeft=30; - }; - }; - class ItemCargo - { - items=3; - class Item0 - { - name="ACE_EarPlugs"; - count=1; - }; - class Item1 - { - name="ACE_fieldDressing"; - count=10; - }; - class Item2 - { - name="ACE_morphine"; - count=6; - }; - }; - }; - map="ItemMap"; - compass="ItemCompass"; - watch="ItemWatch"; - radio="tf_anprc152"; - gps="ItemGPS"; - headgear="SMM_Helmet_BW_FT"; - }; - }; - id=475; - type="B_Soldier_F"; - class CustomAttributes - { - class Attribute0 - { - property="acex_headless_blacklist"; - expression="_this setVariable [""acex_headless_blacklist"",_value,true]"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isHandcuffed"; - expression="if (_value) then {[objNull, [_this], true] call ace_captives_fnc_moduleHandcuffed}"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute2 - { - property="ace_isSurrendered"; - expression="if (_value) then {[objNull, [_this], true] call ace_captives_fnc_moduleSurrender}"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=3; - }; - }; - }; - class Attributes - { - }; - id=474; - }; - class Item19 - { - dataType="Group"; - side="West"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={14183.265,19.574411,16281.052}; - angles[]={0.0026520467,3.8592575,6.2818484}; - }; - side="West"; - flags=6; - class Attributes - { - skill=0.60000002; - isPlayable=1; - class Inventory - { - class primaryWeapon - { - name="arifle_SPAR_01_blk_F"; - optics="optic_ERCO_blk_F"; - flashlight="acc_pointer_IR"; - class primaryMuzzleMag - { - name="30Rnd_556x45_Stanag_Tracer_Red"; - ammoLeft=30; - }; - }; - class handgun - { - name="rhsusf_weap_glock17g4"; - class primaryMuzzleMag - { - name="rhsusf_mag_17Rnd_9x19_FMJ"; - ammoLeft=17; - }; - }; - class binocular - { - name="Binocular"; - }; - class uniform - { - typeName="SMM_Uniform_BW_FT"; - isBackpack=0; - class MagazineCargo - { - items=1; - class Item0 - { - name="30Rnd_556x45_Stanag_Tracer_Green"; - count=4; - ammoLeft=30; - }; - }; - class ItemCargo - { - items=2; - class Item0 - { - name="ACE_fieldDressing"; - count=2; - }; - class Item1 - { - name="ACE_morphine"; - count=1; - }; - }; - }; - class vest - { - typeName="SMM_Vest_BW_FT"; - isBackpack=0; - class MagazineCargo - { - items=6; - class Item0 - { - name="SmokeShell"; - count=1; - ammoLeft=1; - }; - class Item1 - { - name="SmokeShellGreen"; - count=1; - ammoLeft=1; - }; - class Item2 - { - name="Chemlight_green"; - count=2; - ammoLeft=1; - }; - class Item3 - { - name="HandGrenade"; - count=2; - ammoLeft=1; - }; - class Item4 - { - name="MiniGrenade"; - count=3; - ammoLeft=1; - }; - class Item5 - { - name="30Rnd_556x45_Stanag_Tracer_Red"; - count=2; - ammoLeft=30; - }; - }; - class ItemCargo - { - items=3; - class Item0 - { - name="ACE_EarPlugs"; - count=1; - }; - class Item1 - { - name="ACE_fieldDressing"; - count=10; - }; - class Item2 - { - name="ACE_morphine"; - count=6; - }; - }; - }; - map="ItemMap"; - compass="ItemCompass"; - watch="ItemWatch"; - radio="tf_anprc152"; - gps="ItemGPS"; - headgear="SMM_Helmet_BW_FT"; - }; - }; - id=477; - type="B_Soldier_F"; - class CustomAttributes - { - class Attribute0 - { - property="acex_headless_blacklist"; - expression="_this setVariable [""acex_headless_blacklist"",_value,true]"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isHandcuffed"; - expression="if (_value) then {[objNull, [_this], true] call ace_captives_fnc_moduleHandcuffed}"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute2 - { - property="ace_isSurrendered"; - expression="if (_value) then {[objNull, [_this], true] call ace_captives_fnc_moduleSurrender}"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=3; - }; - }; - }; - class Attributes - { - }; - id=476; - }; - class Item20 - { - dataType="Group"; - side="West"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={14181.442,19.570229,16282.73}; - angles[]={0.0066592805,3.8592575,0}; - }; - side="West"; - flags=6; - class Attributes - { - skill=0.60000002; - isPlayable=1; - class Inventory - { - class primaryWeapon - { - name="arifle_SPAR_01_blk_F"; - optics="optic_ERCO_blk_F"; - flashlight="acc_pointer_IR"; - class primaryMuzzleMag - { - name="30Rnd_556x45_Stanag_Tracer_Red"; - ammoLeft=30; - }; - }; - class handgun - { - name="rhsusf_weap_glock17g4"; - class primaryMuzzleMag - { - name="rhsusf_mag_17Rnd_9x19_FMJ"; - ammoLeft=17; - }; - }; - class binocular - { - name="Binocular"; - }; - class uniform - { - typeName="SMM_Uniform_BW_FT"; - isBackpack=0; - class MagazineCargo - { - items=1; - class Item0 - { - name="30Rnd_556x45_Stanag_Tracer_Green"; - count=4; - ammoLeft=30; - }; - }; - class ItemCargo - { - items=2; - class Item0 - { - name="ACE_fieldDressing"; - count=2; - }; - class Item1 - { - name="ACE_morphine"; - count=1; - }; - }; - }; - class vest - { - typeName="SMM_Vest_BW_FT"; - isBackpack=0; - class MagazineCargo - { - items=6; - class Item0 - { - name="SmokeShell"; - count=1; - ammoLeft=1; - }; - class Item1 - { - name="SmokeShellGreen"; - count=1; - ammoLeft=1; - }; - class Item2 - { - name="Chemlight_green"; - count=2; - ammoLeft=1; - }; - class Item3 - { - name="HandGrenade"; - count=2; - ammoLeft=1; - }; - class Item4 - { - name="MiniGrenade"; - count=3; - ammoLeft=1; - }; - class Item5 - { - name="30Rnd_556x45_Stanag_Tracer_Red"; - count=2; - ammoLeft=30; - }; - }; - class ItemCargo - { - items=3; - class Item0 - { - name="ACE_EarPlugs"; - count=1; - }; - class Item1 - { - name="ACE_fieldDressing"; - count=10; - }; - class Item2 - { - name="ACE_morphine"; - count=6; - }; - }; - }; - map="ItemMap"; - compass="ItemCompass"; - watch="ItemWatch"; - radio="tf_anprc152"; - gps="ItemGPS"; - headgear="SMM_Helmet_BW_FT"; - }; - }; - id=479; - type="B_Soldier_F"; - class CustomAttributes - { - class Attribute0 - { - property="acex_headless_blacklist"; - expression="_this setVariable [""acex_headless_blacklist"",_value,true]"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isHandcuffed"; - expression="if (_value) then {[objNull, [_this], true] call ace_captives_fnc_moduleHandcuffed}"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute2 - { - property="ace_isSurrendered"; - expression="if (_value) then {[objNull, [_this], true] call ace_captives_fnc_moduleSurrender}"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=3; - }; - }; - }; - class Attributes - { - }; - id=478; - }; - class Item21 - { - dataType="Group"; - side="West"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={14183.675,19.537922,16284.819}; - angles[]={0.012000273,3.8592575,6.2778587}; - }; - side="West"; - flags=6; - class Attributes - { - skill=0.60000002; - isPlayable=1; - class Inventory - { - class primaryWeapon - { - name="arifle_SPAR_01_blk_F"; - optics="optic_ERCO_blk_F"; - flashlight="acc_pointer_IR"; - class primaryMuzzleMag - { - name="30Rnd_556x45_Stanag_Tracer_Red"; - ammoLeft=30; - }; - }; - class handgun - { - name="rhsusf_weap_glock17g4"; - class primaryMuzzleMag - { - name="rhsusf_mag_17Rnd_9x19_FMJ"; - ammoLeft=17; - }; - }; - class binocular - { - name="Binocular"; - }; - class uniform - { - typeName="SMM_Uniform_BW_FT"; - isBackpack=0; - class MagazineCargo - { - items=1; - class Item0 - { - name="30Rnd_556x45_Stanag_Tracer_Green"; - count=4; - ammoLeft=30; - }; - }; - class ItemCargo - { - items=2; - class Item0 - { - name="ACE_fieldDressing"; - count=2; - }; - class Item1 - { - name="ACE_morphine"; - count=1; - }; - }; - }; - class vest - { - typeName="SMM_Vest_BW_FT"; - isBackpack=0; - class MagazineCargo - { - items=6; - class Item0 - { - name="SmokeShell"; - count=1; - ammoLeft=1; - }; - class Item1 - { - name="SmokeShellGreen"; - count=1; - ammoLeft=1; - }; - class Item2 - { - name="Chemlight_green"; - count=2; - ammoLeft=1; - }; - class Item3 - { - name="HandGrenade"; - count=2; - ammoLeft=1; - }; - class Item4 - { - name="MiniGrenade"; - count=3; - ammoLeft=1; - }; - class Item5 - { - name="30Rnd_556x45_Stanag_Tracer_Red"; - count=2; - ammoLeft=30; - }; - }; - class ItemCargo - { - items=3; - class Item0 - { - name="ACE_EarPlugs"; - count=1; - }; - class Item1 - { - name="ACE_fieldDressing"; - count=10; - }; - class Item2 - { - name="ACE_morphine"; - count=6; - }; - }; - }; - map="ItemMap"; - compass="ItemCompass"; - watch="ItemWatch"; - radio="tf_anprc152"; - gps="ItemGPS"; - headgear="SMM_Helmet_BW_FT"; - }; - }; - id=481; - type="B_Soldier_F"; - class CustomAttributes - { - class Attribute0 - { - property="acex_headless_blacklist"; - expression="_this setVariable [""acex_headless_blacklist"",_value,true]"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isHandcuffed"; - expression="if (_value) then {[objNull, [_this], true] call ace_captives_fnc_moduleHandcuffed}"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute2 - { - property="ace_isSurrendered"; - expression="if (_value) then {[objNull, [_this], true] call ace_captives_fnc_moduleSurrender}"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=3; - }; - }; - }; - class Attributes - { - }; - id=480; - class CustomAttributes - { - class Attribute0 - { - property="acex_headless_blacklist"; - expression="_this setVariable [""acex_headless_blacklist"",_value,true]"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item22 - { - dataType="Group"; - side="West"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={14185.426,19.547346,16283.256}; - angles[]={0.012000273,3.8592575,6.2778587}; - }; - side="West"; - flags=6; - class Attributes - { - skill=0.60000002; - isPlayable=1; - class Inventory - { - class primaryWeapon - { - name="arifle_SPAR_01_blk_F"; - optics="optic_ERCO_blk_F"; - flashlight="acc_pointer_IR"; - class primaryMuzzleMag - { - name="30Rnd_556x45_Stanag_Tracer_Red"; - ammoLeft=30; - }; - }; - class handgun - { - name="rhsusf_weap_glock17g4"; - class primaryMuzzleMag - { - name="rhsusf_mag_17Rnd_9x19_FMJ"; - ammoLeft=17; - }; - }; - class binocular - { - name="Binocular"; - }; - class uniform - { - typeName="SMM_Uniform_BW_FT"; - isBackpack=0; - class MagazineCargo - { - items=1; - class Item0 - { - name="30Rnd_556x45_Stanag_Tracer_Green"; - count=4; - ammoLeft=30; - }; - }; - class ItemCargo - { - items=2; - class Item0 - { - name="ACE_fieldDressing"; - count=2; - }; - class Item1 - { - name="ACE_morphine"; - count=1; - }; - }; - }; - class vest - { - typeName="SMM_Vest_BW_FT"; - isBackpack=0; - class MagazineCargo - { - items=6; - class Item0 - { - name="SmokeShell"; - count=1; - ammoLeft=1; - }; - class Item1 - { - name="SmokeShellGreen"; - count=1; - ammoLeft=1; - }; - class Item2 - { - name="Chemlight_green"; - count=2; - ammoLeft=1; - }; - class Item3 - { - name="HandGrenade"; - count=2; - ammoLeft=1; - }; - class Item4 - { - name="MiniGrenade"; - count=3; - ammoLeft=1; - }; - class Item5 - { - name="30Rnd_556x45_Stanag_Tracer_Red"; - count=2; - ammoLeft=30; - }; - }; - class ItemCargo - { - items=3; - class Item0 - { - name="ACE_EarPlugs"; - count=1; - }; - class Item1 - { - name="ACE_fieldDressing"; - count=10; - }; - class Item2 - { - name="ACE_morphine"; - count=6; - }; - }; - }; - map="ItemMap"; - compass="ItemCompass"; - watch="ItemWatch"; - radio="tf_anprc152"; - gps="ItemGPS"; - headgear="SMM_Helmet_BW_FT"; - }; - }; - id=483; - type="B_Soldier_F"; - class CustomAttributes - { - class Attribute0 - { - property="acex_headless_blacklist"; - expression="_this setVariable [""acex_headless_blacklist"",_value,true]"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isHandcuffed"; - expression="if (_value) then {[objNull, [_this], true] call ace_captives_fnc_moduleHandcuffed}"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute2 - { - property="ace_isSurrendered"; - expression="if (_value) then {[objNull, [_this], true] call ace_captives_fnc_moduleSurrender}"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=3; - }; - }; - }; - class Attributes - { - }; - id=482; - }; - class Item23 - { - dataType="Group"; - side="West"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={14185.593,19.574741,16279.579}; - angles[]={0.0066682254,3.8592575,6.2778587}; - }; - side="West"; - flags=6; - class Attributes - { - skill=0.60000002; - isPlayable=1; - class Inventory - { - class primaryWeapon - { - name="arifle_SPAR_01_blk_F"; - optics="optic_ERCO_blk_F"; - flashlight="acc_pointer_IR"; - class primaryMuzzleMag - { - name="30Rnd_556x45_Stanag_Tracer_Red"; - ammoLeft=30; - }; - }; - class handgun - { - name="rhsusf_weap_glock17g4"; - class primaryMuzzleMag - { - name="rhsusf_mag_17Rnd_9x19_FMJ"; - ammoLeft=17; - }; - }; - class binocular - { - name="Binocular"; - }; - class uniform - { - typeName="SMM_Uniform_BW_FT"; - isBackpack=0; - class MagazineCargo - { - items=1; - class Item0 - { - name="30Rnd_556x45_Stanag_Tracer_Green"; - count=4; - ammoLeft=30; - }; - }; - class ItemCargo - { - items=2; - class Item0 - { - name="ACE_fieldDressing"; - count=2; - }; - class Item1 - { - name="ACE_morphine"; - count=1; - }; - }; - }; - class vest - { - typeName="SMM_Vest_BW_FT"; - isBackpack=0; - class MagazineCargo - { - items=6; - class Item0 - { - name="SmokeShell"; - count=1; - ammoLeft=1; - }; - class Item1 - { - name="SmokeShellGreen"; - count=1; - ammoLeft=1; - }; - class Item2 - { - name="Chemlight_green"; - count=2; - ammoLeft=1; - }; - class Item3 - { - name="HandGrenade"; - count=2; - ammoLeft=1; - }; - class Item4 - { - name="MiniGrenade"; - count=3; - ammoLeft=1; - }; - class Item5 - { - name="30Rnd_556x45_Stanag_Tracer_Red"; - count=2; - ammoLeft=30; - }; - }; - class ItemCargo - { - items=3; - class Item0 - { - name="ACE_EarPlugs"; - count=1; - }; - class Item1 - { - name="ACE_fieldDressing"; - count=10; - }; - class Item2 - { - name="ACE_morphine"; - count=6; - }; - }; - }; - map="ItemMap"; - compass="ItemCompass"; - watch="ItemWatch"; - radio="tf_anprc152"; - gps="ItemGPS"; - headgear="SMM_Helmet_BW_FT"; - }; - }; - id=485; - type="B_Soldier_F"; - atlOffset=1.9073486e-006; - class CustomAttributes - { - class Attribute0 - { - property="acex_headless_blacklist"; - expression="_this setVariable [""acex_headless_blacklist"",_value,true]"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isHandcuffed"; - expression="if (_value) then {[objNull, [_this], true] call ace_captives_fnc_moduleHandcuffed}"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute2 - { - property="ace_isSurrendered"; - expression="if (_value) then {[objNull, [_this], true] call ace_captives_fnc_moduleSurrender}"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=3; - }; - }; - }; - class Attributes - { - }; - id=484; - atlOffset=1.9073486e-006; - }; - class Item24 - { - dataType="Group"; - side="West"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={14187.075,19.429523,16289.337}; - angles[]={0.021328852,3.8592575,6.2685208}; - }; - side="West"; - flags=6; - class Attributes - { - skill=0.60000002; - isPlayable=1; - class Inventory - { - class primaryWeapon - { - name="arifle_SPAR_01_blk_F"; - optics="optic_ERCO_blk_F"; - flashlight="acc_pointer_IR"; - class primaryMuzzleMag - { - name="30Rnd_556x45_Stanag_Tracer_Red"; - ammoLeft=30; - }; - }; - class handgun - { - name="rhsusf_weap_glock17g4"; - class primaryMuzzleMag - { - name="rhsusf_mag_17Rnd_9x19_FMJ"; - ammoLeft=17; - }; - }; - class binocular - { - name="Binocular"; - }; - class uniform - { - typeName="SMM_Uniform_BW_FT"; - isBackpack=0; - class MagazineCargo - { - items=1; - class Item0 - { - name="30Rnd_556x45_Stanag_Tracer_Green"; - count=4; - ammoLeft=30; - }; - }; - class ItemCargo - { - items=2; - class Item0 - { - name="ACE_fieldDressing"; - count=2; - }; - class Item1 - { - name="ACE_morphine"; - count=1; - }; - }; - }; - class vest - { - typeName="SMM_Vest_BW_FT"; - isBackpack=0; - class MagazineCargo - { - items=6; - class Item0 - { - name="SmokeShell"; - count=1; - ammoLeft=1; - }; - class Item1 - { - name="SmokeShellGreen"; - count=1; - ammoLeft=1; - }; - class Item2 - { - name="Chemlight_green"; - count=2; - ammoLeft=1; - }; - class Item3 - { - name="HandGrenade"; - count=2; - ammoLeft=1; - }; - class Item4 - { - name="MiniGrenade"; - count=3; - ammoLeft=1; - }; - class Item5 - { - name="30Rnd_556x45_Stanag_Tracer_Red"; - count=2; - ammoLeft=30; - }; - }; - class ItemCargo - { - items=3; - class Item0 - { - name="ACE_EarPlugs"; - count=1; - }; - class Item1 - { - name="ACE_fieldDressing"; - count=10; - }; - class Item2 - { - name="ACE_morphine"; - count=6; - }; - }; - }; - map="ItemMap"; - compass="ItemCompass"; - watch="ItemWatch"; - radio="tf_anprc152"; - gps="ItemGPS"; - headgear="SMM_Helmet_BW_FT"; - }; - }; - id=487; - type="B_Soldier_F"; - atlOffset=1.9073486e-006; - class CustomAttributes - { - class Attribute0 - { - property="acex_headless_blacklist"; - expression="_this setVariable [""acex_headless_blacklist"",_value,true]"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isHandcuffed"; - expression="if (_value) then {[objNull, [_this], true] call ace_captives_fnc_moduleHandcuffed}"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute2 - { - property="ace_isSurrendered"; - expression="if (_value) then {[objNull, [_this], true] call ace_captives_fnc_moduleSurrender}"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=3; - }; - }; - }; - class Attributes - { - }; - id=486; - atlOffset=1.9073486e-006; - }; - class Item25 - { - dataType="Group"; - side="West"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={14189.281,19.442825,16287.195}; - angles[]={0.021328852,3.8592575,6.2685208}; - }; - side="West"; - flags=6; - class Attributes - { - skill=0.60000002; - isPlayable=1; - class Inventory - { - class primaryWeapon - { - name="arifle_SPAR_01_blk_F"; - optics="optic_ERCO_blk_F"; - flashlight="acc_pointer_IR"; - class primaryMuzzleMag - { - name="30Rnd_556x45_Stanag_Tracer_Red"; - ammoLeft=30; - }; - }; - class handgun - { - name="rhsusf_weap_glock17g4"; - class primaryMuzzleMag - { - name="rhsusf_mag_17Rnd_9x19_FMJ"; - ammoLeft=17; - }; - }; - class binocular - { - name="Binocular"; - }; - class uniform - { - typeName="SMM_Uniform_BW_FT"; - isBackpack=0; - class MagazineCargo - { - items=1; - class Item0 - { - name="30Rnd_556x45_Stanag_Tracer_Green"; - count=4; - ammoLeft=30; - }; - }; - class ItemCargo - { - items=2; - class Item0 - { - name="ACE_fieldDressing"; - count=2; - }; - class Item1 - { - name="ACE_morphine"; - count=1; - }; - }; - }; - class vest - { - typeName="SMM_Vest_BW_FT"; - isBackpack=0; - class MagazineCargo - { - items=6; - class Item0 - { - name="SmokeShell"; - count=1; - ammoLeft=1; - }; - class Item1 - { - name="SmokeShellGreen"; - count=1; - ammoLeft=1; - }; - class Item2 - { - name="Chemlight_green"; - count=2; - ammoLeft=1; - }; - class Item3 - { - name="HandGrenade"; - count=2; - ammoLeft=1; - }; - class Item4 - { - name="MiniGrenade"; - count=3; - ammoLeft=1; - }; - class Item5 - { - name="30Rnd_556x45_Stanag_Tracer_Red"; - count=2; - ammoLeft=30; - }; - }; - class ItemCargo - { - items=3; - class Item0 - { - name="ACE_EarPlugs"; - count=1; - }; - class Item1 - { - name="ACE_fieldDressing"; - count=10; - }; - class Item2 - { - name="ACE_morphine"; - count=6; - }; - }; - }; - map="ItemMap"; - compass="ItemCompass"; - watch="ItemWatch"; - radio="tf_anprc152"; - gps="ItemGPS"; - headgear="SMM_Helmet_BW_FT"; - }; - }; - id=489; - type="B_Soldier_F"; - class CustomAttributes - { - class Attribute0 - { - property="acex_headless_blacklist"; - expression="_this setVariable [""acex_headless_blacklist"",_value,true]"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isHandcuffed"; - expression="if (_value) then {[objNull, [_this], true] call ace_captives_fnc_moduleHandcuffed}"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute2 - { - property="ace_isSurrendered"; - expression="if (_value) then {[objNull, [_this], true] call ace_captives_fnc_moduleSurrender}"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=3; - }; - }; - }; - class Attributes - { - }; - id=488; - }; - class Item26 - { - dataType="Group"; - side="West"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={14191.418,19.46122,16285.309}; - angles[]={0.021328852,3.8592575,6.2751846}; - }; - side="West"; - flags=6; - class Attributes - { - skill=0.60000002; - isPlayable=1; - class Inventory - { - class primaryWeapon - { - name="arifle_SPAR_01_blk_F"; - optics="optic_ERCO_blk_F"; - flashlight="acc_pointer_IR"; - class primaryMuzzleMag - { - name="30Rnd_556x45_Stanag_Tracer_Red"; - ammoLeft=30; - }; - }; - class handgun - { - name="rhsusf_weap_glock17g4"; - class primaryMuzzleMag - { - name="rhsusf_mag_17Rnd_9x19_FMJ"; - ammoLeft=17; - }; - }; - class binocular - { - name="Binocular"; - }; - class uniform - { - typeName="SMM_Uniform_BW_FT"; - isBackpack=0; - class MagazineCargo - { - items=1; - class Item0 - { - name="30Rnd_556x45_Stanag_Tracer_Green"; - count=4; - ammoLeft=30; - }; - }; - class ItemCargo - { - items=2; - class Item0 - { - name="ACE_fieldDressing"; - count=2; - }; - class Item1 - { - name="ACE_morphine"; - count=1; - }; - }; - }; - class vest - { - typeName="SMM_Vest_BW_FT"; - isBackpack=0; - class MagazineCargo - { - items=6; - class Item0 - { - name="SmokeShell"; - count=1; - ammoLeft=1; - }; - class Item1 - { - name="SmokeShellGreen"; - count=1; - ammoLeft=1; - }; - class Item2 - { - name="Chemlight_green"; - count=2; - ammoLeft=1; - }; - class Item3 - { - name="HandGrenade"; - count=2; - ammoLeft=1; - }; - class Item4 - { - name="MiniGrenade"; - count=3; - ammoLeft=1; - }; - class Item5 - { - name="30Rnd_556x45_Stanag_Tracer_Red"; - count=2; - ammoLeft=30; - }; - }; - class ItemCargo - { - items=3; - class Item0 - { - name="ACE_EarPlugs"; - count=1; - }; - class Item1 - { - name="ACE_fieldDressing"; - count=10; - }; - class Item2 - { - name="ACE_morphine"; - count=6; - }; - }; - }; - map="ItemMap"; - compass="ItemCompass"; - watch="ItemWatch"; - radio="tf_anprc152"; - gps="ItemGPS"; - headgear="SMM_Helmet_BW_FT"; - }; - }; - id=491; - type="B_Soldier_F"; - class CustomAttributes - { - class Attribute0 - { - property="acex_headless_blacklist"; - expression="_this setVariable [""acex_headless_blacklist"",_value,true]"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isHandcuffed"; - expression="if (_value) then {[objNull, [_this], true] call ace_captives_fnc_moduleHandcuffed}"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute2 - { - property="ace_isSurrendered"; - expression="if (_value) then {[objNull, [_this], true] call ace_captives_fnc_moduleSurrender}"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=3; - }; - }; - }; - class Attributes - { - }; - id=490; - }; - class Item27 - { - dataType="Group"; - side="West"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={14193.491,19.483347,16283.494}; - angles[]={0.021328852,3.8592575,6.2751846}; - }; - side="West"; - flags=6; - class Attributes - { - skill=0.60000002; - isPlayable=1; - class Inventory - { - class primaryWeapon - { - name="arifle_SPAR_01_blk_F"; - optics="optic_ERCO_blk_F"; - flashlight="acc_pointer_IR"; - class primaryMuzzleMag - { - name="30Rnd_556x45_Stanag_Tracer_Red"; - ammoLeft=30; - }; - }; - class handgun - { - name="rhsusf_weap_glock17g4"; - class primaryMuzzleMag - { - name="rhsusf_mag_17Rnd_9x19_FMJ"; - ammoLeft=17; - }; - }; - class binocular - { - name="Binocular"; - }; - class uniform - { - typeName="SMM_Uniform_BW_FT"; - isBackpack=0; - class MagazineCargo - { - items=1; - class Item0 - { - name="30Rnd_556x45_Stanag_Tracer_Green"; - count=4; - ammoLeft=30; - }; - }; - class ItemCargo - { - items=2; - class Item0 - { - name="ACE_fieldDressing"; - count=2; - }; - class Item1 - { - name="ACE_morphine"; - count=1; - }; - }; - }; - class vest - { - typeName="SMM_Vest_BW_FT"; - isBackpack=0; - class MagazineCargo - { - items=6; - class Item0 - { - name="SmokeShell"; - count=1; - ammoLeft=1; - }; - class Item1 - { - name="SmokeShellGreen"; - count=1; - ammoLeft=1; - }; - class Item2 - { - name="Chemlight_green"; - count=2; - ammoLeft=1; - }; - class Item3 - { - name="HandGrenade"; - count=2; - ammoLeft=1; - }; - class Item4 - { - name="MiniGrenade"; - count=3; - ammoLeft=1; - }; - class Item5 - { - name="30Rnd_556x45_Stanag_Tracer_Red"; - count=2; - ammoLeft=30; - }; - }; - class ItemCargo - { - items=3; - class Item0 - { - name="ACE_EarPlugs"; - count=1; - }; - class Item1 - { - name="ACE_fieldDressing"; - count=10; - }; - class Item2 - { - name="ACE_morphine"; - count=6; - }; - }; - }; - map="ItemMap"; - compass="ItemCompass"; - watch="ItemWatch"; - radio="tf_anprc152"; - gps="ItemGPS"; - headgear="SMM_Helmet_BW_FT"; - }; - }; - id=493; - type="B_Soldier_F"; - class CustomAttributes - { - class Attribute0 - { - property="acex_headless_blacklist"; - expression="_this setVariable [""acex_headless_blacklist"",_value,true]"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isHandcuffed"; - expression="if (_value) then {[objNull, [_this], true] call ace_captives_fnc_moduleHandcuffed}"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute2 - { - property="ace_isSurrendered"; - expression="if (_value) then {[objNull, [_this], true] call ace_captives_fnc_moduleSurrender}"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=3; - }; - }; - }; - class Attributes - { - }; - id=492; - }; - class Item28 - { - dataType="Group"; - side="West"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={14195.336,19.498823,16281.604}; - angles[]={0.010664274,3.8592575,6.2751846}; - }; - side="West"; - flags=6; - class Attributes - { - skill=0.60000002; - isPlayable=1; - class Inventory - { - class primaryWeapon - { - name="arifle_SPAR_01_blk_F"; - optics="optic_ERCO_blk_F"; - flashlight="acc_pointer_IR"; - class primaryMuzzleMag - { - name="30Rnd_556x45_Stanag_Tracer_Red"; - ammoLeft=30; - }; - }; - class handgun - { - name="rhsusf_weap_glock17g4"; - class primaryMuzzleMag - { - name="rhsusf_mag_17Rnd_9x19_FMJ"; - ammoLeft=17; - }; - }; - class binocular - { - name="Binocular"; - }; - class uniform - { - typeName="SMM_Uniform_BW_FT"; - isBackpack=0; - class MagazineCargo - { - items=1; - class Item0 - { - name="30Rnd_556x45_Stanag_Tracer_Green"; - count=4; - ammoLeft=30; - }; - }; - class ItemCargo - { - items=2; - class Item0 - { - name="ACE_fieldDressing"; - count=2; - }; - class Item1 - { - name="ACE_morphine"; - count=1; - }; - }; - }; - class vest - { - typeName="SMM_Vest_BW_FT"; - isBackpack=0; - class MagazineCargo - { - items=6; - class Item0 - { - name="SmokeShell"; - count=1; - ammoLeft=1; - }; - class Item1 - { - name="SmokeShellGreen"; - count=1; - ammoLeft=1; - }; - class Item2 - { - name="Chemlight_green"; - count=2; - ammoLeft=1; - }; - class Item3 - { - name="HandGrenade"; - count=2; - ammoLeft=1; - }; - class Item4 - { - name="MiniGrenade"; - count=3; - ammoLeft=1; - }; - class Item5 - { - name="30Rnd_556x45_Stanag_Tracer_Red"; - count=2; - ammoLeft=30; - }; - }; - class ItemCargo - { - items=3; - class Item0 - { - name="ACE_EarPlugs"; - count=1; - }; - class Item1 - { - name="ACE_fieldDressing"; - count=10; - }; - class Item2 - { - name="ACE_morphine"; - count=6; - }; - }; - }; - map="ItemMap"; - compass="ItemCompass"; - watch="ItemWatch"; - radio="tf_anprc152"; - gps="ItemGPS"; - headgear="SMM_Helmet_BW_FT"; - }; - }; - id=495; - type="B_Soldier_F"; - class CustomAttributes - { - class Attribute0 - { - property="acex_headless_blacklist"; - expression="_this setVariable [""acex_headless_blacklist"",_value,true]"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isHandcuffed"; - expression="if (_value) then {[objNull, [_this], true] call ace_captives_fnc_moduleHandcuffed}"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute2 - { - property="ace_isSurrendered"; - expression="if (_value) then {[objNull, [_this], true] call ace_captives_fnc_moduleSurrender}"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=3; - }; - }; - }; - class Attributes - { - }; - id=494; - }; - class Item29 - { - dataType="Group"; - side="West"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={14197.468,19.503269,16279.588}; - angles[]={0.010664274,3.8592575,6.2751846}; - }; - side="West"; - flags=6; - class Attributes - { - skill=0.60000002; - isPlayable=1; - class Inventory - { - class primaryWeapon - { - name="arifle_SPAR_01_blk_F"; - optics="optic_ERCO_blk_F"; - flashlight="acc_pointer_IR"; - class primaryMuzzleMag - { - name="30Rnd_556x45_Stanag_Tracer_Red"; - ammoLeft=30; - }; - }; - class handgun - { - name="rhsusf_weap_glock17g4"; - class primaryMuzzleMag - { - name="rhsusf_mag_17Rnd_9x19_FMJ"; - ammoLeft=17; - }; - }; - class binocular - { - name="Binocular"; - }; - class uniform - { - typeName="SMM_Uniform_BW_FT"; - isBackpack=0; - class MagazineCargo - { - items=1; - class Item0 - { - name="30Rnd_556x45_Stanag_Tracer_Green"; - count=4; - ammoLeft=30; - }; - }; - class ItemCargo - { - items=2; - class Item0 - { - name="ACE_fieldDressing"; - count=2; - }; - class Item1 - { - name="ACE_morphine"; - count=1; - }; - }; - }; - class vest - { - typeName="SMM_Vest_BW_FT"; - isBackpack=0; - class MagazineCargo - { - items=6; - class Item0 - { - name="SmokeShell"; - count=1; - ammoLeft=1; - }; - class Item1 - { - name="SmokeShellGreen"; - count=1; - ammoLeft=1; - }; - class Item2 - { - name="Chemlight_green"; - count=2; - ammoLeft=1; - }; - class Item3 - { - name="HandGrenade"; - count=2; - ammoLeft=1; - }; - class Item4 - { - name="MiniGrenade"; - count=3; - ammoLeft=1; - }; - class Item5 - { - name="30Rnd_556x45_Stanag_Tracer_Red"; - count=2; - ammoLeft=30; - }; - }; - class ItemCargo - { - items=3; - class Item0 - { - name="ACE_EarPlugs"; - count=1; - }; - class Item1 - { - name="ACE_fieldDressing"; - count=10; - }; - class Item2 - { - name="ACE_morphine"; - count=6; - }; - }; - }; - map="ItemMap"; - compass="ItemCompass"; - watch="ItemWatch"; - radio="tf_anprc152"; - gps="ItemGPS"; - headgear="SMM_Helmet_BW_FT"; - }; - }; - id=497; - type="B_Soldier_F"; - class CustomAttributes - { - class Attribute0 - { - property="acex_headless_blacklist"; - expression="_this setVariable [""acex_headless_blacklist"",_value,true]"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isHandcuffed"; - expression="if (_value) then {[objNull, [_this], true] call ace_captives_fnc_moduleHandcuffed}"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute2 - { - property="ace_isSurrendered"; - expression="if (_value) then {[objNull, [_this], true] call ace_captives_fnc_moduleSurrender}"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=3; - }; - }; - }; - class Attributes - { - }; - id=496; - }; - class Item30 - { - dataType="Group"; - side="West"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={14199.015,19.517796,16278.013}; - angles[]={0.010664274,3.8592575,6.2818484}; - }; - side="West"; - flags=6; - class Attributes - { - skill=0.60000002; - isPlayable=1; - class Inventory - { - class primaryWeapon - { - name="arifle_SPAR_01_blk_F"; - optics="optic_ERCO_blk_F"; - flashlight="acc_pointer_IR"; - class primaryMuzzleMag - { - name="30Rnd_556x45_Stanag_Tracer_Red"; - ammoLeft=30; - }; - }; - class handgun - { - name="rhsusf_weap_glock17g4"; - class primaryMuzzleMag - { - name="rhsusf_mag_17Rnd_9x19_FMJ"; - ammoLeft=17; - }; - }; - class binocular - { - name="Binocular"; - }; - class uniform - { - typeName="SMM_Uniform_BW_FT"; - isBackpack=0; - class MagazineCargo - { - items=1; - class Item0 - { - name="30Rnd_556x45_Stanag_Tracer_Green"; - count=4; - ammoLeft=30; - }; - }; - class ItemCargo - { - items=2; - class Item0 - { - name="ACE_fieldDressing"; - count=2; - }; - class Item1 - { - name="ACE_morphine"; - count=1; - }; - }; - }; - class vest - { - typeName="SMM_Vest_BW_FT"; - isBackpack=0; - class MagazineCargo - { - items=6; - class Item0 - { - name="SmokeShell"; - count=1; - ammoLeft=1; - }; - class Item1 - { - name="SmokeShellGreen"; - count=1; - ammoLeft=1; - }; - class Item2 - { - name="Chemlight_green"; - count=2; - ammoLeft=1; - }; - class Item3 - { - name="HandGrenade"; - count=2; - ammoLeft=1; - }; - class Item4 - { - name="MiniGrenade"; - count=3; - ammoLeft=1; - }; - class Item5 - { - name="30Rnd_556x45_Stanag_Tracer_Red"; - count=2; - ammoLeft=30; - }; - }; - class ItemCargo - { - items=3; - class Item0 - { - name="ACE_EarPlugs"; - count=1; - }; - class Item1 - { - name="ACE_fieldDressing"; - count=10; - }; - class Item2 - { - name="ACE_morphine"; - count=6; - }; - }; - }; - map="ItemMap"; - compass="ItemCompass"; - watch="ItemWatch"; - radio="tf_anprc152"; - gps="ItemGPS"; - headgear="SMM_Helmet_BW_FT"; - }; - }; - id=499; - type="B_Soldier_F"; - class CustomAttributes - { - class Attribute0 - { - property="acex_headless_blacklist"; - expression="_this setVariable [""acex_headless_blacklist"",_value,true]"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isHandcuffed"; - expression="if (_value) then {[objNull, [_this], true] call ace_captives_fnc_moduleHandcuffed}"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute2 - { - property="ace_isSurrendered"; - expression="if (_value) then {[objNull, [_this], true] call ace_captives_fnc_moduleSurrender}"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=3; - }; - }; - }; - class Attributes - { - }; - id=498; - }; - class Item31 - { - dataType="Group"; - side="West"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={14200.844,19.533657,16276.298}; - angles[]={0.010664274,3.8592575,6.2818484}; - }; - side="West"; - flags=6; - class Attributes - { - skill=0.60000002; - isPlayable=1; - class Inventory - { - class primaryWeapon - { - name="arifle_SPAR_01_blk_F"; - optics="optic_ERCO_blk_F"; - flashlight="acc_pointer_IR"; - class primaryMuzzleMag - { - name="30Rnd_556x45_Stanag_Tracer_Red"; - ammoLeft=30; - }; - }; - class handgun - { - name="rhsusf_weap_glock17g4"; - class primaryMuzzleMag - { - name="rhsusf_mag_17Rnd_9x19_FMJ"; - ammoLeft=17; - }; - }; - class binocular - { - name="Binocular"; - }; - class uniform - { - typeName="SMM_Uniform_BW_FT"; - isBackpack=0; - class MagazineCargo - { - items=1; - class Item0 - { - name="30Rnd_556x45_Stanag_Tracer_Green"; - count=4; - ammoLeft=30; - }; - }; - class ItemCargo - { - items=2; - class Item0 - { - name="ACE_fieldDressing"; - count=2; - }; - class Item1 - { - name="ACE_morphine"; - count=1; - }; - }; - }; - class vest - { - typeName="SMM_Vest_BW_FT"; - isBackpack=0; - class MagazineCargo - { - items=6; - class Item0 - { - name="SmokeShell"; - count=1; - ammoLeft=1; - }; - class Item1 - { - name="SmokeShellGreen"; - count=1; - ammoLeft=1; - }; - class Item2 - { - name="Chemlight_green"; - count=2; - ammoLeft=1; - }; - class Item3 - { - name="HandGrenade"; - count=2; - ammoLeft=1; - }; - class Item4 - { - name="MiniGrenade"; - count=3; - ammoLeft=1; - }; - class Item5 - { - name="30Rnd_556x45_Stanag_Tracer_Red"; - count=2; - ammoLeft=30; - }; - }; - class ItemCargo - { - items=3; - class Item0 - { - name="ACE_EarPlugs"; - count=1; - }; - class Item1 - { - name="ACE_fieldDressing"; - count=10; - }; - class Item2 - { - name="ACE_morphine"; - count=6; - }; - }; - }; - map="ItemMap"; - compass="ItemCompass"; - watch="ItemWatch"; - radio="tf_anprc152"; - gps="ItemGPS"; - headgear="SMM_Helmet_BW_FT"; - }; - }; - id=501; - type="B_Soldier_F"; - class CustomAttributes - { - class Attribute0 - { - property="acex_headless_blacklist"; - expression="_this setVariable [""acex_headless_blacklist"",_value,true]"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isHandcuffed"; - expression="if (_value) then {[objNull, [_this], true] call ace_captives_fnc_moduleHandcuffed}"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute2 - { - property="ace_isSurrendered"; - expression="if (_value) then {[objNull, [_this], true] call ace_captives_fnc_moduleSurrender}"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=3; - }; - }; - }; - class Attributes - { - }; - id=500; - }; - class Item32 - { - dataType="Group"; - side="West"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={14202.725,19.551348,16274.584}; - angles[]={0.014664836,3.8592572,6.281848}; - }; - side="West"; - flags=6; - class Attributes - { - skill=0.60000002; - isPlayable=1; - class Inventory - { - class primaryWeapon - { - name="arifle_SPAR_01_blk_F"; - optics="optic_ERCO_blk_F"; - flashlight="acc_pointer_IR"; - class primaryMuzzleMag - { - name="30Rnd_556x45_Stanag_Tracer_Red"; - ammoLeft=30; - }; - }; - class handgun - { - name="rhsusf_weap_glock17g4"; - class primaryMuzzleMag - { - name="rhsusf_mag_17Rnd_9x19_FMJ"; - ammoLeft=17; - }; - }; - class binocular - { - name="Binocular"; - }; - class uniform - { - typeName="SMM_Uniform_BW_FT"; - isBackpack=0; - class MagazineCargo - { - items=1; - class Item0 - { - name="30Rnd_556x45_Stanag_Tracer_Green"; - count=4; - ammoLeft=30; - }; - }; - class ItemCargo - { - items=2; - class Item0 - { - name="ACE_fieldDressing"; - count=2; - }; - class Item1 - { - name="ACE_morphine"; - count=1; - }; - }; - }; - class vest - { - typeName="SMM_Vest_BW_FT"; - isBackpack=0; - class MagazineCargo - { - items=6; - class Item0 - { - name="SmokeShell"; - count=1; - ammoLeft=1; - }; - class Item1 - { - name="SmokeShellGreen"; - count=1; - ammoLeft=1; - }; - class Item2 - { - name="Chemlight_green"; - count=2; - ammoLeft=1; - }; - class Item3 - { - name="HandGrenade"; - count=2; - ammoLeft=1; - }; - class Item4 - { - name="MiniGrenade"; - count=3; - ammoLeft=1; - }; - class Item5 - { - name="30Rnd_556x45_Stanag_Tracer_Red"; - count=2; - ammoLeft=30; - }; - }; - class ItemCargo - { - items=3; - class Item0 - { - name="ACE_EarPlugs"; - count=1; - }; - class Item1 - { - name="ACE_fieldDressing"; - count=10; - }; - class Item2 - { - name="ACE_morphine"; - count=6; - }; - }; - }; - map="ItemMap"; - compass="ItemCompass"; - watch="ItemWatch"; - radio="tf_anprc152"; - gps="ItemGPS"; - headgear="SMM_Helmet_BW_FT"; - }; - }; - id=503; - type="B_Soldier_F"; - atlOffset=5.531311e-005; - class CustomAttributes - { - class Attribute0 - { - property="acex_headless_blacklist"; - expression="_this setVariable [""acex_headless_blacklist"",_value,true]"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isHandcuffed"; - expression="if (_value) then {[objNull, [_this], true] call ace_captives_fnc_moduleHandcuffed}"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute2 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="male10eng"; - }; - }; - }; - class Attribute3 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1.0410764; - }; - }; - }; - class Attribute4 - { - property="ace_isSurrendered"; - expression="if (_value) then {[objNull, [_this], true] call ace_captives_fnc_moduleSurrender}"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=5; - }; - }; - }; - class Attributes - { - }; - id=502; - atlOffset=5.531311e-005; - }; - class Item33 - { - dataType="Group"; - side="West"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={14195.511,19.589994,16270.459}; - angles[]={0.0066682254,3.8592575,6.2791886}; - }; - side="West"; - flags=6; - class Attributes - { - skill=0.60000002; - isPlayable=1; - class Inventory - { - class primaryWeapon - { - name="arifle_SPAR_01_blk_F"; - optics="optic_ERCO_blk_F"; - flashlight="acc_pointer_IR"; - class primaryMuzzleMag - { - name="30Rnd_556x45_Stanag_Tracer_Red"; - ammoLeft=30; - }; - }; - class handgun - { - name="rhsusf_weap_glock17g4"; - class primaryMuzzleMag - { - name="rhsusf_mag_17Rnd_9x19_FMJ"; - ammoLeft=17; - }; - }; - class binocular - { - name="Binocular"; - }; - class uniform - { - typeName="SMM_Uniform_BW_FT"; - isBackpack=0; - class MagazineCargo - { - items=1; - class Item0 - { - name="30Rnd_556x45_Stanag_Tracer_Green"; - count=4; - ammoLeft=30; - }; - }; - class ItemCargo - { - items=2; - class Item0 - { - name="ACE_fieldDressing"; - count=2; - }; - class Item1 - { - name="ACE_morphine"; - count=1; - }; - }; - }; - class vest - { - typeName="SMM_Vest_BW_FT"; - isBackpack=0; - class MagazineCargo - { - items=6; - class Item0 - { - name="SmokeShell"; - count=1; - ammoLeft=1; - }; - class Item1 - { - name="SmokeShellGreen"; - count=1; - ammoLeft=1; - }; - class Item2 - { - name="Chemlight_green"; - count=2; - ammoLeft=1; - }; - class Item3 - { - name="HandGrenade"; - count=2; - ammoLeft=1; - }; - class Item4 - { - name="MiniGrenade"; - count=3; - ammoLeft=1; - }; - class Item5 - { - name="30Rnd_556x45_Stanag_Tracer_Red"; - count=2; - ammoLeft=30; - }; - }; - class ItemCargo - { - items=3; - class Item0 - { - name="ACE_EarPlugs"; - count=1; - }; - class Item1 - { - name="ACE_fieldDressing"; - count=10; - }; - class Item2 - { - name="ACE_morphine"; - count=6; - }; - }; - }; - map="ItemMap"; - compass="ItemCompass"; - watch="ItemWatch"; - radio="tf_anprc152"; - gps="ItemGPS"; - headgear="SMM_Helmet_BW_FT"; - }; - }; - id=505; - type="B_Soldier_F"; - class CustomAttributes - { - class Attribute0 - { - property="acex_headless_blacklist"; - expression="_this setVariable [""acex_headless_blacklist"",_value,true]"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isHandcuffed"; - expression="if (_value) then {[objNull, [_this], true] call ace_captives_fnc_moduleHandcuffed}"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute2 - { - property="ace_isSurrendered"; - expression="if (_value) then {[objNull, [_this], true] call ace_captives_fnc_moduleSurrender}"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=3; - }; - }; - }; - class Attributes - { - }; - id=504; - }; - class Item34 - { - dataType="Group"; - side="West"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={14197.347,19.594122,16268.751}; - angles[]={0.0066682254,3.8592575,6.2791886}; - }; - side="West"; - flags=6; - class Attributes - { - skill=0.60000002; - isPlayable=1; - class Inventory - { - class primaryWeapon - { - name="arifle_SPAR_01_blk_F"; - optics="optic_ERCO_blk_F"; - flashlight="acc_pointer_IR"; - class primaryMuzzleMag - { - name="30Rnd_556x45_Stanag_Tracer_Red"; - ammoLeft=30; - }; - }; - class handgun - { - name="rhsusf_weap_glock17g4"; - class primaryMuzzleMag - { - name="rhsusf_mag_17Rnd_9x19_FMJ"; - ammoLeft=17; - }; - }; - class binocular - { - name="Binocular"; - }; - class uniform - { - typeName="SMM_Uniform_BW_FT"; - isBackpack=0; - class MagazineCargo - { - items=1; - class Item0 - { - name="30Rnd_556x45_Stanag_Tracer_Green"; - count=4; - ammoLeft=30; - }; - }; - class ItemCargo - { - items=2; - class Item0 - { - name="ACE_fieldDressing"; - count=2; - }; - class Item1 - { - name="ACE_morphine"; - count=1; - }; - }; - }; - class vest - { - typeName="SMM_Vest_BW_FT"; - isBackpack=0; - class MagazineCargo - { - items=6; - class Item0 - { - name="SmokeShell"; - count=1; - ammoLeft=1; - }; - class Item1 - { - name="SmokeShellGreen"; - count=1; - ammoLeft=1; - }; - class Item2 - { - name="Chemlight_green"; - count=2; - ammoLeft=1; - }; - class Item3 - { - name="HandGrenade"; - count=2; - ammoLeft=1; - }; - class Item4 - { - name="MiniGrenade"; - count=3; - ammoLeft=1; - }; - class Item5 - { - name="30Rnd_556x45_Stanag_Tracer_Red"; - count=2; - ammoLeft=30; - }; - }; - class ItemCargo - { - items=3; - class Item0 - { - name="ACE_EarPlugs"; - count=1; - }; - class Item1 - { - name="ACE_fieldDressing"; - count=10; - }; - class Item2 - { - name="ACE_morphine"; - count=6; - }; - }; - }; - map="ItemMap"; - compass="ItemCompass"; - watch="ItemWatch"; - radio="tf_anprc152"; - gps="ItemGPS"; - headgear="SMM_Helmet_BW_FT"; - }; - }; - id=507; - type="B_Soldier_F"; - atlOffset=7.8201294e-005; - class CustomAttributes - { - class Attribute0 - { - property="acex_headless_blacklist"; - expression="_this setVariable [""acex_headless_blacklist"",_value,true]"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isHandcuffed"; - expression="if (_value) then {[objNull, [_this], true] call ace_captives_fnc_moduleHandcuffed}"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute2 - { - property="ace_isSurrendered"; - expression="if (_value) then {[objNull, [_this], true] call ace_captives_fnc_moduleSurrender}"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=3; - }; - }; - }; - class Attributes - { - }; - id=506; - atlOffset=7.8201294e-005; - }; - class Item35 - { - dataType="Object"; - class PositionInfo - { - position[]={14171.547,20.261524,16269.72}; - }; - side="Empty"; - class Attributes - { - disableSimulation=1; - }; - id=529; - type="Land_MetalBarrel_empty_F"; - atlOffset=0.2588501; - }; - class Item36 - { - dataType="Object"; - class PositionInfo - { - position[]={14177.524,20.150642,16264.293}; - angles[]={0.0012918708,0,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=530; - type="Land_WaterBarrel_F"; - atlOffset=-0.00038528442; - }; - class Item37 - { - dataType="Object"; - class PositionInfo - { - position[]={14170.928,20.42977,16270.709}; - }; - side="Empty"; - class Attributes - { - disableSimulation=1; - }; - id=531; - type="Land_WaterBarrel_F"; - atlOffset=0.28302002; - }; - class Item38 - { - dataType="Object"; - class PositionInfo - { - position[]={14170.788,20.07189,16269.152}; - }; - side="Empty"; - class Attributes - { - disableSimulation=1; - }; - id=533; - type="Land_Crates_EP1"; - atlOffset=0.25942421; - }; - class Item39 - { - dataType="Object"; - class PositionInfo - { - position[]={14201.719,20.114346,16305.426}; - angles[]={0,2.3561945,0}; - }; - side="Empty"; - class Attributes - { - disableSimulation=1; - }; - id=536; - type="CargoNet_01_barrels_F"; - atlOffset=0.27294922; - }; - class Item40 - { - dataType="Object"; - class PositionInfo - { - position[]={14200.543,19.834583,16304.432}; - angles[]={0.0026520467,4.0223641,0.0080009829}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=537; - type="CargoNet_01_barrels_F"; - atlOffset=-5.531311e-005; - }; - class Item41 - { - dataType="Object"; - class PositionInfo - { - position[]={14170.579,20.244177,16269.831}; - }; - side="Empty"; - class Attributes - { - disableSimulation=1; - }; - id=538; - type="CUP_A2_barrel_sand"; - atlOffset=0.25942421; - }; - class Item42 - { - dataType="Object"; - class PositionInfo - { - position[]={14201.928,19.713833,16307.367}; - angles[]={0.0026520467,0,0.0080009829}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=540; - type="Land_BarrelTrash_F"; - atlOffset=-4.0054321e-005; - }; - class Item43 - { - dataType="Object"; - class PositionInfo - { - position[]={14160.811,20.843128,16275.892}; - angles[]={0.0053265258,5.4961882,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=548; - type="TK_WarfareBContructionSite_Base_EP1"; - }; - class Item44 - { - dataType="Object"; - class PositionInfo - { - position[]={14162.562,20.833303,16277.732}; - angles[]={0.0053265258,5.4961882,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=549; - type="TK_GUE_WarfareBContructionSite_Base_EP1"; - }; - class Item45 - { - dataType="Object"; - class PositionInfo - { - position[]={14161.778,23.440313,16276.795}; - angles[]={0.0053265258,5.4961882,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=550; - type="TK_GUE_WarfareBContructionSite1_Base_EP1"; - atlOffset=0.00025749207; - }; - class Item46 - { - dataType="Object"; - class PositionInfo - { - position[]={14200.674,20.147863,16309.082}; - angles[]={0.0026520467,0,0.0080009829}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=553; - type="Misc_cargo_cont_net2"; - }; - class Item47 - { - dataType="Object"; - class PositionInfo - { - position[]={20052.818,28.924227,20081.283}; - angles[]={0,5.3564506,0}; - }; - side="Empty"; - flags=1; - class Attributes - { - init="call{this allowDamage false;}"; - disableSimulation=1; - }; - id=815; - type="Land_Billboard_F"; - atlOffset=0.41000175; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\billboard.jpg"; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item48 - { - dataType="Object"; - class PositionInfo - { - position[]={20078.461,28.887417,20094.455}; - angles[]={0,6.2802181,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - init="call{this allowDamage false;}"; - disableSimulation=1; - }; - id=817; - type="Land_Billboard_F"; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\billboard.jpg"; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item49 - { - dataType="Object"; - class PositionInfo - { - position[]={20057.898,28.904602,20086.516}; - angles[]={0,5.5773396,0}; - }; - side="Empty"; - flags=1; - class Attributes - { - init="call{this allowDamage false; }"; - disableSimulation=1; - }; - id=818; - type="Land_Billboard_F"; - atlOffset=0.41200066; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\Willkommen2.jpg"; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item50 - { - dataType="Object"; - class PositionInfo - { - position[]={20063.961,28.867479,20090.9}; - angles[]={0,5.7861853,0}; - }; - side="Empty"; - flags=1; - class Attributes - { - init="call{this allowDamage false; }"; - disableSimulation=1; - }; - id=819; - type="Land_Billboard_F"; - atlOffset=1.1399994; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\bei2.jpg"; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item51 - { - dataType="Object"; - class PositionInfo - { - position[]={20070.797,28.910427,20093.617}; - angles[]={0,6.0505333,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - init="call{this allowDamage false; }"; - disableSimulation=1; - }; - id=820; - type="Land_Billboard_F"; - atlOffset=0.069999695; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\GruppeAdler2.jpg"; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item52 - { - dataType="Object"; - class PositionInfo - { - position[]={20054.232,26.559557,20080.094}; - angles[]={5.5169859,2.5318792,5.5460281}; - }; - side="Empty"; - flags=4; - class Attributes - { - name="l1"; - }; - id=852; - type="Land_PortableLight_double_F"; - atlOffset=-1.1369972; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item53 - { - dataType="Object"; - class PositionInfo - { - position[]={20058.77,26.653152,20085.154}; - angles[]={5.4010787,2.7209682,5.7086577}; - }; - side="Empty"; - flags=4; - class Attributes - { - name="l2"; - }; - id=853; - type="Land_PortableLight_double_F"; - atlOffset=-1.0650005; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item54 - { - dataType="Object"; - class PositionInfo - { - position[]={20064.834,26.672091,20089.262}; - angles[]={5.33425,2.8612928,5.8698564}; - }; - side="Empty"; - class Attributes - { - name="l3"; - }; - id=854; - type="Land_PortableLight_double_F"; - atlOffset=0.40099907; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item55 - { - dataType="Object"; - class PositionInfo - { - position[]={20071.279,26.665728,20091.824}; - angles[]={5.2865148,3.0211301,6.0949168}; - }; - side="Empty"; - flags=4; - class Attributes - { - name="l4"; - }; - id=855; - type="Land_PortableLight_double_F"; - atlOffset=-1.0629978; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item56 - { - dataType="Object"; - class PositionInfo - { - position[]={20078.617,26.904701,20092.217}; - angles[]={5.2751527,3.1346114,6.2720852}; - }; - side="Empty"; - flags=4; - class Attributes - { - name="l5"; - }; - id=856; - type="Land_PortableLight_double_F"; - atlOffset=-1.1940002; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item57 - { - dataType="Object"; - class PositionInfo - { - position[]={20077.359,18.115602,20065.125}; - angles[]={0,5.8382835,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - init="call{this addAction [""Turn on Lights"", ""Scripts\XiviD\lightsON.sqf""];" \n "this addAction [""Turn off Lights"", ""Scripts\XiviD\lightsOFF.sqf""];" \n "" \n "}"; - disableSimulation=1; - }; - id=857; - type="Infostand_1_EP1"; - atlOffset=1.9073486e-005; - class CustomAttributes - { - class Attribute0 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item58 - { - dataType="Logic"; - class PositionInfo - { - position[]={14193.435,19.669945,16338.082}; - angles[]={0.013332055,0,0.0039967569}; - }; - id=860; - type="ModuleCurator_F"; - atlOffset=0.70731735; - class CustomAttributes - { - class Attribute0 - { - property="ModuleCurator_F_Owner"; - expression="_this setVariable ['Owner',_value,true];"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="#adminLogged"; - }; - }; - }; - class Attribute1 - { - property="ModuleCurator_F_Forced"; - expression="_this setVariable ['Forced',_value,true];"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0; - }; - }; - }; - class Attribute2 - { - property="ModuleCurator_F_Name"; - expression="_this setVariable ['Name',_value,true];"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value=""; - }; - }; - }; - class Attribute3 - { - property="ModuleInfo"; - expression="false"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - }; - class Attribute4 - { - property="ModuleCurator_F_Addons"; - expression="_this setVariable ['Addons',_value,true];"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=3; - }; - }; - }; - nAttributes=5; - }; - }; - class Item59 - { - dataType="Object"; - class PositionInfo - { - position[]={20067.088,21.24502,20070.217}; - angles[]={0,5.0614548,0}; - }; - side="Empty"; - class Attributes - { - }; - id=864; - type="Land_PortableLight_single_F"; - atlOffset=2.1354885; - class CustomAttributes - { - class Attribute0 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item60 - { - dataType="Object"; - class PositionInfo - { - position[]={20090.479,18.821625,20037.303}; - angles[]={0,5.8293996,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - name="portal_arena"; - }; - id=884; - type="Land_ConcreteWall_02_m_gate_F"; - atlOffset=1.9073486e-006; - class CustomAttributes - { - class Attribute0 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item61 - { - dataType="Object"; - class PositionInfo - { - position[]={20080.451,21.367052,20076.898}; - angles[]={0,0.28699362,0}; - }; - side="Empty"; - class Attributes - { - }; - id=900; - type="Land_PortableLight_single_F"; - atlOffset=1.2721252; - class CustomAttributes - { - class Attribute0 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item62 - { - dataType="Layer"; - name="HBarrier (Large)"; - id=1129; - atlOffset=185.97; - }; - class Item63 - { - dataType="Layer"; - name="Reveille (Lite)"; - id=2232; - atlOffset=185.97; - }; - class Item64 - { - dataType="Layer"; - name="Reveille (Detailed)"; - class Entities - { - items=11; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={14172.352,20.80006,16268.166}; - angles[]={0,0.74354416,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - disableSimulation=1; - }; - id=3290; - type="Land_ToiletBox_F"; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={14173.497,20.800362,16267.271}; - angles[]={0.0012918708,0.761015,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - disableSimulation=1; - }; - id=3297; - type="Land_FieldToilet_F"; - atlOffset=-3.8146973e-006; - }; - class Item2 - { - dataType="Object"; - class PositionInfo - { - position[]={14174.551,20.801762,16266.222}; - angles[]={0.0012918708,0.73026234,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - disableSimulation=1; - }; - id=3302; - type="Land_ToiletBox_F"; - atlOffset=-5.7220459e-006; - }; - class Item3 - { - dataType="Object"; - class PositionInfo - { - position[]={14175.602,20.802999,16265.294}; - angles[]={0.0012918708,0.748658,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - disableSimulation=1; - }; - id=3306; - type="Land_ToiletBox_F"; - atlOffset=-1.9073486e-006; - }; - class Item4 - { - dataType="Object"; - class PositionInfo - { - position[]={14176.38,20.203508,16263.098}; - angles[]={0.0012918708,5.4362583,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - disableSimulation=1; - }; - id=3311; - type="Land_Sink_F"; - }; - class Item5 - { - dataType="Object"; - class PositionInfo - { - position[]={14178.654,20.806606,16262.591}; - angles[]={0.0012918708,0.79049355,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - disableSimulation=1; - }; - id=3318; - type="Land_FieldToilet_F"; - atlOffset=-1.9073486e-006; - }; - class Item6 - { - dataType="Object"; - class PositionInfo - { - position[]={14179.684,20.807978,16261.561}; - angles[]={0.0012918708,0.7167359,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - disableSimulation=1; - }; - id=3325; - type="Land_ToiletBox_F"; - atlOffset=-1.9073486e-006; - }; - class Item7 - { - dataType="Object"; - class PositionInfo - { - position[]={14180.815,20.809231,16260.622}; - angles[]={0.0012918708,0.75422555,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - disableSimulation=1; - }; - id=3333; - type="Land_FieldToilet_F"; - atlOffset=-1.9073486e-006; - }; - class Item8 - { - dataType="Object"; - class PositionInfo - { - position[]={14181.933,20.810022,16259.642}; - angles[]={0,0.75022894,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - disableSimulation=1; - }; - id=3339; - type="Land_FieldToilet_F"; - atlOffset=-3.8146973e-005; - }; - class Item9 - { - dataType="Object"; - class PositionInfo - { - position[]={14173.538,20.378342,16273.735}; - angles[]={0,2.30832,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - disableSimulation=1; - }; - id=3615; - type="Land_HBarrier_3_F"; - }; - class Item10 - { - dataType="Object"; - class PositionInfo - { - position[]={14188.604,20.389425,16259.593}; - angles[]={0.0026529003,2.30832,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.2; - disableSimulation=1; - }; - id=3616; - type="Land_HBarrier_3_F"; - }; - }; - id=3470; - atlOffset=-0.0022296906; - }; - class Item65 - { - dataType="Object"; - class PositionInfo - { - position[]={14161.332,26.801649,16245.401}; - angles[]={0,3.5435767,0}; - }; - side="Empty"; - flags=1; - class Attributes - { - init="call{this allowDamage false; }"; - disableSimulation=1; - }; - id=3507; - type="Land_Billboard_F"; - atlOffset=4.7064247; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\billboard.jpg"; - }; - }; - }; - class Attribute2 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=3; - }; - }; - class Item66 - { - dataType="Object"; - class PositionInfo - { - position[]={14155.454,20.481186,16296.406}; - angles[]={0,5.4329829,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - name="portal_base"; - }; - id=847; - type="Land_ConcreteWall_02_m_gate_F"; - atlOffset=1.9073486e-006; - class CustomAttributes - { - class Attribute0 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item67 - { - dataType="Object"; - class PositionInfo - { - position[]={14182.281,20.845333,16268.96}; - angles[]={0,3.8600574,0.0012915437}; - }; - side="Empty"; - flags=4; - class Attributes - { - init="call{this allowDamage false}"; - }; - id=3564; - type="CamoNet_BLUFOR_F"; - atlOffset=-1.9073486e-006; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item68 - { - dataType="Object"; - class PositionInfo - { - position[]={14184.367,19.59,16266.991}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=3571; - type="Land_ClutterCutter_medium_F"; - }; - class Item69 - { - dataType="Object"; - class PositionInfo - { - position[]={14181.992,19.589323,16269.405}; - angles[]={0,0,0.0012918708}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=3573; - type="Land_ClutterCutter_medium_F"; - }; - class Item70 - { - dataType="Object"; - class PositionInfo - { - position[]={14181.861,19.589148,16267.446}; - angles[]={0,0,0.0012918708}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=3574; - type="Land_ClutterCutter_medium_F"; - atlOffset=-1.9073486e-006; - }; - class Item71 - { - dataType="Object"; - class PositionInfo - { - position[]={14155.679,19.231419,16295.842}; - angles[]={0.043971907,0,0.0026744273}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=3607; - type="Land_ClutterCutter_medium_F"; - atlOffset=2.6702881e-005; - }; - class Item72 - { - dataType="Object"; - class PositionInfo - { - position[]={14202.584,23.723845,16261.247}; - }; - side="Empty"; - flags=5; - class Attributes - { - init="call{[this, ""Adler Base""] execVM ""scripts\simmax\TP_Setup.sqf""; " \n "}"; - name="tele2"; - }; - id=3609; - type="FlagCarrierGermany_EP1"; - class CustomAttributes - { - class Attribute0 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item73 - { - dataType="Object"; - class PositionInfo - { - position[]={14180.468,20.037401,16268.947}; - angles[]={0,1.1120366,0.0012918708}; - }; - side="Empty"; - flags=4; - class Attributes - { - init="call{this addaction [""Open Virtual Arsenal"", { [""Open"",true] call BIS_fnc_arsenal; }]; [this] call grad_customGear_fnc_addAction;}"; - }; - id=3610; - type="Land_Pallet_MilBoxes_F"; - }; - class Item74 - { - dataType="Object"; - class PositionInfo - { - position[]={14178.277,20.034481,16272.42}; - angles[]={0,5.3090496,0.0012918708}; - }; - side="Empty"; - flags=4; - class Attributes - { - init="call{this addaction [""Open Virtual Arsenal"", { [""Open"",true] call BIS_fnc_arsenal; }]; [this] call grad_customGear_fnc_addAction;}"; - }; - id=3611; - type="Land_Pallet_MilBoxes_F"; - }; - class Item75 - { - dataType="Object"; - class PositionInfo - { - position[]={14184.332,18.778389,16276.499}; - angles[]={0.0026520467,3.8395848,6.2818484}; - }; - side="Empty"; - flags=4; - class Attributes - { - init="call{this allowDamage false;}"; - }; - id=3627; - type="Land_Noticeboard_F"; - atlOffset=-1.5965939; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\billboard.jpg"; - }; - }; - }; - class Attribute2 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute3 - { - property="hideObject"; - expression="if !(is3DEN) then {_this hideobjectglobal _value;};"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=4; - }; - }; - class Item76 - { - dataType="Object"; - class PositionInfo - { - position[]={14186.287,18.779894,16274.771}; - angles[]={0.0013372133,3.8657122,6.2818484}; - }; - side="Empty"; - flags=4; - class Attributes - { - init="call{this allowDamage false;}"; - }; - id=3628; - type="Land_Noticeboard_F"; - atlOffset=-1.5967846; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\Willkommen2.jpg"; - }; - }; - }; - class Attribute2 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute3 - { - property="hideObject"; - expression="if !(is3DEN) then {_this hideobjectglobal _value;};"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=4; - }; - }; - class Item77 - { - dataType="Object"; - class PositionInfo - { - position[]={14184.971,18.662271,16275.716}; - angles[]={0.0026520467,3.8569684,6.2818484}; - }; - side="Empty"; - flags=4; - class Attributes - { - init="call{this allowDamage false;}"; - }; - id=3629; - type="Land_Noticeboard_F"; - atlOffset=-1.7139511; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\bei2.jpg"; - }; - }; - }; - class Attribute2 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute3 - { - property="hideObject"; - expression="if !(is3DEN) then {_this hideobjectglobal _value;};"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=4; - }; - }; - class Item78 - { - dataType="Object"; - class PositionInfo - { - position[]={14187.262,18.779739,16273.913}; - angles[]={0.0013372133,3.8521512,6.2818484}; - }; - side="Empty"; - flags=4; - class Attributes - { - init="call{this allowDamage false; }"; - }; - id=3630; - type="Land_Noticeboard_F"; - atlOffset=-1.5967846; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\GruppeAdler2.jpg"; - }; - }; - }; - class Attribute2 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute3 - { - property="hideObject"; - expression="if !(is3DEN) then {_this hideobjectglobal _value;};"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=4; - }; - }; - class Item79 - { - dataType="Object"; - class PositionInfo - { - position[]={14179.531,20.375851,16270.739}; - angles[]={0,5.9563546,0.0012915437}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.60000002; - init="call{this addaction [""Open Virtual Arsenal"", { [""Open"",true] call BIS_fnc_arsenal; }]; [this] call grad_customGear_fnc_addAction;}"; - description="Zeus #2"; - }; - id=3631; - type="Box_NATO_AmmoVeh_F"; - atlOffset=-1.9073486e-006; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="[[[[],[]],[[],[]],[[],[]],[[],[]]],true]"; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item80 - { - dataType="Marker"; - position[]={14264.239,0,16245.263}; - name="a2"; - text="Fahrzeug-Depot #1 "; - type="c_car"; - colorName="ColorBLUFOR"; - id=3644; - atlOffset=-19.879875; - }; - class Item81 - { - dataType="Marker"; - position[]={14283.725,0,16336.64}; - name="a3"; - text="Heli-Spawn #1"; - type="c_air"; - colorName="ColorBLUFOR"; - angle=172.282; - id=3645; - atlOffset=-19.174442; - }; - class Item82 - { - dataType="Marker"; - position[]={14357.211,19.984858,16261.012}; - name="BASE"; - type="Empty"; - id=3651; - atlOffset=-0.013998032; - }; - class Item83 - { - dataType="Object"; - class PositionInfo - { - position[]={14257.122,20.298775,16210.307}; - angles[]={0.0039967569,0,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=3693; - type="Land_ClutterCutter_medium_F"; - atlOffset=1.9073486e-006; - }; - class Item84 - { - dataType="Object"; - class PositionInfo - { - position[]={14254.826,20.190392,16225.241}; - angles[]={0.015998369,0,6.2778587}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=3694; - type="Land_ClutterCutter_medium_F"; - atlOffset=2.0980835e-005; - }; - class Item85 - { - dataType="Object"; - class PositionInfo - { - position[]={14251.349,19.946514,16244.008}; - angles[]={0.012000273,0,6.2791886}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=3697; - type="Land_ClutterCutter_medium_F"; - atlOffset=2.4795532e-005; - }; - class Item86 - { - dataType="Object"; - class PositionInfo - { - position[]={14262.485,19.909998,16243.503}; - angles[]={0.013332055,0,6.2791886}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=3698; - type="Land_ClutterCutter_large_F"; - atlOffset=-3.8146973e-006; - }; - class Item87 - { - dataType="Object"; - class PositionInfo - { - position[]={14257.915,19.980513,16239.031}; - angles[]={0.012000273,0,6.2805333}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=3699; - type="Land_ClutterCutter_medium_F"; - atlOffset=1.1444092e-005; - }; - class Item88 - { - dataType="Object"; - class PositionInfo - { - position[]={14260.491,20.000023,16236.832}; - angles[]={0.012000273,0,6.2805333}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=3700; - type="Land_ClutterCutter_medium_F"; - atlOffset=3.8146973e-006; - }; - class Item89 - { - dataType="Object"; - class PositionInfo - { - position[]={14271.966,21.35882,16231.099}; - angles[]={0.0093286335,3.828908,6.2818484}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=3704; - type="Land_Cargo40_military_green_F"; - atlOffset=5.7220459e-006; - }; - class Item90 - { - dataType="Object"; - class PositionInfo - { - position[]={14281.931,21.269096,16242.692}; - angles[]={0.0080009829,3.828908,6.2791886}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=3705; - type="Land_Cargo40_military_green_F"; - }; - class Item91 - { - dataType="Object"; - class PositionInfo - { - position[]={14284.017,21.285715,16245.392}; - angles[]={0.011995304,3.828908,0.0079935296}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=3706; - type="Land_Cargo40_military_green_F"; - atlOffset=-0.00015830994; - }; - class Item92 - { - dataType="Object"; - class PositionInfo - { - position[]={14235.32,22.54044,16209.036}; - angles[]={0,0.64702636,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=3708; - type="Land_Shed_Big_F"; - atlOffset=-1.1044598; - }; - class Item93 - { - dataType="Object"; - class PositionInfo - { - position[]={14247.374,21.63796,16205.837}; - angles[]={0.0039967569,2.2212842,0.0026520467}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=3709; - type="Land_Cargo40_military_green_F"; - atlOffset=-9.5367432e-006; - }; - class Item94 - { - dataType="Object"; - class PositionInfo - { - position[]={14239.394,21.713346,16195.346}; - angles[]={0.0093286335,2.2409427,0.0026520467}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=3710; - type="Land_Cargo40_military_green_F"; - atlOffset=-0.00017356873; - }; - class Item95 - { - dataType="Object"; - class PositionInfo - { - position[]={14232.721,20.283321,16205.455}; - angles[]={0.0080009829,0,0.0013372133}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=3713; - type="Land_ClutterCutter_large_F"; - atlOffset=1.1444092e-005; - }; - class Item96 - { - dataType="Object"; - class PositionInfo - { - position[]={14237.629,20.261629,16212.804}; - angles[]={0.0039967569,0,0.0013372133}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=3714; - type="Land_ClutterCutter_large_F"; - atlOffset=-0.00065803528; - }; - class Item97 - { - dataType="Object"; - class PositionInfo - { - position[]={14242.397,20.241364,16219.511}; - angles[]={0.0039967569,0,0.0026520467}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=3715; - type="Land_ClutterCutter_large_F"; - atlOffset=-0.00031852722; - }; - class Item98 - { - dataType="Object"; - class PositionInfo - { - position[]={14237.112,20.201557,16224.61}; - angles[]={0.0066682254,0,0.0026520467}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=3716; - type="ClutterCutter_small_EP1"; - atlOffset=-1.9073486e-006; - }; - class Item99 - { - dataType="Object"; - class PositionInfo - { - position[]={14247.527,19.98015,16242.405}; - angles[]={0.013332055,0,6.2791886}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=3717; - type="Land_ClutterCutter_large_F"; - atlOffset=-0.0043334961; - }; - class Item100 - { - dataType="Logic"; - class PositionInfo - { - position[]={14138.161,20.617996,16051.454}; - angles[]={6.2671871,0,6.2751918}; - }; - init="call{{ _x hideObjectGlobal true } foreach (nearestTerrainObjects [this,[],20])}"; - id=3725; - type="Logic"; - }; - class Item101 - { - dataType="Logic"; - class PositionInfo - { - position[]={14197.45,20.494034,16056.412}; - angles[]={6.2671871,0,6.2751918}; - }; - init="call{{ _x hideObjectGlobal true } foreach (nearestTerrainObjects [this,[],20])}"; - id=3726; - type="Logic"; - atlOffset=-0.031002045; - }; - class Item102 - { - dataType="Object"; - class PositionInfo - { - position[]={15075.271,0,15005.275}; - angles[]={0,3.3377752,0}; - }; - side="Empty"; - class Attributes - { - }; - id=3734; - type="Land_Carrier_01_base_F"; - atlOffset=56.211437; - }; - class Item103 - { - dataType="Object"; - class PositionInfo - { - position[]={14266.466,22.124052,16247.96}; - angles[]={0,3.8749542,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=3695; - type="Land_Shed_Big_F"; - atlOffset=-1.1044598; - }; - class Item104 - { - dataType="Logic"; - class PositionInfo - { - position[]={14273.901,19.299593,16320.265}; - angles[]={0.0039967569,0,6.2765174}; - }; - init="call{{ _x hideObjectGlobal true } foreach (nearestTerrainObjects [this,[],20])}"; - id=3738; - type="Logic"; - }; - class Item105 - { - dataType="Marker"; - position[]={14238.178,0,16212.72}; - name="a2_1"; - text="Fahrzeug-Depot #2"; - type="c_car"; - colorName="ColorBLUFOR"; - id=3740; - atlOffset=-20.263357; - }; - class Item106 - { - dataType="Marker"; - position[]={14165.332,0,16186.901}; - name="a3_1"; - text="Heli-Spawn #2"; - type="c_air"; - colorName="ColorBLUFOR"; - angle=110.29514; - id=3751; - atlOffset=-20.594282; - }; - class Item107 - { - dataType="Logic"; - class PositionInfo - { - position[]={14152.337,20.700371,16171.939}; - angles[]={0.0093200579,0,0.0093200579}; - }; - init="call{{ _x hideObjectGlobal true } foreach (nearestTerrainObjects [this,[],20])}"; - id=3752; - type="Logic"; - }; - class Item108 - { - dataType="Marker"; - position[]={14270.92,0,16209.926}; - name="a2_2"; - text="Fahrzeug-Depot #3"; - type="c_car"; - colorName="ColorBLUFOR"; - id=3757; - atlOffset=-20.264355; - }; - class Item109 - { - dataType="Object"; - class PositionInfo - { - position[]={15033.14,23.579456,14938.457}; - angles[]={0,0,6.2826972}; - }; - side="Empty"; - class Attributes - { - name="Pos_Helper1"; - }; - id=3777; - type="Land_Can_V2_F"; - atlOffset=78.432281; - }; - class Item110 - { - dataType="Object"; - class PositionInfo - { - position[]={14583.831,17.91,16034.744}; - angles[]={0,0.79412478,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.60000002; - init="call{this attachTo [lane_1, [0, 0, 1.9]]; }"; - }; - id=3874; - type="UserTexture1m_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\01.paa"; - }; - }; - }; - class Attribute2 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=3; - }; - }; - class Item111 - { - dataType="Object"; - class PositionInfo - { - position[]={14583.683,18.951054,16034.616}; - angles[]={0,0.79412478,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.60000002; - init="call{this setpos [getpos this select 0, getpos this select 1, 0]; this setvectorup [0,0,1]; ary=[];this addEventHandler [""HitPart"", {_spr = ""Sign_Sphere10cm_F"" createVehicle [0,0,0];" \n " _spr setObjectTexture [0, ""#(rgb,8,8,3)color(1,0,0,1)""];" \n " _spr setPosASL (_this select 0 select 3); ary=ary+[_spr]}];}"; - name="lane_1"; - }; - id=3875; - type="SignAd_Sponsor_ARMEX_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\SST_01.jpg"; - }; - }; - }; - class Attribute2 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=3; - }; - }; - class Item112 - { - dataType="Object"; - class PositionInfo - { - position[]={14442.703,20.803503,15893.443}; - angles[]={0,2.3688655,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.60000002; - disableSimulation=1; - }; - id=3876; - type="Land_CampingTable_small_F"; - atlOffset=0.0013027191; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item113 - { - dataType="Object"; - class PositionInfo - { - position[]={14586.47,17.91,16032.088}; - angles[]={0,0.79412478,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.60000002; - init="call{this attachTo [lane_2, [0, 0, 1.9]]; }"; - }; - id=3877; - type="UserTexture1m_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\02.paa"; - }; - }; - }; - class Attribute2 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=3; - }; - }; - class Item114 - { - dataType="Object"; - class PositionInfo - { - position[]={14586.42,18.951054,16032.033}; - angles[]={0,0.79412478,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.60000002; - init="call{this setpos [getpos this select 0, getpos this select 1, 0]; this setvectorup [0,0,1]; ary=[];this addEventHandler [""HitPart"", {_spr = ""Sign_Sphere10cm_F"" createVehicle [0,0,0]; " \n " _spr setObjectTexture [0, ""#(rgb,8,8,3)color(1,0,0,1)""];" \n "_spr setPosASL (_this select 0 select 3); ary=ary+[_spr]}];}"; - name="lane_2"; - }; - id=3878; - type="SignAd_Sponsor_ARMEX_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\SST_02.jpg"; - }; - }; - }; - class Attribute2 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=3; - }; - }; - class Item115 - { - dataType="Object"; - class PositionInfo - { - position[]={14589.127,17.91,16029.55}; - angles[]={0,0.79412478,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.60000002; - init="call{this attachTo [lane_3, [0, 0, 1.9]]; }"; - }; - id=3879; - type="UserTexture1m_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\03.paa"; - }; - }; - }; - class Attribute2 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=3; - }; - }; - class Item116 - { - dataType="Object"; - class PositionInfo - { - position[]={14589.085,18.951054,16029.492}; - angles[]={0,0.79412478,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.60000002; - init="call{this setpos [getpos this select 0, getpos this select 1, 0]; this setvectorup [0,0,1]; ary=[];this addEventHandler [""HitPart"", {_spr = ""Sign_Sphere10cm_F"" createVehicle [0,0,0]; " \n " _spr setObjectTexture [0, ""#(rgb,8,8,3)color(1,0,0,1)""];" \n "_spr setPosASL (_this select 0 select 3); ary=ary+[_spr]}];}"; - name="lane_3"; - }; - id=3880; - type="SignAd_Sponsor_ARMEX_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\SST_03.jpg"; - }; - }; - }; - class Attribute2 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=3; - }; - }; - class Item117 - { - dataType="Object"; - class PositionInfo - { - position[]={14591.815,17.91,16026.93}; - angles[]={0,0.79412478,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.60000002; - init="call{this attachTo [lane_4, [0, 0, 1.9]]; }"; - }; - id=3881; - type="UserTexture1m_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\04.paa"; - }; - }; - }; - class Attribute2 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=3; - }; - }; - class Item118 - { - dataType="Object"; - class PositionInfo - { - position[]={14591.755,18.951054,16026.889}; - angles[]={0,0.79412478,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.60000002; - init="call{this setpos [getpos this select 0, getpos this select 1, 0]; this setvectorup [0,0,1]; ary=[];this addEventHandler [""HitPart"", {_spr = ""Sign_Sphere10cm_F"" createVehicle [0,0,0]; " \n " _spr setObjectTexture [0, ""#(rgb,8,8,3)color(1,0,0,1)""];" \n "_spr setPosASL (_this select 0 select 3); ary=ary+[_spr]}];}"; - name="lane_4"; - }; - id=3882; - type="SignAd_Sponsor_ARMEX_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\SST_04.jpg"; - }; - }; - }; - class Attribute2 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=3; - }; - }; - class Item119 - { - dataType="Object"; - class PositionInfo - { - position[]={14457.108,20.804773,15881.181}; - angles[]={0,3.9365618,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=1; - disableSimulation=1; - }; - id=3884; - type="Land_BagFence_Long_F"; - }; - class Item120 - { - dataType="Object"; - class PositionInfo - { - position[]={14459.189,20.829243,15879.057}; - angles[]={0,3.9365618,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=1; - disableSimulation=1; - }; - id=3885; - type="Land_BagFence_Long_F"; - atlOffset=0.024469376; - }; - class Item121 - { - dataType="Object"; - class PositionInfo - { - position[]={14461.283,20.804773,15876.979}; - angles[]={0,0.79287481,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=1; - disableSimulation=1; - }; - id=3886; - type="Land_BagFence_Long_F"; - }; - class Item122 - { - dataType="Object"; - class PositionInfo - { - position[]={14703.966,19.585501,16190.718}; - angles[]={0,0.77554405,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.60000002; - }; - id=3887; - type="Land_Shoot_House_Wall_Long_F"; - }; - class Item123 - { - dataType="Object"; - class PositionInfo - { - position[]={14706.044,19.585501,16188.745}; - angles[]={0,3.8972139,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.60000002; - }; - id=3888; - type="Land_Shoot_House_Wall_Crouch_F"; - }; - class Item124 - { - dataType="Object"; - class PositionInfo - { - position[]={14706.129,22.239389,16188.843}; - angles[]={0,3.9087629,0}; - }; - side="Empty"; - class Attributes - { - skill=0.60000002; - }; - id=3889; - type="Land_Shoot_House_Wall_Prone_F"; - atlOffset=2.6538887; - }; - class Item125 - { - dataType="Object"; - class PositionInfo - { - position[]={14712.116,19.585501,16182.729}; - angles[]={0,0.77554405,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.60000002; - }; - id=3890; - type="Land_Shoot_House_Wall_Long_F"; - }; - class Item126 - { - dataType="Object"; - class PositionInfo - { - position[]={14714.216,19.585501,16180.706}; - angles[]={0,3.8858409,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.60000002; - }; - id=3891; - type="Land_Shoot_House_Wall_Crouch_F"; - }; - class Item127 - { - dataType="Object"; - class PositionInfo - { - position[]={14714.355,22.177069,16180.794}; - angles[]={0,3.9141297,0}; - }; - side="Empty"; - class Attributes - { - skill=0.60000002; - }; - id=3892; - type="Land_Shoot_House_Wall_Prone_F"; - atlOffset=2.591568; - }; - class Item128 - { - dataType="Object"; - class PositionInfo - { - position[]={14716.32,19.585501,16178.675}; - angles[]={0,0.77554405,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.60000002; - }; - id=3893; - type="Land_Shoot_House_Wall_Long_F"; - }; - class Item129 - { - dataType="Object"; - class PositionInfo - { - position[]={14710.222,22.214224,16184.82}; - angles[]={0,0.77279127,0}; - }; - side="Empty"; - class Attributes - { - skill=0.60000002; - }; - id=3894; - type="Land_Shoot_House_Wall_Prone_F"; - atlOffset=2.6287231; - }; - class Item130 - { - dataType="Object"; - class PositionInfo - { - position[]={14708.117,19.585501,16186.745}; - angles[]={0,0.77554405,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.60000002; - }; - id=3895; - type="Land_Shoot_House_Wall_Long_F"; - }; - class Item131 - { - dataType="Object"; - class PositionInfo - { - position[]={14706.859,18.768072,16188.492}; - angles[]={0,0.75440109,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.60000002; - init="this addEventHandler [""HitPart"", ""[(_this select 0)] execVM 'scripts\simmax\targets\PopUpTarget.sqf';""];"; - name="T09"; - }; - id=3896; - type="TargetP_Inf3_F"; - }; - class Item132 - { - dataType="Object"; - class PositionInfo - { - position[]={14714.621,18.768072,16181.083}; - angles[]={0,0.75440109,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.60000002; - init="this addEventHandler [""HitPart"", ""[(_this select 0)] execVM 'scripts\simmax\targets\PopUpTarget.sqf';""];"; - name="T11"; - }; - id=3897; - type="TargetP_Inf3_F"; - }; - class Item133 - { - dataType="Object"; - class PositionInfo - { - position[]={14709.974,18.768072,16185.67}; - angles[]={0,0.69663072,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.60000002; - init="this addEventHandler [""HitPart"", ""[(_this select 0)] execVM 'scripts\simmax\targets\PopUpTarget.sqf';""];"; - name="T10"; - }; - id=3898; - type="TargetP_Inf3_F"; - }; - class Item134 - { - dataType="Object"; - class PositionInfo - { - position[]={14659.676,18.783131,16144.272}; - angles[]={0,0.7447145,6.2778621}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.60000002; - init="this addEventHandler [""HitPart"", ""[(_this select 0)] execVM 'scripts\simmax\targets\PopUpTarget.sqf';""];"; - name="T03"; - }; - id=3899; - type="TargetP_Inf3_F"; - }; - class Item135 - { - dataType="Object"; - class PositionInfo - { - position[]={14674.188,18.790901,16159.74}; - angles[]={0,0.73312557,6.2805324}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.60000002; - init="this addEventHandler [""HitPart"", ""[(_this select 0)] execVM 'scripts\simmax\targets\PopUpTarget.sqf';""];"; - name="T06"; - }; - id=3900; - type="TargetP_Inf3_F"; - atlOffset=0.013999939; - }; - class Item136 - { - dataType="Object"; - class PositionInfo - { - position[]={14676.116,18.771761,16158.612}; - angles[]={0,0.8224864,6.2805324}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.60000002; - init="this addEventHandler [""HitPart"", ""[(_this select 0)] execVM 'scripts\simmax\targets\PopUpTarget.sqf';""];"; - name="T07"; - }; - id=3901; - type="TargetP_Inf3_F"; - }; - class Item137 - { - dataType="Object"; - class PositionInfo - { - position[]={14666.496,18.768072,16137.514}; - angles[]={0,0.8224864,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.60000002; - init="this addEventHandler [""HitPart"", ""[(_this select 0)] execVM 'scripts\simmax\targets\PopUpTarget.sqf';""];"; - name="T04"; - }; - id=3902; - type="TargetP_Inf3_F"; - }; - class Item138 - { - dataType="Object"; - class PositionInfo - { - position[]={14684.203,18.768072,16144.823}; - angles[]={0,0.82161373,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.60000002; - init="this addEventHandler [""HitPart"", ""[(_this select 0)] execVM 'scripts\simmax\targets\PopUpTarget.sqf';""];"; - name="T08"; - }; - id=3903; - type="TargetP_Inf3_F"; - }; - class Item139 - { - dataType="Object"; - class PositionInfo - { - position[]={14645.096,18.768072,16109.776}; - angles[]={0,0.72605693,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.60000002; - name="T02"; - }; - id=3904; - type="TargetP_Inf3_F"; - }; - class Item140 - { - dataType="Object"; - class PositionInfo - { - position[]={14665.286,18.7729,16148.706}; - angles[]={6.2791882,0.81492913,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.60000002; - init="this addEventHandler [""HitPart"", ""[(_this select 0)] execVM 'scripts\simmax\targets\PopUpTarget.sqf';""];"; - name="T05"; - }; - id=3905; - type="TargetP_Inf3_F"; - }; - class Item141 - { - dataType="Object"; - class PositionInfo - { - position[]={14673.78,18.434198,16157.624}; - angles[]={6.2805333,5.3471751,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=3906; - type="Land_ScrapHeap_1_F"; - atlOffset=0.053855896; - }; - class Item142 - { - dataType="Object"; - class PositionInfo - { - position[]={14658.409,18.669615,16143.96}; - angles[]={6.2778587,3.6545687,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=3907; - type="Land_GarbageContainer_open_F"; - atlOffset=-1.9073486e-005; - }; - class Item143 - { - dataType="Object"; - class PositionInfo - { - position[]={14665.945,18.649,16136.58}; - angles[]={0,4.0582576,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=3908; - type="Land_CratesWooden_F"; - }; - class Item144 - { - dataType="Object"; - class PositionInfo - { - position[]={14683.164,18.626188,16144.835}; - angles[]={0,3.964427,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=3909; - type="Land_Wall_IndCnc_End_2_F"; - }; - class Item145 - { - dataType="Object"; - class PositionInfo - { - position[]={14664.011,18.756023,16147.272}; - angles[]={0,6.0122032,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=3910; - type="Land_Wreck_UAZ_F"; - }; - class Item146 - { - dataType="Object"; - class PositionInfo - { - position[]={14645.028,18.470877,16109.421}; - angles[]={0,0.71927404,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=3911; - type="Land_Stone_8mD_F"; - }; - class Item147 - { - dataType="Object"; - class PositionInfo - { - position[]={14642.445,18.768072,16112.495}; - angles[]={0,0.66922909,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.60000002; - init="this addEventHandler [""HitPart"", ""[(_this select 0)] execVM 'scripts\simmax\targets\PopUpTarget.sqf';""];"; - name="T01"; - }; - id=3912; - type="TargetP_Inf3_F"; - }; - class Item148 - { - dataType="Object"; - class PositionInfo - { - position[]={14425.854,19.081589,15908.079}; - angles[]={0.0013372133,2.3736145,0.0066682254}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3913; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item149 - { - dataType="Object"; - class PositionInfo - { - position[]={14431.794,19.089569,15914.148}; - angles[]={0,2.3736145,0.0053265258}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3914; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item150 - { - dataType="Object"; - class PositionInfo - { - position[]={14437.646,19.092033,15920.243}; - angles[]={0.0053265258,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3915; - type="Land_HBarrier_Big_F"; - atlOffset=1.9073486e-006; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item151 - { - dataType="Object"; - class PositionInfo - { - position[]={14449.457,19.100754,15932.265}; - angles[]={0.0013372133,2.3736145,0.0053265258}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3916; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item152 - { - dataType="Object"; - class PositionInfo - { - position[]={14455.397,19.099377,15938.331}; - angles[]={0.0026520467,2.3736145,0.0039967569}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3917; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item153 - { - dataType="Object"; - class PositionInfo - { - position[]={14461.25,19.103336,15944.425}; - angles[]={0,2.3736145,0.0026520467}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3918; - type="Land_HBarrier_Big_F"; - atlOffset=1.9073486e-006; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item154 - { - dataType="Object"; - class PositionInfo - { - position[]={14467.19,19.111435,15950.495}; - angles[]={0.0013372133,2.3736145,0.0039967569}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3919; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item155 - { - dataType="Object"; - class PositionInfo - { - position[]={14473.096,19.107086,15956.472}; - angles[]={0.0013372133,2.3736145,0.0039967569}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3920; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item156 - { - dataType="Object"; - class PositionInfo - { - position[]={14479.036,19.095036,15962.542}; - angles[]={0.0080009829,2.3736145,0.0013372133}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3921; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item157 - { - dataType="Object"; - class PositionInfo - { - position[]={14484.889,19.088943,15968.636}; - angles[]={0.0093286335,2.3736145,0.0039967569}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3922; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item158 - { - dataType="Object"; - class PositionInfo - { - position[]={14490.83,19.08371,15974.706}; - angles[]={0.0013372133,2.3736145,0.0039967569}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3923; - type="Land_HBarrier_Big_F"; - atlOffset=-1.9073486e-006; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item159 - { - dataType="Object"; - class PositionInfo - { - position[]={14496.699,19.064823,15980.655}; - angles[]={0.0066682254,2.3736145,0.0093286335}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3924; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item160 - { - dataType="Object"; - class PositionInfo - { - position[]={14502.64,19.06039,15986.722}; - angles[]={0.0066592805,2.3736145,0.013332055}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3925; - type="Land_HBarrier_Big_F"; - atlOffset=-1.9073486e-006; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item161 - { - dataType="Object"; - class PositionInfo - { - position[]={14508.492,19.055687,15992.819}; - angles[]={0.013332055,2.3736145,0.0066592805}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3926; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item162 - { - dataType="Object"; - class PositionInfo - { - position[]={14514.434,19.095943,15998.886}; - angles[]={0.012000273,2.3736145,0.0013372133}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3927; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item163 - { - dataType="Object"; - class PositionInfo - { - position[]={14520.31,19.110413,16004.882}; - angles[]={0,2.3736145,0.0012918708}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3928; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item164 - { - dataType="Object"; - class PositionInfo - { - position[]={14526.25,19.099125,16010.952}; - angles[]={0.0026520467,2.3736145,0.0039967569}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3929; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item165 - { - dataType="Object"; - class PositionInfo - { - position[]={14532.103,19.104015,16017.046}; - angles[]={0.0026520467,2.3736145,0.0013372133}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3930; - type="Land_HBarrier_Big_F"; - atlOffset=3.8146973e-006; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item166 - { - dataType="Object"; - class PositionInfo - { - position[]={14538.044,19.10812,16023.116}; - angles[]={0,2.3736145,0.0026520467}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3931; - type="Land_HBarrier_Big_F"; - atlOffset=1.9073486e-006; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item167 - { - dataType="Object"; - class PositionInfo - { - position[]={14543.913,19.109798,16029.065}; - angles[]={0.0013372133,2.3736145,0.0013372133}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3932; - type="Land_HBarrier_Big_F"; - atlOffset=1.9073486e-006; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item168 - { - dataType="Object"; - class PositionInfo - { - position[]={14549.854,19.11961,16035.132}; - angles[]={0,2.3736145,0.0026520467}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3933; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item169 - { - dataType="Object"; - class PositionInfo - { - position[]={14555.706,19.117607,16041.229}; - angles[]={0,2.3736145,0.0012918708}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3934; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item170 - { - dataType="Object"; - class PositionInfo - { - position[]={14561.646,19.115528,16047.296}; - angles[]={0,2.3736145,0.0012918708}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3935; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item171 - { - dataType="Object"; - class PositionInfo - { - position[]={14567.476,19.119999,16053.3}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3936; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item172 - { - dataType="Object"; - class PositionInfo - { - position[]={14573.415,19.122494,16059.37}; - angles[]={6.2818937,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3937; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item173 - { - dataType="Object"; - class PositionInfo - { - position[]={14579.268,19.120975,16065.464}; - angles[]={0,2.3736145,6.2818937}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3938; - type="Land_HBarrier_Big_F"; - atlOffset=1.9073486e-006; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item174 - { - dataType="Object"; - class PositionInfo - { - position[]={14585.209,19.119999,16071.534}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3939; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item175 - { - dataType="Object"; - class PositionInfo - { - position[]={14591.078,19.114769,16077.487}; - angles[]={0,2.3736145,0.0012918708}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3940; - type="Land_HBarrier_Big_F"; - atlOffset=-1.9073486e-006; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item176 - { - dataType="Object"; - class PositionInfo - { - position[]={14597.019,19.115261,16083.554}; - angles[]={0.0012918708,2.3736129,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3941; - type="Land_HBarrier_Big_F"; - atlOffset=1.9073486e-006; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item177 - { - dataType="Object"; - class PositionInfo - { - position[]={14602.871,19.119999,16089.651}; - angles[]={0,2.3736129,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3942; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item178 - { - dataType="Object"; - class PositionInfo - { - position[]={14608.812,19.120956,16095.718}; - angles[]={6.2818937,2.3736129,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3943; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item179 - { - dataType="Object"; - class PositionInfo - { - position[]={14614.625,19.123833,16101.761}; - angles[]={0,2.3736129,6.2818937}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3944; - type="Land_HBarrier_Big_F"; - atlOffset=1.9073486e-006; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item180 - { - dataType="Object"; - class PositionInfo - { - position[]={14620.53,19.131916,16107.737}; - angles[]={0,2.3736129,6.2805333}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3945; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item181 - { - dataType="Object"; - class PositionInfo - { - position[]={14626.471,19.130146,16113.804}; - angles[]={6.2805333,2.3736129,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3946; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item182 - { - dataType="Object"; - class PositionInfo - { - position[]={14632.323,19.127579,16119.901}; - angles[]={6.2805333,2.3736129,6.2765174}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3947; - type="Land_HBarrier_Big_F"; - atlOffset=1.9073486e-006; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item183 - { - dataType="Object"; - class PositionInfo - { - position[]={14638.265,19.132378,16125.968}; - angles[]={6.2751846,2.3736129,6.2805333}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3948; - type="Land_HBarrier_Big_F"; - atlOffset=1.9073486e-006; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item184 - { - dataType="Object"; - class PositionInfo - { - position[]={14644.134,19.133461,16131.917}; - angles[]={0,2.3736129,6.2791886}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3949; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item185 - { - dataType="Object"; - class PositionInfo - { - position[]={14650.074,19.146267,16137.983}; - angles[]={0,2.3736129,6.2778587}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3950; - type="Land_HBarrier_Big_F"; - atlOffset=1.9073486e-006; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item186 - { - dataType="Object"; - class PositionInfo - { - position[]={14655.927,19.141769,16144.081}; - angles[]={6.2778587,2.3736129,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3951; - type="Land_HBarrier_Big_F"; - atlOffset=1.9073486e-006; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item187 - { - dataType="Object"; - class PositionInfo - { - position[]={14661.867,19.139015,16150.147}; - angles[]={6.2791886,2.3736129,6.2698536}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3952; - type="Land_HBarrier_Big_F"; - atlOffset=1.9073486e-006; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item188 - { - dataType="Object"; - class PositionInfo - { - position[]={14667.744,19.142754,16156.144}; - angles[]={6.2711854,2.3736129,6.2791886}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3953; - type="Land_HBarrier_Big_F"; - atlOffset=1.9073486e-006; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item189 - { - dataType="Object"; - class PositionInfo - { - position[]={14673.685,19.130173,16162.214}; - angles[]={0,2.3736129,6.2805333}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3954; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item190 - { - dataType="Object"; - class PositionInfo - { - position[]={14679.537,19.127285,16168.308}; - angles[]={0,2.3736129,6.2818937}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3955; - type="Land_HBarrier_Big_F"; - atlOffset=3.8146973e-006; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item191 - { - dataType="Object"; - class PositionInfo - { - position[]={14685.479,19.119999,16174.378}; - angles[]={0,2.3736129,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3956; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item192 - { - dataType="Object"; - class PositionInfo - { - position[]={14691.348,19.124603,16180.327}; - angles[]={0,2.3736129,6.2791886}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3957; - type="Land_HBarrier_Big_F"; - atlOffset=-1.9073486e-006; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item193 - { - dataType="Object"; - class PositionInfo - { - position[]={14697.288,19.118141,16186.394}; - angles[]={0.0012918708,2.3736129,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3958; - type="Land_HBarrier_Big_F"; - atlOffset=1.9073486e-006; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item194 - { - dataType="Object"; - class PositionInfo - { - position[]={14703.141,19.119999,16192.491}; - angles[]={0,2.3736129,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3959; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item195 - { - dataType="Object"; - class PositionInfo - { - position[]={14617.914,19.119999,16074.464}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3960; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item196 - { - dataType="Object"; - class PositionInfo - { - position[]={14623.854,19.119999,16080.53}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3961; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item197 - { - dataType="Object"; - class PositionInfo - { - position[]={14629.668,19.119999,16086.573}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3962; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item198 - { - dataType="Object"; - class PositionInfo - { - position[]={14635.573,19.119999,16092.55}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3963; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item199 - { - dataType="Object"; - class PositionInfo - { - position[]={14641.514,19.119999,16098.616}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3964; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item200 - { - dataType="Object"; - class PositionInfo - { - position[]={14647.366,19.119999,16104.714}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3965; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item201 - { - dataType="Object"; - class PositionInfo - { - position[]={14653.309,19.119999,16110.78}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=3966; - type="Land_HBarrier_Big_F"; - }; - class Item202 - { - dataType="Object"; - class PositionInfo - { - position[]={14659.177,19.119999,16116.729}; - angles[]={0,2.3736129,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3967; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item203 - { - dataType="Object"; - class PositionInfo - { - position[]={14665.117,19.119999,16122.796}; - angles[]={0,2.3736129,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3968; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item204 - { - dataType="Object"; - class PositionInfo - { - position[]={14670.97,19.119999,16128.894}; - angles[]={0,2.3736129,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3969; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item205 - { - dataType="Object"; - class PositionInfo - { - position[]={14676.91,19.119999,16134.96}; - angles[]={0,2.3736129,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3970; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item206 - { - dataType="Object"; - class PositionInfo - { - position[]={14682.787,19.119999,16140.956}; - angles[]={0,2.3736129,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3971; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item207 - { - dataType="Object"; - class PositionInfo - { - position[]={14688.728,19.119999,16147.026}; - angles[]={0,2.3736129,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3972; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item208 - { - dataType="Object"; - class PositionInfo - { - position[]={14694.58,19.121292,16153.12}; - angles[]={0,2.3736129,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3973; - type="Land_HBarrier_Big_F"; - atlOffset=0.0012931824; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item209 - { - dataType="Object"; - class PositionInfo - { - position[]={14700.521,19.119999,16159.19}; - angles[]={0,2.3736129,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3974; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item210 - { - dataType="Object"; - class PositionInfo - { - position[]={14706.391,19.119999,16165.14}; - angles[]={0,2.3736129,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3975; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item211 - { - dataType="Object"; - class PositionInfo - { - position[]={14712.331,19.119999,16171.206}; - angles[]={0,2.3736129,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3976; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item212 - { - dataType="Object"; - class PositionInfo - { - position[]={14718.184,19.119999,16177.304}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=3977; - type="Land_HBarrier_Big_F"; - }; - class Item213 - { - dataType="Object"; - class PositionInfo - { - position[]={14447.066,19.119999,15899.313}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3978; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item214 - { - dataType="Object"; - class PositionInfo - { - position[]={14452.752,19.119999,15905.137}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3979; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item215 - { - dataType="Object"; - class PositionInfo - { - position[]={14458.631,19.119999,15911.127}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3980; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item216 - { - dataType="Object"; - class PositionInfo - { - position[]={14464.5,19.120941,15917.077}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3981; - type="Land_HBarrier_Big_F"; - atlOffset=0.00094223022; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item217 - { - dataType="Object"; - class PositionInfo - { - position[]={14470.44,19.119999,15923.146}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3982; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item218 - { - dataType="Object"; - class PositionInfo - { - position[]={14476.293,19.129967,15929.241}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3983; - type="Land_HBarrier_Big_F"; - atlOffset=0.009967804; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item219 - { - dataType="Object"; - class PositionInfo - { - position[]={14482.233,19.119999,15935.312}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3984; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item220 - { - dataType="Object"; - class PositionInfo - { - position[]={14488.139,19.123661,15941.284}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3985; - type="Land_HBarrier_Big_F"; - atlOffset=0.0036621094; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item221 - { - dataType="Object"; - class PositionInfo - { - position[]={14494.079,19.119999,15947.354}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3986; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item222 - { - dataType="Object"; - class PositionInfo - { - position[]={14499.932,19.119999,15953.448}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3987; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item223 - { - dataType="Object"; - class PositionInfo - { - position[]={14505.873,19.119999,15959.519}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3988; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item224 - { - dataType="Object"; - class PositionInfo - { - position[]={14511.742,19.119999,15965.468}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3989; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item225 - { - dataType="Object"; - class PositionInfo - { - position[]={14517.684,19.127617,15971.538}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3990; - type="Land_HBarrier_Big_F"; - atlOffset=0.0076179504; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item226 - { - dataType="Object"; - class PositionInfo - { - position[]={14523.535,19.119999,15977.632}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3991; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item227 - { - dataType="Object"; - class PositionInfo - { - position[]={14529.476,19.119999,15983.702}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3992; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item228 - { - dataType="Object"; - class PositionInfo - { - position[]={14535.353,19.119999,15989.694}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3993; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item229 - { - dataType="Object"; - class PositionInfo - { - position[]={14541.293,19.119999,15995.765}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3994; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item230 - { - dataType="Object"; - class PositionInfo - { - position[]={14547.146,19.119999,16001.858}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3995; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item231 - { - dataType="Object"; - class PositionInfo - { - position[]={14553.087,19.119999,16007.929}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3996; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item232 - { - dataType="Object"; - class PositionInfo - { - position[]={14558.956,19.119999,16013.878}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3997; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item233 - { - dataType="Object"; - class PositionInfo - { - position[]={14564.896,19.133324,16019.948}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3998; - type="Land_HBarrier_Big_F"; - atlOffset=0.013324738; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item234 - { - dataType="Object"; - class PositionInfo - { - position[]={14570.749,19.119999,16026.042}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=3999; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item235 - { - dataType="Object"; - class PositionInfo - { - position[]={14576.689,19.12133,16032.112}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4000; - type="Land_HBarrier_Big_F"; - atlOffset=0.0013313293; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item236 - { - dataType="Object"; - class PositionInfo - { - position[]={14582.518,19.133003,16038.116}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4001; - type="Land_HBarrier_Big_F"; - atlOffset=0.013004303; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item237 - { - dataType="Object"; - class PositionInfo - { - position[]={14588.458,19.119999,16044.187}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4002; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item238 - { - dataType="Object"; - class PositionInfo - { - position[]={14594.311,19.119999,16050.28}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4003; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item239 - { - dataType="Object"; - class PositionInfo - { - position[]={14600.252,19.123962,16056.351}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4004; - type="Land_HBarrier_Big_F"; - atlOffset=0.0039634705; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item240 - { - dataType="Object"; - class PositionInfo - { - position[]={14606.121,19.119999,16062.3}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4005; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item241 - { - dataType="Object"; - class PositionInfo - { - position[]={14612.062,19.119999,16068.366}; - angles[]={0,2.3736129,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4006; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item242 - { - dataType="Object"; - class PositionInfo - { - position[]={14631.082,19.119999,16061.952}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4007; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item243 - { - dataType="Object"; - class PositionInfo - { - position[]={14637.022,19.119999,16068.019}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4008; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item244 - { - dataType="Object"; - class PositionInfo - { - position[]={14642.836,19.119999,16074.062}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4009; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item245 - { - dataType="Object"; - class PositionInfo - { - position[]={14648.741,19.119999,16080.038}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4010; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item246 - { - dataType="Object"; - class PositionInfo - { - position[]={14654.682,19.119999,16086.104}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4011; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item247 - { - dataType="Object"; - class PositionInfo - { - position[]={14660.534,19.119999,16092.202}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4012; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item248 - { - dataType="Object"; - class PositionInfo - { - position[]={14666.476,19.119999,16098.269}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=4013; - type="Land_HBarrier_Big_F"; - }; - class Item249 - { - dataType="Object"; - class PositionInfo - { - position[]={14672.345,19.119999,16104.218}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4014; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item250 - { - dataType="Object"; - class PositionInfo - { - position[]={14678.285,19.119999,16110.284}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4015; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item251 - { - dataType="Object"; - class PositionInfo - { - position[]={14684.138,19.119999,16116.382}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4016; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item252 - { - dataType="Object"; - class PositionInfo - { - position[]={14690.078,19.119999,16122.448}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4017; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item253 - { - dataType="Object"; - class PositionInfo - { - position[]={14695.955,19.119999,16128.444}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4018; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item254 - { - dataType="Object"; - class PositionInfo - { - position[]={14701.896,19.119999,16134.515}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4019; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item255 - { - dataType="Object"; - class PositionInfo - { - position[]={14707.748,19.119999,16140.608}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4020; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item256 - { - dataType="Object"; - class PositionInfo - { - position[]={14713.689,19.119999,16146.679}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4021; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item257 - { - dataType="Object"; - class PositionInfo - { - position[]={14719.559,19.119999,16152.628}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4022; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item258 - { - dataType="Object"; - class PositionInfo - { - position[]={14725.499,19.119999,16158.694}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4023; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item259 - { - dataType="Object"; - class PositionInfo - { - position[]={14731.352,19.119999,16164.792}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4024; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item260 - { - dataType="Object"; - class PositionInfo - { - position[]={14459.995,19.119999,15886.354}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4025; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item261 - { - dataType="Object"; - class PositionInfo - { - position[]={14465.857,19.119999,15892.546}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4026; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item262 - { - dataType="Object"; - class PositionInfo - { - position[]={14471.799,19.119999,15898.615}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4027; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item263 - { - dataType="Object"; - class PositionInfo - { - position[]={14477.668,19.120075,15904.565}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4028; - type="Land_HBarrier_Big_F"; - atlOffset=7.6293945e-005; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item264 - { - dataType="Object"; - class PositionInfo - { - position[]={14483.608,19.119999,15910.634}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4029; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item265 - { - dataType="Object"; - class PositionInfo - { - position[]={14489.461,19.126919,15916.729}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4030; - type="Land_HBarrier_Big_F"; - atlOffset=0.0069198608; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item266 - { - dataType="Object"; - class PositionInfo - { - position[]={14495.401,19.119999,15922.799}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4031; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item267 - { - dataType="Object"; - class PositionInfo - { - position[]={14501.307,19.122108,15928.772}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4032; - type="Land_HBarrier_Big_F"; - atlOffset=0.0021095276; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item268 - { - dataType="Object"; - class PositionInfo - { - position[]={14507.247,19.119999,15934.843}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4033; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item269 - { - dataType="Object"; - class PositionInfo - { - position[]={14513.101,19.120102,15940.937}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4034; - type="Land_HBarrier_Big_F"; - atlOffset=0.00010299683; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item270 - { - dataType="Object"; - class PositionInfo - { - position[]={14519.041,19.119999,15947.007}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4035; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item271 - { - dataType="Object"; - class PositionInfo - { - position[]={14524.91,19.119999,15952.956}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4036; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item272 - { - dataType="Object"; - class PositionInfo - { - position[]={14530.851,19.125443,15959.026}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4037; - type="Land_HBarrier_Big_F"; - atlOffset=0.005443573; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item273 - { - dataType="Object"; - class PositionInfo - { - position[]={14536.703,19.119999,15965.12}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4038; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item274 - { - dataType="Object"; - class PositionInfo - { - position[]={14542.644,19.119999,15971.19}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4039; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item275 - { - dataType="Object"; - class PositionInfo - { - position[]={14548.521,19.119999,15977.183}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4040; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item276 - { - dataType="Object"; - class PositionInfo - { - position[]={14554.461,19.119999,15983.253}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4041; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item277 - { - dataType="Object"; - class PositionInfo - { - position[]={14560.313,19.119999,15989.347}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4042; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item278 - { - dataType="Object"; - class PositionInfo - { - position[]={14566.255,19.119999,15995.417}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4043; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item279 - { - dataType="Object"; - class PositionInfo - { - position[]={14572.124,19.119999,16001.366}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4044; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item280 - { - dataType="Object"; - class PositionInfo - { - position[]={14578.064,19.130341,16007.437}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4045; - type="Land_HBarrier_Big_F"; - atlOffset=0.010341644; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item281 - { - dataType="Object"; - class PositionInfo - { - position[]={14583.917,19.119999,16013.53}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4046; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item282 - { - dataType="Object"; - class PositionInfo - { - position[]={14589.857,19.119999,16019.601}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4047; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item283 - { - dataType="Object"; - class PositionInfo - { - position[]={14595.686,19.132042,16025.604}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4048; - type="Land_HBarrier_Big_F"; - atlOffset=0.012042999; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item284 - { - dataType="Object"; - class PositionInfo - { - position[]={14601.626,19.119999,16031.675}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4049; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item285 - { - dataType="Object"; - class PositionInfo - { - position[]={14607.479,19.119999,16037.769}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4050; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item286 - { - dataType="Object"; - class PositionInfo - { - position[]={14613.42,19.122269,16043.839}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4051; - type="Land_HBarrier_Big_F"; - atlOffset=0.0022697449; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item287 - { - dataType="Object"; - class PositionInfo - { - position[]={14619.289,19.119999,16049.788}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4052; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item288 - { - dataType="Object"; - class PositionInfo - { - position[]={14625.229,19.119999,16055.854}; - angles[]={0,2.3736129,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4053; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item289 - { - dataType="Object"; - class PositionInfo - { - position[]={14443.71,17.91,15887.601}; - angles[]={0,5.5084257,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=4054; - type="CUP_A2_Road_PMC_asf1_02000"; - }; - class Item290 - { - dataType="Object"; - class PositionInfo - { - position[]={14450.824,20.803503,15885.337}; - angles[]={0,5.5049253,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.60000002; - disableSimulation=1; - }; - id=4055; - type="Land_CampingTable_small_F"; - atlOffset=0.0013027191; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item291 - { - dataType="Object"; - class PositionInfo - { - position[]={14437.047,20.681053,15891.192}; - angles[]={0,5.5055013,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.60000002; - init="call{[""AmmoboxInit"",[this,true]] call BIS_fnc_arsenal;}"; - disableSimulation=1; - }; - id=4056; - type="Box_NATO_Ammo_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="[[[[],[]],[[],[]],[[],[]],[[],[]]],true]"; - }; - }; - }; - class Attribute2 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=3; - }; - }; - class Item292 - { - dataType="Object"; - class PositionInfo - { - position[]={14466.754,13.541311,15839.546}; - angles[]={6.0615535,5.5222297,6.0040054}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=4057; - type="CUP_A2_Road_asf3_1_1000"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item293 - { - dataType="Object"; - class PositionInfo - { - position[]={14455.602,16.187201,15851.066}; - angles[]={6.2113094,5.5222297,6.2285728}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=4058; - type="CUP_A2_Road_asf3_1_1000"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item294 - { - dataType="Object"; - class PositionInfo - { - position[]={14443.64,17.91,15863.678}; - angles[]={0,5.5222297,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=4059; - type="CUP_A2_Road_asf3_1_1000"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item295 - { - dataType="Object"; - class PositionInfo - { - position[]={14431.709,17.91,15876.263}; - angles[]={0,5.5222297,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=4060; - type="CUP_A2_Road_asf3_1_1000"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item296 - { - dataType="Object"; - class PositionInfo - { - position[]={14439.083,17.91,15879.299}; - angles[]={0,5.5084257,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=4061; - type="CUP_A2_Road_PMC_asf1_02000"; - }; - class Item297 - { - dataType="Object"; - class PositionInfo - { - position[]={14419.904,17.899624,15888.921}; - angles[]={0,5.5222297,0.0039967569}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=4062; - type="CUP_A2_Road_asf3_1_1000"; - atlOffset=1.9073486e-006; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item298 - { - dataType="Object"; - class PositionInfo - { - position[]={14407.863,17.801456,15901.462}; - angles[]={0,5.5222216,0.0039968039}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=4063; - type="CUP_A2_Road_asf3_1_1000"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item299 - { - dataType="Object"; - class PositionInfo - { - position[]={14431.59,17.909801,15900.147}; - angles[]={0.0012915437,5.5084333,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4064; - type="CUP_A2_Road_PMC_asf1_02000"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item300 - { - dataType="Object"; - class PositionInfo - { - position[]={14455.9,17.63747,15875.123}; - angles[]={6.1690183,5.5084257,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=4065; - type="CUP_A2_Road_PMC_asf1_02000"; - }; - class Item301 - { - dataType="Object"; - class PositionInfo - { - position[]={14467.99,16.145155,15862.628}; - angles[]={6.2378831,5.5084257,6.2818484}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=4066; - type="CUP_A2_Road_PMC_asf1_02000"; - }; - class Item302 - { - dataType="Object"; - class PositionInfo - { - position[]={14479.938,13.76926,15850.375}; - angles[]={6.0413527,5.5084333,6.0717211}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=4067; - type="CUP_A2_Road_PMC_asf1_02000"; - atlOffset=-9.5367432e-007; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item303 - { - dataType="Object"; - class PositionInfo - { - position[]={14455.331,22.0725,15883.067}; - angles[]={0,0.7980693,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4069; - type="Land_Shoot_House_Wall_Prone_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item304 - { - dataType="Object"; - class PositionInfo - { - position[]={14446.952,22.042038,15889.606}; - angles[]={0,0.78539819,0}; - }; - side="Empty"; - flags=1; - class Attributes - { - disableSimulation=1; - }; - id=4070; - type="Land_WoodenShelter_01_F"; - atlOffset=0.49304199; - class CustomAttributes - { - class Attribute0 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item305 - { - dataType="Object"; - class PositionInfo - { - position[]={14444.243,22.046782,15892.367}; - angles[]={0,0.78539819,0}; - }; - side="Empty"; - flags=1; - class Attributes - { - disableSimulation=1; - }; - id=4071; - type="Land_WoodenShelter_01_F"; - atlOffset=0.50478554; - class CustomAttributes - { - class Attribute0 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item306 - { - dataType="Object"; - class PositionInfo - { - position[]={14449.706,22.016151,15886.81}; - angles[]={0,0.78539819,0}; - }; - side="Empty"; - flags=1; - class Attributes - { - disableSimulation=1; - }; - id=4072; - type="Land_WoodenShelter_01_F"; - atlOffset=0.45615578; - class CustomAttributes - { - class Attribute0 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item307 - { - dataType="Object"; - class PositionInfo - { - position[]={14452.419,22.043442,15884.05}; - angles[]={0,0.78539819,0}; - }; - side="Empty"; - flags=1; - class Attributes - { - disableSimulation=1; - }; - id=4073; - type="Land_WoodenShelter_01_F"; - atlOffset=0.47844505; - class CustomAttributes - { - class Attribute0 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item308 - { - dataType="Object"; - class PositionInfo - { - position[]={14430.503,22.045048,15906.275}; - angles[]={0,0.78539819,0}; - }; - side="Empty"; - flags=1; - class Attributes - { - disableSimulation=1; - }; - id=4074; - type="Land_WoodenShelter_01_F"; - atlOffset=0.49299049; - class CustomAttributes - { - class Attribute0 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item309 - { - dataType="Object"; - class PositionInfo - { - position[]={14433.212,22.038239,15903.515}; - angles[]={0,0.78539819,0}; - }; - side="Empty"; - flags=1; - class Attributes - { - disableSimulation=1; - }; - id=4075; - type="Land_WoodenShelter_01_F"; - atlOffset=0.46865654; - class CustomAttributes - { - class Attribute0 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item310 - { - dataType="Object"; - class PositionInfo - { - position[]={14435.966,22.039974,15900.718}; - angles[]={0,0.78539819,0}; - }; - side="Empty"; - flags=1; - class Attributes - { - disableSimulation=1; - }; - id=4076; - type="Land_WoodenShelter_01_F"; - atlOffset=0.46747208; - class CustomAttributes - { - class Attribute0 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item311 - { - dataType="Object"; - class PositionInfo - { - position[]={14438.679,22.064247,15897.958}; - angles[]={0,0.78539819,0}; - }; - side="Empty"; - flags=1; - class Attributes - { - disableSimulation=1; - }; - id=4077; - type="Land_WoodenShelter_01_F"; - atlOffset=0.51825142; - class CustomAttributes - { - class Attribute0 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item312 - { - dataType="Object"; - class PositionInfo - { - position[]={14437.331,20.086805,15887.194}; - angles[]={0,5.511591,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=4080; - type="FlagCarrierGermany_EP1"; - atlOffset=-1.7999992; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item313 - { - dataType="Object"; - class PositionInfo - { - position[]={14434.61,20.086805,15889.929}; - angles[]={0,4.746623,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=4083; - type="FlagCarrierNATO_EP1"; - atlOffset=-1.7999992; - class CustomAttributes - { - class Attribute0 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item314 - { - dataType="Object"; - class PositionInfo - { - position[]={14717.309,19.119999,16183.765}; - angles[]={0,3.9384863,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4084; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item315 - { - dataType="Object"; - class PositionInfo - { - position[]={14711.205,19.119999,16189.897}; - angles[]={0,3.9277396,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4085; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item316 - { - dataType="Object"; - class PositionInfo - { - position[]={14717.295,21.307793,16183.796}; - angles[]={0,3.9384863,0}; - }; - side="Empty"; - class Attributes - { - disableSimulation=1; - }; - id=4086; - type="Land_HBarrier_Big_F"; - atlOffset=2.1877937; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item317 - { - dataType="Object"; - class PositionInfo - { - position[]={14711.191,21.30032,16189.929}; - angles[]={0,3.9277413,0}; - }; - side="Empty"; - class Attributes - { - disableSimulation=1; - }; - id=4087; - type="Land_HBarrier_Big_F"; - atlOffset=2.1803207; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item318 - { - dataType="Object"; - class PositionInfo - { - position[]={14443.802,17.768259,15880.486}; - angles[]={0,3.9339211,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=4088; - type="Land_GH_Stairs_F"; - atlOffset=-1.6440659; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item319 - { - dataType="Object"; - class PositionInfo - { - position[]={14465.443,20.804773,15872.756}; - angles[]={0,0.79287481,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=1; - disableSimulation=1; - }; - id=4089; - type="Land_BagFence_Long_F"; - }; - class Item320 - { - dataType="Object"; - class PositionInfo - { - position[]={14463.322,20.804773,15874.849}; - angles[]={0,3.9365618,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=1; - disableSimulation=1; - }; - id=4090; - type="Land_BagFence_Long_F"; - }; - class Item321 - { - dataType="Object"; - class PositionInfo - { - position[]={14467.524,20.804773,15870.588}; - angles[]={0,3.9365618,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=1; - disableSimulation=1; - }; - id=4091; - type="Land_BagFence_Long_F"; - }; - class Item322 - { - dataType="Object"; - class PositionInfo - { - position[]={14477.16,20.804773,15860.776}; - angles[]={0,3.9365618,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=1; - disableSimulation=1; - }; - id=4092; - type="Land_BagFence_Long_F"; - }; - class Item323 - { - dataType="Object"; - class PositionInfo - { - position[]={14475.064,20.804773,15862.921}; - angles[]={0,0.79287481,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=1; - disableSimulation=1; - }; - id=4093; - type="Land_BagFence_Long_F"; - }; - class Item324 - { - dataType="Object"; - class PositionInfo - { - position[]={14457.141,20.668726,15870.874}; - angles[]={0,5.5069194,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.60000002; - init="call{[""AmmoboxInit"",[this,true]] call BIS_fnc_arsenal;}"; - disableSimulation=1; - }; - id=4094; - type="Box_NATO_Ammo_F"; - atlOffset=0.0010585785; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="[[[[],[]],[[],[]],[[],[]],[[],[]]],true]"; - }; - }; - }; - class Attribute2 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=3; - }; - }; - class Item325 - { - dataType="Marker"; - position[]={14727.46,0,16173.65}; - name="400m_MK"; - type="Empty"; - angle=140.92299; - id=4095; - atlOffset=-17.91; - }; - class Item326 - { - dataType="Object"; - class PositionInfo - { - position[]={14426.973,17.91,15891.674}; - angles[]={0,5.5084257,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=4096; - type="CUP_A2_Road_PMC_asf1_02000"; - }; - class Item327 - { - dataType="Object"; - class PositionInfo - { - position[]={14432.642,17.762325,15891.901}; - angles[]={0,3.926991,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=4097; - type="Land_GH_Stairs_F"; - atlOffset=-1.6499996; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item328 - { - dataType="Object"; - class PositionInfo - { - position[]={14724.307,19.119999,16183.601}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=4098; - type="Land_HBarrier_Big_F"; - }; - class Item329 - { - dataType="Object"; - class PositionInfo - { - position[]={14737.127,19.119999,16170.86}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4099; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item330 - { - dataType="Marker"; - position[]={14657.446,0,16102.277}; - name="300m_MK"; - type="Empty"; - angle=45; - id=4100; - atlOffset=-17.91; - }; - class Item331 - { - dataType="Marker"; - position[]={14587.685,0,16030.629}; - name="200m_MK"; - type="Empty"; - angle=45; - id=4101; - atlOffset=-17.91; - }; - class Item332 - { - dataType="Marker"; - position[]={14517.814,0,15959.118}; - name="100m_MK"; - type="Empty"; - angle=45; - id=4102; - atlOffset=-17.91; - }; - class Item333 - { - dataType="Marker"; - position[]={14468.292,0,15908.762}; - name="30m_MK"; - type="Empty"; - angle=45; - id=4103; - atlOffset=-17.91; - }; - class Item334 - { - dataType="Object"; - class PositionInfo - { - position[]={14743.078,19.119999,16176.948}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4104; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item335 - { - dataType="Object"; - class PositionInfo - { - position[]={14749.019,19.119999,16183.015}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4105; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item336 - { - dataType="Object"; - class PositionInfo - { - position[]={14754.896,19.119999,16189.011}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4106; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item337 - { - dataType="Object"; - class PositionInfo - { - position[]={14760.836,19.119999,16195.081}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4107; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item338 - { - dataType="Object"; - class PositionInfo - { - position[]={14766.688,19.119999,16201.175}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4108; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item339 - { - dataType="Object"; - class PositionInfo - { - position[]={14772.673,19.119999,16207.351}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4109; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item340 - { - dataType="Object"; - class PositionInfo - { - position[]={14778.613,19.119999,16213.417}; - angles[]={0,2.3736129,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4110; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item341 - { - dataType="Object"; - class PositionInfo - { - position[]={14784.49,19.119999,16219.413}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4111; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item342 - { - dataType="Object"; - class PositionInfo - { - position[]={14790.431,19.119999,16225.483}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4112; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item343 - { - dataType="Object"; - class PositionInfo - { - position[]={14796.283,19.119999,16231.577}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4113; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item344 - { - dataType="Object"; - class PositionInfo - { - position[]={14802.328,19.119999,16237.585}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4114; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item345 - { - dataType="Object"; - class PositionInfo - { - position[]={14808.269,19.119999,16243.651}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4115; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item346 - { - dataType="Object"; - class PositionInfo - { - position[]={14814.146,19.119999,16249.647}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4116; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item347 - { - dataType="Object"; - class PositionInfo - { - position[]={14820.086,19.119999,16255.718}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4117; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item348 - { - dataType="Object"; - class PositionInfo - { - position[]={14825.938,19.119999,16261.812}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4118; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item349 - { - dataType="Object"; - class PositionInfo - { - position[]={14831.863,19.119999,16267.894}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4119; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item350 - { - dataType="Object"; - class PositionInfo - { - position[]={14837.74,19.119999,16273.89}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4120; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item351 - { - dataType="Object"; - class PositionInfo - { - position[]={14843.681,19.119999,16279.96}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4121; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item352 - { - dataType="Object"; - class PositionInfo - { - position[]={14849.533,19.119999,16286.054}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4122; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item353 - { - dataType="Object"; - class PositionInfo - { - position[]={14855.578,19.119999,16292.062}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4123; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item354 - { - dataType="Object"; - class PositionInfo - { - position[]={14861.519,19.119999,16298.128}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4124; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item355 - { - dataType="Object"; - class PositionInfo - { - position[]={14867.396,19.119999,16304.124}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4125; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item356 - { - dataType="Object"; - class PositionInfo - { - position[]={14873.336,19.119999,16310.194}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4126; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item357 - { - dataType="Object"; - class PositionInfo - { - position[]={14730.077,19.119999,16189.679}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4127; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item358 - { - dataType="Object"; - class PositionInfo - { - position[]={14736.018,19.119999,16195.745}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4128; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item359 - { - dataType="Object"; - class PositionInfo - { - position[]={14741.895,19.119999,16201.741}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4129; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item360 - { - dataType="Object"; - class PositionInfo - { - position[]={14747.835,19.119999,16207.812}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4130; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item361 - { - dataType="Object"; - class PositionInfo - { - position[]={14753.688,19.119999,16213.905}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4131; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item362 - { - dataType="Object"; - class PositionInfo - { - position[]={14759.672,19.119999,16220.081}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4132; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item363 - { - dataType="Object"; - class PositionInfo - { - position[]={14765.612,19.119999,16226.147}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4133; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item364 - { - dataType="Object"; - class PositionInfo - { - position[]={14771.489,19.119999,16232.144}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4134; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item365 - { - dataType="Object"; - class PositionInfo - { - position[]={14777.43,19.119999,16238.214}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4135; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item366 - { - dataType="Object"; - class PositionInfo - { - position[]={14783.282,19.119999,16244.308}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4136; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item367 - { - dataType="Object"; - class PositionInfo - { - position[]={14789.327,19.119999,16250.315}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4137; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item368 - { - dataType="Object"; - class PositionInfo - { - position[]={14795.268,19.119999,16256.382}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4138; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item369 - { - dataType="Object"; - class PositionInfo - { - position[]={14801.145,19.119999,16262.378}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4139; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item370 - { - dataType="Object"; - class PositionInfo - { - position[]={14807.085,19.119999,16268.448}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4140; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item371 - { - dataType="Object"; - class PositionInfo - { - position[]={14812.938,19.119999,16274.542}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4141; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item372 - { - dataType="Object"; - class PositionInfo - { - position[]={14818.862,19.119999,16280.624}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4142; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item373 - { - dataType="Object"; - class PositionInfo - { - position[]={14824.739,19.119999,16286.62}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4143; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item374 - { - dataType="Object"; - class PositionInfo - { - position[]={14830.68,19.119999,16292.69}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4144; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item375 - { - dataType="Object"; - class PositionInfo - { - position[]={14836.532,19.119999,16298.784}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4145; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item376 - { - dataType="Object"; - class PositionInfo - { - position[]={14842.577,19.119999,16304.792}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4146; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item377 - { - dataType="Object"; - class PositionInfo - { - position[]={14848.518,19.119999,16310.858}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4147; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item378 - { - dataType="Object"; - class PositionInfo - { - position[]={14854.395,19.119999,16316.854}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4148; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item379 - { - dataType="Object"; - class PositionInfo - { - position[]={14860.335,19.119999,16322.925}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4149; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item380 - { - dataType="Marker"; - position[]={14797.096,0,16245.43}; - name="500m_MK"; - type="Empty"; - angle=148.70595; - id=4150; - atlOffset=-17.91; - }; - class Item381 - { - dataType="Marker"; - position[]={14866.77,0,16317.11}; - name="600m_MK"; - type="Empty"; - angle=45; - id=4151; - atlOffset=-17.91; - }; - class Item382 - { - dataType="Object"; - class PositionInfo - { - position[]={14476.719,11.805027,15828.989}; - angles[]={6.2805109,5.5222297,0.019996032}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=4153; - type="CUP_A2_Road_asf3_1_1000"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item383 - { - dataType="Object"; - class PositionInfo - { - position[]={14483.86,20.804773,15853.913}; - angles[]={0,3.9365618,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=1; - disableSimulation=1; - }; - id=4155; - type="Land_BagFence_Long_F"; - }; - class Item384 - { - dataType="Object"; - class PositionInfo - { - position[]={14481.798,20.804773,15856.071}; - angles[]={0,3.9365618,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=1; - disableSimulation=1; - }; - id=4156; - type="Land_BagFence_Long_F"; - }; - class Item385 - { - dataType="Marker"; - position[]={14657.674,0,16102.058}; - name="sniper range_4"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorRed"; - fillName="DiagGrid"; - a=300; - b=8; - angle=134.29999; - id=4157; - atlOffset=-17.91; - }; - class Item386 - { - dataType="Marker"; - position[]={15079.46,0,14915.406}; - name="USS_Freedom"; - text="USS Freedom"; - type="mil_box"; - colorName="ColorBlue"; - angle=317.70996; - id=4158; - atlOffset=57.362812; - }; - class Item387 - { - dataType="Marker"; - position[]={14188.414,0,16271.27}; - name="Adler_Base"; - text="Adler Base"; - type="mil_box"; - colorName="ColorBlue"; - id=4159; - atlOffset=-19.587086; - }; - class Item388 - { - dataType="Marker"; - position[]={14431.732,0,15885.128}; - name="Shooting_Range"; - text="Shooting Range"; - type="mil_box"; - colorName="ColorBlue"; - angle=180; - id=4160; - atlOffset=-17.91; - }; - class Item389 - { - dataType="Marker"; - position[]={15116.135,0,17224.684}; - name="CQB_Area"; - text="Indoor Range"; - type="mil_box"; - colorName="ColorBlue"; - id=4161; - atlOffset=-17.91; - }; - class Item390 - { - dataType="Object"; - class PositionInfo - { - position[]={15083.762,24.002707,14907.122}; - angles[]={0,0.17675091,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.60000002; - disableSimulation=1; - }; - id=4164; - type="Land_CampingTable_F"; - atlOffset=0.063777924; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item391 - { - dataType="Object"; - class PositionInfo - { - position[]={14483.558,20.804773,15851.871}; - angles[]={0,5.5207224,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=1; - disableSimulation=1; - }; - id=4168; - type="Land_BagFence_Long_F"; - }; - class Item392 - { - dataType="Trigger"; - position[]={14447.45,17.91,15871.563}; - angle=3.9295545; - class Attributes - { - condition="call{this}"; - onActivation="call{anz1_02 hideObjectGlobal false;" \n "anz2_02 hideObjectGlobal false;" \n "anz3_02 hideObjectGlobal false;" \n "anz4_02 hideObjectGlobal false;" \n """area_mk_02"" setMarkerColor ""Colorred"";" \n "}"; - onDeactivation="call{anz1_02 hideObjectGlobal true;" \n "anz2_02 hideObjectGlobal true;" \n "anz3_02 hideObjectGlobal true;" \n "anz4_02 hideObjectGlobal true;" \n """area_mk_02"" setMarkerColor ""Colorblack"";" \n "_nul = [] execVM ""scripts\simmax\targets\rangepop_2.sqf"";" \n "_nul = [] execVM ""scripts\simmax\targets\rangepop_1.sqf"";}"; - sizeA=42; - sizeB=15; - sizeC=4; - repeatable=1; - activationBy="ANYPLAYER"; - isRectangle=1; - }; - id=4169; - type="EmptyDetector"; - }; - class Item393 - { - dataType="Object"; - class PositionInfo - { - position[]={14441.375,20.903486,15894.165}; - angles[]={0,4.0882764,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=4178; - type="Land_CampingChair_V2_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item394 - { - dataType="Object"; - class PositionInfo - { - position[]={14440.692,20.903486,15894.87}; - angles[]={0,3.9690008,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=4179; - type="Land_CampingChair_V2_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item395 - { - dataType="Object"; - class PositionInfo - { - position[]={14454.247,20.903486,15882.107}; - angles[]={0,3.8076627,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=4180; - type="Land_CampingChair_V2_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item396 - { - dataType="Object"; - class PositionInfo - { - position[]={14469.92,20.891726,15864.417}; - angles[]={0,3.9122777,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=4181; - type="Land_CampingChair_V2_F"; - atlOffset=0.00029754639; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item397 - { - dataType="Object"; - class PositionInfo - { - position[]={15161.96,15.050144,16594.029}; - angles[]={0,0.76260418,0}; - }; - side="Empty"; - flags=1; - class Attributes - { - disableSimulation=1; - aiRadarUsage=-1750122382; - }; - id=4182; - type="Land_PierConcrete_01_end_F"; - atlOffset=1.6110001; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item398 - { - dataType="Object"; - class PositionInfo - { - position[]={15158.455,21.219072,16592.543}; - angles[]={0,0.78695154,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - name="t22"; - }; - id=4183; - type="TargetP_Inf_F"; - atlOffset=0.00048446655; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item399 - { - dataType="Object"; - class PositionInfo - { - position[]={15160.533,21.219072,16590.508}; - angles[]={0,0.79777253,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - name="t23"; - }; - id=4184; - type="TargetP_Inf3_Acc1_F"; - atlOffset=0.00048446655; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item400 - { - dataType="Object"; - class PositionInfo - { - position[]={15307.54,15.758144,16731.488}; - angles[]={0,0.76260418,0}; - }; - side="Empty"; - flags=1; - class Attributes - { - disableSimulation=1; - aiRadarUsage=-1750122382; - }; - id=4185; - type="Land_PierConcrete_01_end_F"; - atlOffset=2.3190002; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item401 - { - dataType="Object"; - class PositionInfo - { - position[]={15304.035,21.927073,16730.002}; - angles[]={0,0.78695154,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - name="t24"; - }; - id=4186; - type="TargetP_Inf_F"; - atlOffset=0.00048446655; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item402 - { - dataType="Object"; - class PositionInfo - { - position[]={15306.113,21.927073,16727.967}; - angles[]={0,0.79777253,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - name="t25"; - }; - id=4187; - type="TargetP_Inf3_Acc1_F"; - atlOffset=0.00048446655; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item403 - { - dataType="Object"; - class PositionInfo - { - position[]={15453.898,16.610777,16867.771}; - angles[]={0,0.76260418,0}; - }; - side="Empty"; - flags=1; - class Attributes - { - disableSimulation=1; - aiRadarUsage=-1750122382; - }; - id=4188; - type="Land_PierConcrete_01_end_F"; - atlOffset=2.2999992; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item404 - { - dataType="Object"; - class PositionInfo - { - position[]={15450.394,22.77879,16866.285}; - angles[]={0,0.78695154,0}; - }; - side="Empty"; - class Attributes - { - name="t26"; - }; - id=4189; - type="TargetP_Inf_F"; - atlOffset=3.1000004; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item405 - { - dataType="Object"; - class PositionInfo - { - position[]={15452.472,22.779718,16864.25}; - angles[]={0,0.79777253,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - name="t27"; - }; - id=4190; - type="TargetP_Inf3_Acc1_F"; - atlOffset=0.00049972534; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item406 - { - dataType="Object"; - class PositionInfo - { - position[]={15750.988,17.682709,17135.16}; - angles[]={0,0.76260418,0}; - }; - side="Empty"; - flags=1; - class Attributes - { - disableSimulation=1; - aiRadarUsage=-1750122382; - }; - id=4191; - type="Land_PierConcrete_01_end_F"; - atlOffset=5.2968731; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item407 - { - dataType="Object"; - class PositionInfo - { - position[]={15747.485,23.850534,17133.674}; - angles[]={0,0.78695154,0}; - }; - side="Empty"; - class Attributes - { - name="t30"; - }; - id=4192; - type="TargetP_Inf_F"; - atlOffset=6.1210022; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item408 - { - dataType="Object"; - class PositionInfo - { - position[]={15749.673,23.851213,17131.74}; - angles[]={0,0.79777253,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - name="t31"; - }; - id=4193; - type="TargetP_Inf3_Acc1_F"; - atlOffset=6.1035156e-005; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item409 - { - dataType="Object"; - class PositionInfo - { - position[]={15602.185,17.325935,17002.25}; - angles[]={0,0.76260418,0}; - }; - side="Empty"; - flags=1; - class Attributes - { - disableSimulation=1; - aiRadarUsage=-1750122382; - }; - id=4194; - type="Land_PierConcrete_01_end_F"; - atlOffset=2.5690022; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item410 - { - dataType="Object"; - class PositionInfo - { - position[]={15598.68,23.493969,17000.764}; - angles[]={0,0.78695154,0}; - }; - side="Empty"; - class Attributes - { - name="t28"; - }; - id=4195; - type="TargetP_Inf_F"; - atlOffset=3.3109989; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item411 - { - dataType="Object"; - class PositionInfo - { - position[]={15600.758,23.494013,16998.729}; - angles[]={0,0.79777253,0}; - }; - side="Empty"; - class Attributes - { - name="t29"; - }; - id=4196; - type="TargetP_Inf3_Acc1_F"; - atlOffset=3.3039989; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item412 - { - dataType="Object"; - class PositionInfo - { - position[]={15017.319,14.800144,16454.826}; - angles[]={0,0.76260418,0}; - }; - side="Empty"; - flags=1; - class Attributes - { - disableSimulation=1; - aiRadarUsage=-1750122382; - }; - id=4199; - type="Land_PierConcrete_01_end_F"; - atlOffset=1.3610001; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item413 - { - dataType="Object"; - class PositionInfo - { - position[]={15013.814,20.968073,16453.34}; - angles[]={0,0.78695154,0}; - }; - side="Empty"; - class Attributes - { - name="t20"; - }; - id=4200; - type="TargetP_Inf_F"; - atlOffset=2.2000008; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item414 - { - dataType="Object"; - class PositionInfo - { - position[]={15015.893,20.968073,16451.305}; - angles[]={0,0.79777253,0}; - }; - side="Empty"; - class Attributes - { - name="t21"; - }; - id=4201; - type="TargetP_Inf3_Acc1_F"; - atlOffset=2.2000008; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item415 - { - dataType="Object"; - class PositionInfo - { - position[]={14469.1,21.899479,15867.084}; - angles[]={0,0.78539819,0}; - }; - side="Empty"; - flags=1; - class Attributes - { - disableSimulation=1; - }; - id=4202; - type="Land_WoodenShelter_01_F"; - atlOffset=0.3234024; - class CustomAttributes - { - class Attribute0 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item416 - { - dataType="Object"; - class PositionInfo - { - position[]={14444.771,20.917261,15882.791}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4203; - type="Land_Bollard_01_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item417 - { - dataType="Object"; - class PositionInfo - { - position[]={14467.639,20.83202,15870.044}; - angles[]={0,0.82349867,0}; - }; - side="Empty"; - flags=1; - class Attributes - { - disableSimulation=1; - }; - id=4204; - type="SignAd_SponsorS_Redburger_F"; - atlOffset=3.2110004; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\SST_10.paa"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item418 - { - dataType="Object"; - class PositionInfo - { - position[]={14468.197,-3.4536381,15864.515}; - angles[]={0,3.9356649,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=4205; - type="Land_nav_pier_m_F"; - atlOffset=-1.8099995; - class CustomAttributes - { - class Attribute0 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item419 - { - dataType="Object"; - class PositionInfo - { - position[]={14471.727,21.845995,15864.464}; - angles[]={0,0.78539819,0}; - }; - side="Empty"; - flags=1; - class Attributes - { - disableSimulation=1; - }; - id=4206; - type="Land_WoodenShelter_01_F"; - atlOffset=0.29799652; - class CustomAttributes - { - class Attribute0 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item420 - { - dataType="Object"; - class PositionInfo - { - position[]={14446.057,20.917261,15881.463}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4207; - type="Land_Bollard_01_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item421 - { - dataType="Object"; - class PositionInfo - { - position[]={14434.868,20.917261,15892.857}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4208; - type="Land_Bollard_01_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item422 - { - dataType="Object"; - class PositionInfo - { - position[]={14433.623,20.914465,15894.097}; - }; - side="Empty"; - class Attributes - { - disableSimulation=1; - }; - id=4209; - type="Land_Bollard_01_F"; - atlOffset=2.4842033; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item423 - { - dataType="Object"; - class PositionInfo - { - position[]={14481.02,20.908962,15849.079}; - angles[]={0,2.363091,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=4210; - type="Land_Pipe_fence_4m_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item424 - { - dataType="Object"; - class PositionInfo - { - position[]={14474.987,20.908962,15852.073}; - angles[]={0,3.9376373,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=4211; - type="Land_Pipe_fence_4m_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item425 - { - dataType="Object"; - class PositionInfo - { - position[]={14477.896,20.908962,15849.092}; - angles[]={0,3.9376373,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=4212; - type="Land_Pipe_fence_4m_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item426 - { - dataType="Object"; - class PositionInfo - { - position[]={14469.177,20.908962,15858.029}; - angles[]={0,3.9376373,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=4213; - type="Land_Pipe_fence_4m_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item427 - { - dataType="Object"; - class PositionInfo - { - position[]={14472.086,20.908962,15855.048}; - angles[]={0,3.9376373,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=4214; - type="Land_Pipe_fence_4m_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item428 - { - dataType="Object"; - class PositionInfo - { - position[]={14463.322,20.908962,15863.982}; - angles[]={0,3.9376373,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=4215; - type="Land_Pipe_fence_4m_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item429 - { - dataType="Object"; - class PositionInfo - { - position[]={14466.235,20.908962,15861.001}; - angles[]={0,3.9376373,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=4216; - type="Land_Pipe_fence_4m_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item430 - { - dataType="Object"; - class PositionInfo - { - position[]={14460.39,20.908962,15866.962}; - angles[]={0,3.9376373,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=4217; - type="Land_Pipe_fence_4m_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item431 - { - dataType="Object"; - class PositionInfo - { - position[]={14481.253,20.669777,15853.172}; - angles[]={0,0.80800015,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.60000002; - init="call{[""AmmoboxInit"",[this,true]] call BIS_fnc_arsenal;}"; - disableSimulation=1; - }; - id=4218; - type="Box_NATO_Ammo_F"; - atlOffset=0.00026130676; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="[[[[],[]],[[],[]],[[],[]],[[],[]]],true]"; - }; - }; - }; - class Attribute2 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=3; - }; - }; - class Item432 - { - dataType="Trigger"; - position[]={14452.523,17.91,15884.152}; - angle=3.9322584; - class Attributes - { - name="trig100"; - condition="call{this && player in thisList }"; - onActivation="call{nul = [lane_4a] execVM ""scripts\simmax\targets\target100.sqf"";" \n "}"; - onDeactivation="call{cam cameraEffect [""TERMINATE"", ""BACK""]; camDestroy cam; [""rendertarget0""] call BIS_fnc_PIP; deleteVehicle temp_PIPcam_Vehicle; cam = nil;" \n "{deletevehicle _x} foreach ary;ary=[];" \n "}"; - sizeA=1.4; - sizeB=1.3; - sizeC=4; - interuptable=1; - repeatable=1; - activationBy="ANY"; - isRectangle=1; - }; - id=4219; - type="EmptyDetector"; - }; - class Item433 - { - dataType="Object"; - class PositionInfo - { - position[]={14591.257,17.91,16026.496}; - }; - side="Empty"; - flags=4; - class Attributes - { - init="call{this attachTo [lane_4, [0, 0.27, 0.825]]; }"; - name="lane_4a"; - }; - id=4220; - type="Sign_Sphere10cm_F"; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="#(argb,8,8,3)color(0,0,0,0)"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item434 - { - dataType="Object"; - class PositionInfo - { - position[]={14588.414,17.91003,16028.945}; - }; - side="Empty"; - flags=4; - class Attributes - { - init="call{this attachTo [lane_3, [0, 0.27, 0.825]]; }"; - name="lane_3a"; - }; - id=4221; - type="Sign_Sphere10cm_F"; - atlOffset=3.0517578e-005; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="#(argb,8,8,3)color(0,0,0,0)"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item435 - { - dataType="Object"; - class PositionInfo - { - position[]={14585.657,17.91,16031.326}; - }; - side="Empty"; - flags=4; - class Attributes - { - init="call{this attachTo [lane_2, [0, 0.27, 0.825]]; }"; - name="lane_2a"; - }; - id=4222; - type="Sign_Sphere10cm_F"; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="#(argb,8,8,3)color(0,0,0,0)"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item436 - { - dataType="Object"; - class PositionInfo - { - position[]={14582.898,17.91,16033.73}; - }; - side="Empty"; - flags=4; - class Attributes - { - init="call{this attachTo [lane_1, [0, 0.27, 0.825]]; }"; - name="lane_1a"; - }; - id=4223; - type="Sign_Sphere10cm_F"; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="#(argb,8,8,3)color(0,0,0,0)"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item437 - { - dataType="Object"; - class PositionInfo - { - position[]={14448.151,20.803503,15888}; - angles[]={0,5.5049253,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.60000002; - disableSimulation=1; - }; - id=4224; - type="Land_CampingTable_small_F"; - atlOffset=0.0013027191; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item438 - { - dataType="Object"; - class PositionInfo - { - position[]={14445.599,20.803503,15890.789}; - angles[]={0,5.5049253,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.60000002; - disableSimulation=1; - }; - id=4225; - type="Land_CampingTable_small_F"; - atlOffset=0.0013027191; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item439 - { - dataType="Trigger"; - position[]={14449.831,17.91,15887.103}; - angle=3.9322584; - class Attributes - { - name="trig100_1"; - condition="call{this && player in thisList}"; - onActivation="call{nul = [lane_3a] execVM ""scripts\simmax\targets\target100.sqf"";" \n "}"; - onDeactivation="call{cam cameraEffect [""TERMINATE"", ""BACK""]; " \n " camDestroy cam; " \n " [""rendertarget0""] call BIS_fnc_PIP; " \n " deleteVehicle temp_PIPcam_Vehicle; " \n " cam = nil;" \n "{deletevehicle _x} foreach ary;ary=[];" \n "}"; - sizeA=1.4; - sizeB=1.3; - sizeC=4; - interuptable=1; - repeatable=1; - activationBy="ANY"; - isRectangle=1; - }; - id=4226; - type="EmptyDetector"; - }; - class Item440 - { - dataType="Trigger"; - position[]={14447.082,17.91,15889.896}; - angle=3.9322584; - class Attributes - { - name="trig100_2"; - condition="call{this && player in thisList}"; - onActivation="call{nul = [lane_2a] execVM ""scripts\simmax\targets\target100.sqf"";" \n "}"; - onDeactivation="call{cam cameraEffect [""TERMINATE"", ""BACK""]; " \n " camDestroy cam; " \n " [""rendertarget0""] call BIS_fnc_PIP; " \n " deleteVehicle temp_PIPcam_Vehicle; " \n " cam = nil;" \n "{deletevehicle _x} foreach ary;ary=[];" \n "}"; - sizeA=1.4; - sizeB=1.3; - sizeC=4; - interuptable=1; - repeatable=1; - activationBy="ANY"; - isRectangle=1; - }; - id=4227; - type="EmptyDetector"; - }; - class Item441 - { - dataType="Trigger"; - position[]={14444.54,17.91,15892.479}; - angle=3.9322584; - class Attributes - { - name="trig100_3"; - condition="call{this && player in thisList}"; - onActivation="call{nul = [lane_1a] execVM ""scripts\simmax\targets\target100.sqf"";" \n "}"; - onDeactivation="call{cam cameraEffect [""TERMINATE"", ""BACK""]; " \n " camDestroy cam; " \n " [""rendertarget0""] call BIS_fnc_PIP; " \n " deleteVehicle temp_PIPcam_Vehicle; " \n " cam = nil;" \n "{deletevehicle _x} foreach ary;ary=[];" \n "}"; - sizeA=1.4; - sizeB=1.3; - sizeC=4; - interuptable=1; - repeatable=1; - activationBy="ANY"; - isRectangle=1; - }; - id=4228; - type="EmptyDetector"; - }; - class Item442 - { - dataType="Object"; - class PositionInfo - { - position[]={14440.15,-3.4420996,15893.042}; - angles[]={0,3.9356649,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=4229; - type="Land_nav_pier_m_F"; - atlOffset=-3.4779997; - class CustomAttributes - { - class Attribute0 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item443 - { - dataType="Object"; - class PositionInfo - { - position[]={14452.235,20.744164,15886.081}; - angles[]={4.712389,3.1415927,0.13962634}; - }; - side="Empty"; - class Attributes - { - init="call{[""AmmoboxInit"",[this,true]] call BIS_fnc_arsenal;" \n "this addAction ["""" + ""Del. Markers"",{{deletevehicle _x} foreach ary;ary=[]}];" \n "this addAction ["""" + ""700m"",""scripts\simmax\targets\SM_Target_range_L4.sqf"",[""700m_mk""],0,false,true]; " \n "this addAction ["""" + ""600m"",""scripts\simmax\targets\SM_Target_range_L4.sqf"",[""600m_mk""],0,false,true]; " \n "this addAction ["""" + ""500m"",""scripts\simmax\targets\SM_Target_range_L4.sqf"",[""500m_mk""],0,false,true]; " \n "this addAction ["""" + ""400m"",""scripts\simmax\targets\SM_Target_range_L4.sqf"",[""400m_mk""],0,false,true]; " \n "this addAction ["""" + ""300m"",""scripts\simmax\targets\SM_Target_range_L4.sqf"",[""300m_mk""],0,false,true]; " \n "this addAction ["""" + ""200m"",""scripts\simmax\targets\SM_Target_range_L4.sqf"",[""200m_mk""],0,false,true]; " \n "this addAction ["""" + ""100m"",""scripts\simmax\targets\SM_Target_range_L4.sqf"",[""100m_mk""],0,false,true]; " \n "this addAction ["""" + "" 30m"",""scripts\simmax\targets\SM_Target_range_L4.sqf"",[""30m_mk""],0,false,true];}"; - disableSimulation=1; - }; - id=4230; - type="Land_Tablet_02_F"; - atlOffset=0.31299973; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\Simmax\04.paa"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item444 - { - dataType="Object"; - class PositionInfo - { - position[]={14449.525,20.744164,15888.836}; - angles[]={4.712389,3.1415927,0.13962634}; - }; - side="Empty"; - class Attributes - { - init="call{[""AmmoboxInit"",[this,true]] call BIS_fnc_arsenal;" \n "this addAction ["""" + ""Del. Markers"",{{deletevehicle _x} foreach ary;ary=[]}];" \n "this addAction ["""" + ""700m"",""scripts\simmax\targets\SM_Target_range_L3.sqf"",[""700m_mk""],0,false,true]; " \n "this addAction ["""" + ""600m"",""scripts\simmax\targets\SM_Target_range_L3.sqf"",[""600m_mk""],0,false,true]; " \n "this addAction ["""" + ""500m"",""scripts\simmax\targets\SM_Target_range_L3.sqf"",[""500m_mk""],0,false,true]; " \n "this addAction ["""" + ""400m"",""scripts\simmax\targets\SM_Target_range_L3.sqf"",[""400m_mk""],0,false,true]; " \n "this addAction ["""" + ""300m"",""scripts\simmax\targets\SM_Target_range_L3.sqf"",[""300m_mk""],0,false,true]; " \n "this addAction ["""" + ""200m"",""scripts\simmax\targets\SM_Target_range_L3.sqf"",[""200m_mk""],0,false,true]; " \n "this addAction ["""" + ""100m"",""scripts\simmax\targets\SM_Target_range_L3.sqf"",[""100m_mk""],0,false,true]; " \n "this addAction ["""" + "" 30m"",""scripts\simmax\targets\SM_Target_range_L3.sqf"",[""30m_mk""],0,false,true];}"; - disableSimulation=1; - }; - id=4231; - type="Land_Tablet_02_F"; - atlOffset=0.31299973; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\Simmax\03.paa"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item445 - { - dataType="Object"; - class PositionInfo - { - position[]={14446.769,20.744164,15891.633}; - angles[]={4.712389,3.1415927,0.13962634}; - }; - side="Empty"; - class Attributes - { - init="call{[""AmmoboxInit"",[this,true]] call BIS_fnc_arsenal;" \n "this addAction ["""" + ""Del. Markers"",{{deletevehicle _x} foreach ary;ary=[]}];" \n "this addAction ["""" + ""700m"",""scripts\simmax\targets\SM_Target_range_L2.sqf"",[""700m_mk""],0,false,true]; " \n "this addAction ["""" + ""600m"",""scripts\simmax\targets\SM_Target_range_L2.sqf"",[""600m_mk""],0,false,true]; " \n "this addAction ["""" + ""500m"",""scripts\simmax\targets\SM_Target_range_L2.sqf"",[""500m_mk""],0,false,true]; " \n "this addAction ["""" + ""400m"",""scripts\simmax\targets\SM_Target_range_L2.sqf"",[""400m_mk""],0,false,true]; " \n "this addAction ["""" + ""300m"",""scripts\simmax\targets\SM_Target_range_L2.sqf"",[""300m_mk""],0,false,true]; " \n "this addAction ["""" + ""200m"",""scripts\simmax\targets\SM_Target_range_L2.sqf"",[""200m_mk""],0,false,true]; " \n "this addAction ["""" + ""100m"",""scripts\simmax\targets\SM_Target_range_L2.sqf"",[""100m_mk""],0,false,true]; " \n "this addAction ["""" + "" 30m"",""scripts\simmax\targets\SM_Target_range_L2.sqf"",[""30m_mk""],0,false,true];}"; - disableSimulation=1; - }; - id=4232; - type="Land_Tablet_02_F"; - atlOffset=0.31299973; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\Simmax\02.paa"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item446 - { - dataType="Object"; - class PositionInfo - { - position[]={14444.066,20.744164,15894.402}; - angles[]={4.712389,3.1415927,0.13962634}; - }; - side="Empty"; - class Attributes - { - init="call{[""AmmoboxInit"",[this,true]] call BIS_fnc_arsenal; " \n "this addAction ["""" + ""Del. Markers"",{{deletevehicle _x} foreach ary;ary=[]}];" \n "this addAction ["""" + ""700m"",""scripts\simmax\targets\SM_Target_range_L1.sqf"",[""700m_mk""],0,false,true]; " \n "this addAction ["""" + ""600m"",""scripts\simmax\targets\SM_Target_range_L1.sqf"",[""600m_mk""],0,false,true]; " \n "this addAction ["""" + ""500m"",""scripts\simmax\targets\SM_Target_range_L1.sqf"",[""500m_mk""],0,false,true]; " \n "this addAction ["""" + ""400m"",""scripts\simmax\targets\SM_Target_range_L1.sqf"",[""400m_mk""],0,false,true]; " \n "this addAction ["""" + ""300m"",""scripts\simmax\targets\SM_Target_range_L1.sqf"",[""300m_mk""],0,false,true]; " \n "this addAction ["""" + ""200m"",""scripts\simmax\targets\SM_Target_range_L1.sqf"",[""200m_mk""],0,false,true]; " \n "this addAction ["""" + ""100m"",""scripts\simmax\targets\SM_Target_range_L1.sqf"",[""100m_mk""],0,false,true]; " \n "this addAction ["""" + "" 30m"",""scripts\simmax\targets\SM_Target_range_L1.sqf"",[""30m_mk""],0,false,true];}"; - disableSimulation=1; - }; - id=4233; - type="Land_Tablet_02_F"; - atlOffset=0.31299973; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\Simmax\01.paa"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item447 - { - dataType="Object"; - class PositionInfo - { - position[]={14471.796,20.430279,15864.709}; - angles[]={0,3.939976,0}; - }; - side="Empty"; - class Attributes - { - disableSimulation=1; - }; - id=4234; - type="ShootingMat_01_OPFOR_F"; - atlOffset=0.027540207; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item448 - { - dataType="Object"; - class PositionInfo - { - position[]={14469.373,20.458357,15867.21}; - angles[]={0,3.9288456,0}; - }; - side="Empty"; - class Attributes - { - disableSimulation=1; - }; - id=4235; - type="ShootingMat_01_OPFOR_F"; - atlOffset=0.055618286; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item449 - { - dataType="Object"; - class PositionInfo - { - position[]={14452.574,20.447277,15884.255}; - angles[]={0,3.939976,0}; - }; - side="Empty"; - class Attributes - { - disableSimulation=1; - }; - id=4236; - type="ShootingMat_01_OPFOR_F"; - atlOffset=0.033000946; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item450 - { - dataType="Object"; - class PositionInfo - { - position[]={14449.83,20.442276,15887.151}; - angles[]={0,3.939976,0}; - }; - side="Empty"; - class Attributes - { - disableSimulation=1; - }; - id=4237; - type="ShootingMat_01_OPFOR_F"; - atlOffset=0.027999878; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item451 - { - dataType="Object"; - class PositionInfo - { - position[]={14447.117,20.431276,15889.982}; - angles[]={0,3.939976,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4238; - type="ShootingMat_01_OPFOR_F"; - atlOffset=0.017000198; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item452 - { - dataType="Object"; - class PositionInfo - { - position[]={14444.744,20.424276,15892.457}; - angles[]={0,3.939976,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4239; - type="ShootingMat_01_OPFOR_F"; - atlOffset=0.010000229; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item453 - { - dataType="Object"; - class PositionInfo - { - position[]={14438.808,20.428276,15898.456}; - angles[]={0,3.939976,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4240; - type="ShootingMat_01_OPFOR_F"; - atlOffset=0.013999939; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item454 - { - dataType="Object"; - class PositionInfo - { - position[]={14436.115,20.454782,15901.12}; - angles[]={0,3.939976,0}; - }; - side="Empty"; - class Attributes - { - disableSimulation=1; - }; - id=4241; - type="ShootingMat_01_OPFOR_F"; - atlOffset=0.040506363; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item455 - { - dataType="Object"; - class PositionInfo - { - position[]={14433.219,20.451862,15904.06}; - angles[]={0,3.939976,0}; - }; - side="Empty"; - class Attributes - { - disableSimulation=1; - }; - id=4242; - type="ShootingMat_01_OPFOR_F"; - atlOffset=0.037586212; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item456 - { - dataType="Object"; - class PositionInfo - { - position[]={14430.625,20.434338,15906.766}; - angles[]={0,3.939976,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4243; - type="ShootingMat_01_OPFOR_F"; - atlOffset=0.020061493; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item457 - { - dataType="Object"; - class PositionInfo - { - position[]={14477.973,20.451469,15858.449}; - angles[]={0,3.939976,0}; - }; - side="Empty"; - class Attributes - { - disableSimulation=1; - }; - id=4244; - type="ShootingMat_01_OPFOR_F"; - atlOffset=0.04873085; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item458 - { - dataType="Object"; - class PositionInfo - { - position[]={15901.51,18.187014,17266.545}; - angles[]={0,0.76260418,0}; - }; - side="Empty"; - flags=1; - class Attributes - { - disableSimulation=1; - aiRadarUsage=-1750122382; - }; - id=4245; - type="Land_PierConcrete_01_end_F"; - atlOffset=8.1048565; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item459 - { - dataType="Object"; - class PositionInfo - { - position[]={15898.007,24.354959,17265.061}; - angles[]={0,0.78695154,0}; - }; - side="Empty"; - class Attributes - { - name="t32"; - }; - id=4246; - type="TargetP_Inf_F"; - atlOffset=8.8409986; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item460 - { - dataType="Object"; - class PositionInfo - { - position[]={15900.194,24.355423,17263.125}; - angles[]={0,0.79777253,0}; - }; - side="Empty"; - class Attributes - { - name="t33"; - }; - id=4247; - type="TargetP_Inf3_Acc1_F"; - atlOffset=8.7299995; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item461 - { - dataType="Object"; - class PositionInfo - { - position[]={14443.551,19.097492,15926.357}; - angles[]={0.0053265258,2.3736145,0.0013372133}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4249; - type="Land_HBarrier_Big_F"; - atlOffset=1.9073486e-006; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item462 - { - dataType="Object"; - class PositionInfo - { - position[]={14944.599,21.310329,16390.027}; - angles[]={0,3.9384863,0}; - }; - side="Empty"; - class Attributes - { - disableSimulation=1; - }; - id=4250; - type="Land_HBarrier_Big_F"; - atlOffset=2.102047; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item463 - { - dataType="Object"; - class PositionInfo - { - position[]={14938.495,21.259075,16396.16}; - angles[]={0,3.9277413,0}; - }; - side="Empty"; - class Attributes - { - disableSimulation=1; - }; - id=4251; - type="Land_HBarrier_Big_F"; - atlOffset=2.0981884; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item464 - { - dataType="Object"; - class PositionInfo - { - position[]={14890.985,19.119999,16328.376}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4252; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item465 - { - dataType="Object"; - class PositionInfo - { - position[]={14896.91,19.119999,16334.458}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4253; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item466 - { - dataType="Object"; - class PositionInfo - { - position[]={14902.787,19.119999,16340.454}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4254; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item467 - { - dataType="Object"; - class PositionInfo - { - position[]={14908.728,19.119999,16346.524}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4255; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item468 - { - dataType="Object"; - class PositionInfo - { - position[]={14914.58,19.132217,16352.618}; - angles[]={0,2.3736145,0.0026520467}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4256; - type="Land_HBarrier_Big_F"; - atlOffset=1.9073486e-006; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item469 - { - dataType="Object"; - class PositionInfo - { - position[]={14920.625,19.160839,16358.626}; - angles[]={0,2.3736145,0.0066592805}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4257; - type="Land_HBarrier_Big_F"; - atlOffset=1.9073486e-006; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item470 - { - dataType="Object"; - class PositionInfo - { - position[]={14926.565,19.190441,16364.692}; - angles[]={0,2.3736145,0.0066592805}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4258; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item471 - { - dataType="Object"; - class PositionInfo - { - position[]={14932.443,19.214531,16370.688}; - angles[]={0.0026520467,2.3736145,0.0053265258}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4259; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item472 - { - dataType="Object"; - class PositionInfo - { - position[]={14938.383,19.231686,16376.759}; - angles[]={0.0026520467,2.3736145,0.0053265258}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4260; - type="Land_HBarrier_Big_F"; - atlOffset=0.0016670227; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item473 - { - dataType="Object"; - class PositionInfo - { - position[]={14866.191,19.119999,16328.942}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4261; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item474 - { - dataType="Object"; - class PositionInfo - { - position[]={14872.132,19.119999,16335.013}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4262; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item475 - { - dataType="Object"; - class PositionInfo - { - position[]={14877.985,19.119999,16341.106}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4263; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item476 - { - dataType="Object"; - class PositionInfo - { - position[]={14883.909,19.119999,16347.188}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4264; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item477 - { - dataType="Object"; - class PositionInfo - { - position[]={14889.786,19.119999,16353.185}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4265; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item478 - { - dataType="Object"; - class PositionInfo - { - position[]={14895.727,19.119999,16359.255}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4266; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item479 - { - dataType="Object"; - class PositionInfo - { - position[]={14901.579,19.119999,16365.349}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4267; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item480 - { - dataType="Object"; - class PositionInfo - { - position[]={14907.624,19.119999,16371.356}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4268; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item481 - { - dataType="Object"; - class PositionInfo - { - position[]={14913.564,19.123436,16377.423}; - angles[]={0.0012918708,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4269; - type="Land_HBarrier_Big_F"; - atlOffset=1.9073486e-006; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item482 - { - dataType="Object"; - class PositionInfo - { - position[]={14919.441,19.127766,16383.418}; - angles[]={0,2.3736145,0.0039967569}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4270; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item483 - { - dataType="Object"; - class PositionInfo - { - position[]={14925.382,19.129391,16389.488}; - angles[]={0.0013372133,2.3736145,0.0053265258}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4271; - type="Land_HBarrier_Big_F"; - atlOffset=1.9073486e-006; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item484 - { - dataType="Marker"; - position[]={14933.084,0,16384.297}; - name="700m_MK"; - type="Empty"; - angle=45; - id=4272; - atlOffset=-17.971661; - }; - class Item485 - { - dataType="Object"; - class PositionInfo - { - position[]={14885.133,19.119999,16322.282}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4273; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item486 - { - dataType="Object"; - class PositionInfo - { - position[]={14879.193,19.119999,16316.212}; - angles[]={0,2.3736145,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4274; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item487 - { - dataType="Object"; - class PositionInfo - { - position[]={14938.298,19.16045,16396.027}; - angles[]={0.0026520467,3.9277413,0.0039967569}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4275; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item488 - { - dataType="Object"; - class PositionInfo - { - position[]={14944.401,19.211922,16389.895}; - angles[]={0.0039967569,3.9384863,0.0039967569}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4276; - type="Land_HBarrier_Big_F"; - atlOffset=0.0038948059; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item489 - { - dataType="Object"; - class PositionInfo - { - position[]={14944.409,19.230694,16382.766}; - angles[]={0.0039967569,2.3736145,0.0026520467}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4277; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item490 - { - dataType="Object"; - class PositionInfo - { - position[]={14931.408,19.137089,16395.496}; - angles[]={0,2.3736145,0.0026520467}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4278; - type="Land_HBarrier_Big_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item491 - { - dataType="Object"; - class PositionInfo - { - position[]={14457.466,20.908962,15869.95}; - angles[]={0,3.9376373,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=4281; - type="Land_Pipe_fence_4m_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item492 - { - dataType="Object"; - class PositionInfo - { - position[]={14469.013,20.89147,15865.3}; - angles[]={0,3.926991,0}; - }; - side="Empty"; - class Attributes - { - }; - id=4282; - type="Land_CampingChair_V2_F"; - atlOffset=4.1199989; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item493 - { - dataType="Object"; - class PositionInfo - { - position[]={14481.79,20.972485,15855.855}; - angles[]={5.1793342,5.011364,0.6577971}; - }; - side="Empty"; - class Attributes - { - health=0; - disableSimulation=1; - }; - id=4283; - type="rhs_weapon_smaw"; - atlOffset=0.58702278; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item494 - { - dataType="Object"; - class PositionInfo - { - position[]={14469.519,20.850733,15864.671}; - angles[]={4.9459486,4.8969226,0.8469035}; - }; - side="Empty"; - class Attributes - { - health=0; - }; - id=4285; - type="rhs_weapon_XM2010_wd"; - atlOffset=0.465271; - }; - class Item495 - { - dataType="Object"; - class PositionInfo - { - position[]={14469.205,20.491346,15864.459}; - angles[]={0,4.4814816,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - health=0; - disableSimulation=1; - }; - id=4286; - type="Land_Ammobox_rounds_F"; - atlOffset=0.00052261353; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item496 - { - dataType="Object"; - class PositionInfo - { - position[]={14476.837,20.804781,15858.743}; - angles[]={0,5.5133491,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=1; - disableSimulation=1; - }; - id=4287; - type="Land_BagFence_Long_F"; - atlOffset=7.6293945e-006; - }; - class Item497 - { - dataType="Object"; - class PositionInfo - { - position[]={14475.817,21.4,15902.662}; - }; - side="Empty"; - flags=1; - class Attributes - { - }; - id=4288; - type="Windsock_01_F"; - atlOffset=2.2150002; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item498 - { - dataType="Object"; - class PositionInfo - { - position[]={14454.887,20.862,15883.25}; - angles[]={5.123807,5.0277014,0.84443659}; - }; - side="Empty"; - class Attributes - { - health=0; - disableSimulation=1; - }; - id=4289; - type="rhs_weapon_hk416d145"; - atlOffset=0.46500015; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item499 - { - dataType="Object"; - class PositionInfo - { - position[]={14444.305,23.294966,15883.962}; - angles[]={0,0.76644391,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=4292; - type="Land_LampHarbour_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item500 - { - dataType="Object"; - class PositionInfo - { - position[]={14468.714,23.283113,15859.181}; - angles[]={0,0.76572829,0}; - }; - side="Empty"; - flags=1; - class Attributes - { - }; - id=4293; - type="Land_LampHarbour_F"; - atlOffset=4.3540001; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item501 - { - dataType="Object"; - class PositionInfo - { - position[]={14427.238,23.294531,15901.325}; - angles[]={0,0.7919606,0}; - }; - side="Empty"; - flags=1; - class Attributes - { - }; - id=4294; - type="Land_LampHarbour_F"; - atlOffset=2.5009995; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item502 - { - dataType="Object"; - class PositionInfo - { - position[]={14430.081,20.807966,15882.752}; - angles[]={0,0.72314227,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=4295; - type="Land_LampHarbour_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item503 - { - dataType="Object"; - class PositionInfo - { - position[]={14454.846,20.520596,15882.931}; - angles[]={0,4.4814816,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - health=0; - disableSimulation=1; - }; - id=4296; - type="Land_Ammobox_rounds_F"; - atlOffset=0.018234253; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item504 - { - dataType="Object"; - class PositionInfo - { - position[]={14471.243,20.987352,15866.595}; - angles[]={4.712389,3.1416452,0.78923792}; - }; - side="Empty"; - class Attributes - { - init="call{this addAction ["""" + ""Reset Targets"", ""scripts\simmax\targets\rangepop_2.sqf""];" \n "[""AmmoboxInit"",[this,true]] call BIS_fnc_arsenal;" \n "}"; - disableSimulation=1; - }; - id=4297; - type="Land_Tablet_02_F"; - atlOffset=0.56772614; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\SST_10.paa"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item505 - { - dataType="Object"; - class PositionInfo - { - position[]={14710.04,21.726559,16184.958}; - angles[]={0,3.8988116,0}; - }; - side="Empty"; - class Attributes - { - }; - id=4298; - type="Land_Target_Dueling_01_F"; - atlOffset=3.2852898; - }; - class Item506 - { - dataType="Object"; - class PositionInfo - { - position[]={14432.715,20.803782,15905.72}; - angles[]={4.712389,3.1416452,0.78923792}; - }; - side="Empty"; - class Attributes - { - init="call{this addAction ["""" + ""Reset Targets"", ""scripts\simmax\targets\rangepop_1.sqf""];" \n "[""AmmoboxInit"",[this,true]] call BIS_fnc_arsenal;" \n "}"; - disableSimulation=1; - }; - id=4299; - type="Land_Tablet_02_F"; - atlOffset=0.37261772; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\RW_08.jpg"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item507 - { - dataType="Object"; - class PositionInfo - { - position[]={14438.146,20.837164,15900.167}; - angles[]={4.712389,3.1416452,0.78923792}; - }; - side="Empty"; - class Attributes - { - init="call{this addAction ["""" + ""Reset Targets"", ""scripts\simmax\targets\rangepop_1.sqf""];" \n "[""AmmoboxInit"",[this,true]] call BIS_fnc_arsenal;" \n "}"; - disableSimulation=1; - }; - id=4300; - type="Land_Tablet_02_F"; - atlOffset=0.40600014; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\RW_08.jpg"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item508 - { - dataType="Object"; - class PositionInfo - { - position[]={14545.696,19.092861,15946.19}; - angles[]={0.043964844,2.6606846,0.043964844}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.60000002; - init="this setCaptive true;"; - name="tank_01"; - }; - id=4301; - type="TargetFakeTank_EP1"; - }; - class Item509 - { - dataType="Object"; - class PositionInfo - { - position[]={14442.301,21.340857,15893.414}; - }; - side="Empty"; - class Attributes - { - }; - id=4302; - type="Land_BottlePlastic_V2_F"; - atlOffset=0.81300735; - }; - class Item510 - { - dataType="Trigger"; - position[]={14483.56,16.672134,15876.28}; - angle=2.3664386; - class Attributes - { - text="Tanks setdamage 0"; - condition="call{!alive tank_01 || !alive tank_02 || !alive tank_03 || !alive tank_04 }"; - onActivation="call{tank_01 setdamage 0;" \n "tank_02 setdamage 0;" \n "tank_03 setdamage 0;" \n "tank_04 setdamage 0;}"; - sizeA=0; - sizeB=0; - timeout[]={5,5,5}; - repeatable=1; - }; - id=4303; - type="EmptyDetector"; - }; - class Item511 - { - dataType="Object"; - class PositionInfo - { - position[]={14697.259,20.136272,16073.722}; - angles[]={0.031986579,5.4262981,0.010664274}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.60000002; - init="this setCaptive true;"; - name="tank_04"; - }; - id=4304; - type="TargetFakeTank_EP1"; - }; - class Item512 - { - dataType="Object"; - class PositionInfo - { - position[]={14633.489,18.54114,15995.888}; - angles[]={6.2711854,2.4567254,0.015998369}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.60000002; - init="this setCaptive true;"; - name="tank_03"; - }; - id=4305; - type="TargetFakeTank_EP1"; - }; - class Item513 - { - dataType="Object"; - class PositionInfo - { - position[]={14754.91,19.402811,16157.378}; - angles[]={0.031988446,5.4794436,0.02666023}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.60000002; - init="this setCaptive true;"; - name="tank_02"; - }; - id=4306; - type="TargetFakeTank_EP1"; - }; - class Item514 - { - dataType="Object"; - class PositionInfo - { - position[]={14482.398,20.889828,15855.034}; - angles[]={0,0.82349867,0}; - }; - side="Empty"; - flags=1; - class Attributes - { - disableSimulation=1; - }; - id=4307; - type="SignAd_SponsorS_Redburger_F"; - atlOffset=5.3659992; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\SST_11.paa"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item515 - { - dataType="Object"; - class PositionInfo - { - position[]={14707.064,18.704638,16193.576}; - angles[]={0.0013372133,3.8833878,0.0039967569}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=4311; - type="Land_HBarrier_3_F"; - atlOffset=-0.00052833557; - }; - class Item516 - { - dataType="Object"; - class PositionInfo - { - position[]={14706.964,19.880335,16193.493}; - angles[]={0,3.8833878,0}; - }; - side="Empty"; - class Attributes - { - }; - id=4314; - type="Land_HBarrier_3_F"; - atlOffset=1.1754608; - }; - class Item517 - { - dataType="Object"; - class PositionInfo - { - position[]={15078.474,16.742228,17243.846}; - angles[]={0,5.4822965,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4325; - type="UserTexture10m_F"; - atlOffset=-1.1659775; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\RW_03.jpg"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item518 - { - dataType="Object"; - class PositionInfo - { - position[]={15071.509,16.750227,17236.672}; - angles[]={0,5.4822965,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4326; - type="UserTexture10m_F"; - atlOffset=-1.1597729; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\RW_03.jpg"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item519 - { - dataType="Object"; - class PositionInfo - { - position[]={15083.304,19.798729,17245.957}; - angles[]={0,0.76988298,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4327; - type="Land_Shoot_House_Wall_Long_F"; - atlOffset=0.13241386; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item520 - { - dataType="Object"; - class PositionInfo - { - position[]={15086.179,19.798729,17243.176}; - angles[]={0,0.76988298,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4328; - type="Land_Shoot_House_Wall_Long_F"; - atlOffset=0.13522148; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item521 - { - dataType="Object"; - class PositionInfo - { - position[]={15089.048,19.798729,17240.385}; - angles[]={0,0.76988298,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4329; - type="Land_Shoot_House_Wall_Long_F"; - atlOffset=0.13802147; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item522 - { - dataType="Object"; - class PositionInfo - { - position[]={15091.922,19.798729,17237.605}; - angles[]={0,0.76988298,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4330; - type="Land_Shoot_House_Wall_Long_F"; - atlOffset=0.14082909; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item523 - { - dataType="Object"; - class PositionInfo - { - position[]={15069.476,19.798729,17231.686}; - angles[]={0,3.9115775,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4331; - type="Land_Shoot_House_Wall_Long_F"; - atlOffset=0.11890984; - }; - class Item524 - { - dataType="Object"; - class PositionInfo - { - position[]={15072.34,19.798729,17228.883}; - angles[]={0,3.9115775,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4332; - type="Land_Shoot_House_Wall_Long_F"; - atlOffset=0.12170601; - }; - class Item525 - { - dataType="Object"; - class PositionInfo - { - position[]={15078.089,19.798729,17223.32}; - angles[]={0,3.9115775,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4333; - type="Land_Shoot_House_Wall_Long_F"; - atlOffset=0.12732124; - }; - class Item526 - { - dataType="Object"; - class PositionInfo - { - position[]={15075.218,19.798729,17226.105}; - angles[]={0,3.9115775,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4334; - type="Land_Shoot_House_Wall_Long_F"; - atlOffset=0.12451744; - }; - class Item527 - { - dataType="Object"; - class PositionInfo - { - position[]={15089.444,19.798729,17215.117}; - angles[]={0,2.340678,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4335; - type="Land_Shoot_House_Wall_Long_F"; - atlOffset=0.13841057; - }; - class Item528 - { - dataType="Object"; - class PositionInfo - { - position[]={15092.223,19.798729,17217.986}; - angles[]={0,2.340678,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4336; - type="Land_Shoot_House_Wall_Long_F"; - atlOffset=0.14112282; - }; - class Item529 - { - dataType="Object"; - class PositionInfo - { - position[]={15100.585,19.798729,17226.42}; - angles[]={0,2.340678,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4337; - type="Land_Shoot_House_Wall_Long_F"; - atlOffset=0.14929008; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item530 - { - dataType="Object"; - class PositionInfo - { - position[]={15097.796,19.798729,17223.555}; - angles[]={0,2.340678,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4338; - type="Land_Shoot_House_Wall_Long_F"; - atlOffset=0.14656639; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item531 - { - dataType="Object"; - class PositionInfo - { - position[]={15091.738,19.788389,17221.063}; - angles[]={0,2.340678,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4339; - type="Land_Shoot_House_Wall_Long_F"; - atlOffset=0.13031006; - }; - class Item532 - { - dataType="Object"; - class PositionInfo - { - position[]={15094.521,19.788389,17223.945}; - angles[]={0,2.340678,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4340; - type="Land_Shoot_House_Wall_Long_F"; - atlOffset=0.13302803; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item533 - { - dataType="Object"; - class PositionInfo - { - position[]={15070.821,18.563072,17231.59}; - angles[]={0,4.9296298,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - name="KT_41"; - }; - id=4341; - type="TargetP_Inf4_F"; - atlOffset=-0.20499992; - }; - class Item534 - { - dataType="Object"; - class PositionInfo - { - position[]={15072.922,18.481071,17237.748}; - angles[]={0,5.4822884,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - name="KT_46"; - }; - id=4343; - type="TargetP_Inf4_F"; - atlOffset=-0.28700066; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - }; - nAttributes=1; - }; - }; - class Item535 - { - dataType="Object"; - class PositionInfo - { - position[]={15074.228,18.606071,17239.086}; - angles[]={0,5.4822884,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - name="KT_47"; - }; - id=4344; - type="TargetP_Inf4_F"; - atlOffset=-0.16200066; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - }; - nAttributes=1; - }; - }; - class Item536 - { - dataType="Object"; - class PositionInfo - { - position[]={15077.446,18.481071,17242.318}; - angles[]={0,5.4822884,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - name="KT_56"; - dynamicSimulation=1; - }; - id=4346; - type="TargetP_Inf4_F"; - atlOffset=-0.28700066; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - }; - nAttributes=1; - }; - }; - class Item537 - { - dataType="Object"; - class PositionInfo - { - position[]={15078.925,18.606199,17243.904}; - angles[]={0,5.4822884,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - name="KT_55"; - }; - id=4347; - type="TargetP_Inf4_F"; - atlOffset=-0.15999985; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - }; - nAttributes=1; - }; - }; - class Item538 - { - dataType="Object"; - class PositionInfo - { - position[]={15080.203,18.55901,17245.262}; - angles[]={0,5.4822884,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - name="KT_53"; - }; - id=4348; - type="TargetP_Inf4_F"; - atlOffset=-0.20600128; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - }; - nAttributes=1; - }; - }; - class Item539 - { - dataType="Object"; - class PositionInfo - { - position[]={15083.309,18.580072,17244.492}; - angles[]={0,5.8878155,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - name="KT_51"; - }; - id=4349; - type="TargetP_Inf4_F"; - atlOffset=-0.18799973; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - }; - nAttributes=1; - }; - }; - class Item540 - { - dataType="Object"; - class PositionInfo - { - position[]={15074.663,18.606071,17239.34}; - angles[]={0,5.4822884,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - name="KG_43"; - }; - id=4350; - type="TargetP_Civ2_F"; - atlOffset=-0.16200066; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - }; - nAttributes=1; - }; - }; - class Item541 - { - dataType="Object"; - class PositionInfo - { - position[]={15078.739,18.606735,17243.502}; - angles[]={0,5.4822884,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - name="KG_52"; - }; - id=4351; - type="TargetP_Civ2_F"; - atlOffset=-0.15999985; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - }; - nAttributes=1; - }; - }; - class Item542 - { - dataType="Object"; - class PositionInfo - { - position[]={15080.652,18.606607,17245.447}; - angles[]={0,5.4822884,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - name="KG_51"; - }; - id=4352; - type="TargetP_Civ2_F"; - atlOffset=-0.1590023; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - }; - nAttributes=1; - }; - }; - class Item543 - { - dataType="Object"; - class PositionInfo - { - position[]={15079.586,18.621328,17244.557}; - angles[]={0,5.4822884,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.60000002; - name="KT_54"; - }; - id=4353; - type="TargetP_Inf3_F"; - atlOffset=-0.1439991; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - }; - nAttributes=1; - }; - }; - class Item544 - { - dataType="Object"; - class PositionInfo - { - position[]={15080.955,19.798729,17220.555}; - angles[]={0,3.9115775,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4355; - type="Land_Shoot_House_Wall_Long_F"; - atlOffset=0.13011932; - }; - class Item545 - { - dataType="Object"; - class PositionInfo - { - position[]={15094.79,19.798729,17234.824}; - angles[]={0,0.76988298,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4356; - type="Land_Shoot_House_Wall_Long_F"; - atlOffset=0.14362907; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item546 - { - dataType="Object"; - class PositionInfo - { - position[]={15075.933,17.929569,17234.488}; - angles[]={0,5.4822884,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - createAsSimpleObject=1; - disableSimulation=1; - dynamicSimulation=1; - }; - id=4359; - type="Land_Pallets_stack_F"; - atlOffset=-0.40999985; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item547 - { - dataType="Logic"; - class PositionInfo - { - position[]={15085.818,17.908228,17245.617}; - angles[]={0,5.4822965,0}; - }; - init="call{laneTargets = nearestObjects [this, [""TargetBase""], 50]; {_x animate[""terc"", 1]} forEach laneTargets;}"; - id=4360; - type="Logic"; - atlOffset=-0.0017719269; - }; - class Item548 - { - dataType="Object"; - class PositionInfo - { - position[]={15071.38,18.261129,17231.486}; - angles[]={0.00072259008,5.2837129,6.282578}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.60000002; - init="call{[""AmmoboxInit"",[this,true]] call BIS_fnc_arsenal;}"; - createAsSimpleObject=1; - disableSimulation=1; - }; - id=4361; - type="Land_WaterBarrel_F"; - atlOffset=-0.21562004; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item549 - { - dataType="Object"; - class PositionInfo - { - position[]={15079.447,17.752394,17244.137}; - angles[]={0,5.4822965,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4362; - type="Land_ConcreteKerb_01_8m_F"; - atlOffset=-0.034589767; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item550 - { - dataType="Object"; - class PositionInfo - { - position[]={15070.396,17.754522,17234.777}; - angles[]={0,5.4822965,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4364; - type="Land_ConcreteKerb_01_2m_F"; - atlOffset=-0.036771774; - }; - class Item551 - { - dataType="Object"; - class PositionInfo - { - position[]={15069.007,17.754522,17233.352}; - angles[]={0,5.4822965,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4365; - type="Land_ConcreteKerb_01_2m_F"; - atlOffset=-0.036771774; - }; - class Item552 - { - dataType="Object"; - class PositionInfo - { - position[]={15097.666,19.798729,17232.027}; - angles[]={0,0.76988298,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4366; - type="Land_Shoot_House_Wall_Long_F"; - atlOffset=0.1464386; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item553 - { - dataType="Object"; - class PositionInfo - { - position[]={15100.535,19.798729,17229.244}; - angles[]={0,0.76988298,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4367; - type="Land_Shoot_House_Wall_Long_F"; - atlOffset=0.14924049; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item554 - { - dataType="Object"; - class PositionInfo - { - position[]={15083.825,19.798729,17217.752}; - angles[]={0,3.9115775,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4368; - type="Land_Shoot_House_Wall_Long_F"; - atlOffset=0.13292122; - }; - class Item555 - { - dataType="Object"; - class PositionInfo - { - position[]={15086.704,19.798729,17214.98}; - angles[]={0,3.9115775,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4369; - type="Land_Shoot_House_Wall_Long_F"; - atlOffset=0.13573265; - }; - class Item556 - { - dataType="Object"; - class PositionInfo - { - position[]={15087.83,18.782164,17227.893}; - angles[]={4.712389,3.1417499,5.5057631}; - }; - side="Empty"; - class Attributes - { - init="call{this addAction [ " \n " """" + ""Starten (Area 1)"", " \n " {[[],""scripts\simmax\SM_L1_Area1.sqf""] remoteExec [""execVM"",2];}, " \n " [] " \n "];" \n "" \n "this addAction [ " \n " """" + ""Starten (Player-L vs. Player-R)"", " \n " {[[],""scripts\simmax\SM_L1_Area1_L_R.sqf""] remoteExec [""execVM"",2];}, " \n " [] " \n "];}"; - name="Schalttafel_01"; - disableSimulation=1; - }; - id=4372; - type="Land_Tablet_02_F"; - atlOffset=0.76160431; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\RW_05.jpg"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item557 - { - dataType="Object"; - class PositionInfo - { - position[]={15080.779,17.928644,17238.838}; - angles[]={0,5.4822965,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - createAsSimpleObject=1; - disableSimulation=1; - dynamicSimulation=1; - }; - id=4374; - type="Land_Pallets_stack_F"; - atlOffset=-0.41092491; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item558 - { - dataType="Object"; - class PositionInfo - { - position[]={15083.548,18.278511,17243.939}; - angles[]={0.00072259008,5.2837129,6.282578}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.60000002; - init="call{[""AmmoboxInit"",[this,true]] call BIS_fnc_arsenal;}"; - createAsSimpleObject=1; - disableSimulation=1; - }; - id=4375; - type="Land_WaterBarrel_F"; - atlOffset=-0.19823837; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item559 - { - dataType="Object"; - class PositionInfo - { - position[]={15077.594,19.798729,17242.141}; - angles[]={0,5.4822965,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - dynamicSimulation=1; - }; - id=4377; - type="Land_Shoot_House_Panels_Window_F"; - atlOffset=0.12683678; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item560 - { - dataType="Object"; - class PositionInfo - { - position[]={15073.16,19.798729,17237.615}; - angles[]={0,5.4822965,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=4378; - type="Land_Shoot_House_Panels_Window_F"; - atlOffset=0.1225071; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item561 - { - dataType="Object"; - class PositionInfo - { - position[]={15081.881,19.798729,17246.465}; - angles[]={0,5.4822965,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=4379; - type="Land_Shoot_House_Panels_Window_F"; - atlOffset=0.048187256; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item562 - { - dataType="Object"; - class PositionInfo - { - position[]={15068.737,18.481071,17233.436}; - angles[]={0,5.4822884,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - name="KT_42"; - }; - id=4380; - type="TargetP_Inf4_F"; - atlOffset=-0.28700066; - }; - class Item563 - { - dataType="Object"; - class PositionInfo - { - position[]={15081.701,18.481007,17246.467}; - angles[]={0,5.4822884,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - name="KT_52"; - }; - id=4381; - type="TargetP_Inf4_F"; - atlOffset=-0.28600121; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - }; - nAttributes=1; - }; - }; - class Item564 - { - dataType="Object"; - class PositionInfo - { - position[]={15088.062,18.474977,17214.777}; - angles[]={0.00072259008,5.2837129,6.282578}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.60000002; - init="call{[""AmmoboxInit"",[this,true]] call BIS_fnc_arsenal;}"; - dynamicSimulation=1; - }; - id=4382; - type="Land_WaterBarrel_F"; - atlOffset=-0.0017719269; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item565 - { - dataType="Object"; - class PositionInfo - { - position[]={15069.007,19.798729,17233.17}; - angles[]={0,5.4822965,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=4390; - type="Land_Shoot_House_Panels_Window_F"; - atlOffset=0.087713242; - }; - class Item566 - { - dataType="Object"; - class PositionInfo - { - position[]={15072.123,22.673729,17231.725}; - angles[]={0,2.3406773,0}; - }; - side="Empty"; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4391; - type="Land_Shoot_House_Wall_Long_Prone_F"; - atlOffset=2.9964943; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item567 - { - dataType="Object"; - class PositionInfo - { - position[]={15074.909,22.673729,17234.602}; - angles[]={0,2.3406773,0}; - }; - side="Empty"; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4392; - type="Land_Shoot_House_Wall_Long_Prone_F"; - atlOffset=2.9992161; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item568 - { - dataType="Object"; - class PositionInfo - { - position[]={15077.691,22.673729,17237.463}; - angles[]={0,2.3406773,0}; - }; - side="Empty"; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4393; - type="Land_Shoot_House_Wall_Long_Prone_F"; - atlOffset=3.0019321; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item569 - { - dataType="Object"; - class PositionInfo - { - position[]={15080.479,22.673729,17240.344}; - angles[]={0,2.3406773,0}; - }; - side="Empty"; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4394; - type="Land_Shoot_House_Wall_Long_Prone_F"; - atlOffset=3.0046539; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item570 - { - dataType="Object"; - class PositionInfo - { - position[]={15083.258,22.673729,17243.211}; - angles[]={0,2.3406773,0}; - }; - side="Empty"; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4395; - type="Land_Shoot_House_Wall_Long_Prone_F"; - atlOffset=3.0073681; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item571 - { - dataType="Object"; - class PositionInfo - { - position[]={15093.054,21.597227,17222.545}; - angles[]={0,5.4822965,0}; - }; - side="Empty"; - class Attributes - { - disableSimulation=1; - }; - id=4396; - type="UserTexture1m_F"; - atlOffset=3.6159344; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\RW_06.jpg"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item572 - { - dataType="Object"; - class PositionInfo - { - position[]={15080.476,19.525309,17247.127}; - angles[]={0,2.340678,0}; - }; - side="Empty"; - flags=1; - class Attributes - { - dynamicSimulation=1; - }; - id=4397; - type="Land_ConcreteWall_01_l_8m_F"; - atlOffset=0.62991714; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item573 - { - dataType="Object"; - class PositionInfo - { - position[]={15074.911,19.525043,17241.373}; - angles[]={0,2.340678,0}; - }; - side="Empty"; - flags=1; - class Attributes - { - dynamicSimulation=1; - }; - id=4398; - type="Land_ConcreteWall_01_l_8m_F"; - atlOffset=0.62421608; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item574 - { - dataType="Object"; - class PositionInfo - { - position[]={15069.34,19.525043,17235.637}; - angles[]={0,2.340678,0}; - }; - side="Empty"; - flags=1; - class Attributes - { - dynamicSimulation=1; - }; - id=4399; - type="Land_ConcreteWall_01_l_8m_F"; - atlOffset=0.61877632; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item575 - { - dataType="Object"; - class PositionInfo - { - position[]={15084.384,19.525043,17245.623}; - angles[]={0,3.9115775,0}; - }; - side="Empty"; - flags=1; - class Attributes - { - dynamicSimulation=1; - }; - id=4400; - type="Land_ConcreteWall_01_l_8m_F"; - atlOffset=0.63346672; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item576 - { - dataType="Object"; - class PositionInfo - { - position[]={15069.881,19.525043,17230.678}; - angles[]={0,3.9115775,0}; - }; - side="Empty"; - flags=1; - class Attributes - { - dynamicSimulation=1; - }; - id=4401; - type="Land_ConcreteWall_01_l_8m_F"; - atlOffset=0.61930466; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item577 - { - dataType="Object"; - class PositionInfo - { - position[]={15092.846,18.369528,17222.783}; - angles[]={0,0.7698822,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - health=0; - ammo=0; - init="call{this addaction [""Open Virtual Arsenal"", { [""Open"",true] call BIS_fnc_arsenal; }]; [this] call grad_customGear_fnc_addAction;}"; - disableSimulation=1; - }; - id=4402; - type="Box_NATO_Equip_F"; - atlOffset=0.0065021515; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="[[[[],[]],[[],[]],[[],[]],[[],[]]],true]"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item578 - { - dataType="Object"; - class PositionInfo - { - position[]={15092.92,18.749228,17223.014}; - angles[]={0,3.125932,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - health=0; - ammo=0.71179271; - init="call{this addAction ["""" + ""MP5 / Glock 17"",""scripts\simmax\MP5_01.sqf"", [],6,true,true,"""",""player distance SM_kiste_01 < 5""]; " \n "this addAction ["""" + ""MP7 / Glock 17"",""scripts\simmax\MP7_01.sqf"", [],5,true,true,"""",""player distance SM_kiste_01 < 5""]; " \n "this addAction ["""" + ""G36 / Glock 17"",""scripts\simmax\G36_01.sqf"", [],4,true,true,"""",""player distance SM_kiste_01 < 5""]; " \n "this addAction ["""" + ""HK416 / Glock 17"",""scripts\simmax\HK416_01.sqf"", [],3,true,true,"""",""player distance SM_kiste_01 < 5""];}"; - name="SM_kiste_01"; - disableSimulation=1; - }; - id=4403; - type="rhsusf_weapon_MP7A1_desert"; - atlOffset=0.02362442; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item579 - { - dataType="Object"; - class PositionInfo - { - position[]={15092.589,18.742455,17222.404}; - angles[]={0,2.0326278,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - health=0; - disableSimulation=1; - }; - id=4404; - type="Weapon_SMG_05_F"; - atlOffset=0.016851425; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item580 - { - dataType="Object"; - class PositionInfo - { - position[]={15092.9,18.373453,17223.344}; - angles[]={4.4014177,4.9190431,5.4349127}; - }; - side="Empty"; - class Attributes - { - health=0; - disableSimulation=1; - }; - id=4405; - type="rhs_weapon_hk416d10_LMT_d"; - atlOffset=0.39200974; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item581 - { - dataType="Object"; - class PositionInfo - { - position[]={15092.918,19.175453,17222.525}; - angles[]={1.3636093,1.4225572,0.79010755}; - }; - side="Empty"; - class Attributes - { - health=0; - disableSimulation=1; - }; - id=4406; - type="rhssaf_weapon_g36c"; - atlOffset=0.44985008; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item582 - { - dataType="Object"; - class PositionInfo - { - position[]={15077.467,18.427889,17242.248}; - angles[]={0,5.4822965,0}; - }; - side="Empty"; - class Attributes - { - }; - id=4407; - type="Land_ConcreteKerb_01_2m_F"; - atlOffset=0.45261002; - }; - class Item583 - { - dataType="Object"; - class PositionInfo - { - position[]={15073.058,18.440096,17237.727}; - angles[]={0,5.4822965,0}; - }; - side="Empty"; - class Attributes - { - }; - id=4408; - type="Land_ConcreteKerb_01_2m_F"; - atlOffset=0.48463631; - }; - class Item584 - { - dataType="Object"; - class PositionInfo - { - position[]={15068.861,18.429604,17233.195}; - angles[]={0,5.4822965,0}; - }; - side="Empty"; - class Attributes - { - }; - id=4409; - type="Land_ConcreteKerb_01_2m_F"; - atlOffset=0.42219543; - }; - class Item585 - { - dataType="Object"; - class PositionInfo - { - position[]={15081.846,18.414108,17246.576}; - angles[]={0,5.4822965,0}; - }; - side="Empty"; - class Attributes - { - }; - id=4410; - type="Land_ConcreteKerb_01_2m_F"; - atlOffset=0.40892601; - }; - class Item586 - { - dataType="Object"; - class PositionInfo - { - position[]={15095.637,18.634956,17261.338}; - angles[]={0,5.4691086,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.60000002; - name="KT_36"; - }; - id=4413; - type="TargetP_Inf3_F"; - atlOffset=-0.11543274; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - }; - nAttributes=1; - }; - }; - class Item587 - { - dataType="Object"; - class PositionInfo - { - position[]={15091.861,18.634956,17257.35}; - angles[]={0,5.4691086,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - name="KG_30"; - }; - id=4414; - type="TargetP_Civ2_F"; - atlOffset=-0.11808205; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - }; - nAttributes=1; - }; - }; - class Item588 - { - dataType="Object"; - class PositionInfo - { - position[]={15092.962,16.778883,17258.873}; - angles[]={0,5.4691086,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4415; - type="UserTexture10m_F"; - atlOffset=-1.1135235; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\RW_03.jpg"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item589 - { - dataType="Object"; - class PositionInfo - { - position[]={15097.725,19.827385,17261.252}; - angles[]={0,0.75670183,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4416; - type="Land_Shoot_House_Wall_Long_F"; - atlOffset=0.15416527; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item590 - { - dataType="Object"; - class PositionInfo - { - position[]={15100.633,19.827385,17258.514}; - angles[]={0,0.75670183,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4417; - type="Land_Shoot_House_Wall_Long_F"; - atlOffset=0.15700531; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item591 - { - dataType="Object"; - class PositionInfo - { - position[]={15112.604,19.827385,17264.637}; - angles[]={0,0.75670183,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4418; - type="Land_Shoot_House_Wall_Long_F"; - atlOffset=0.16869545; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item592 - { - dataType="Object"; - class PositionInfo - { - position[]={15115.505,19.827385,17261.893}; - angles[]={0,0.75670183,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4419; - type="Land_Shoot_House_Wall_Long_F"; - atlOffset=0.17152977; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item593 - { - dataType="Object"; - class PositionInfo - { - position[]={15090.984,19.827385,17253.881}; - angles[]={0,3.8983667,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4420; - type="Land_Shoot_House_Wall_Long_F"; - atlOffset=0.14758301; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item594 - { - dataType="Object"; - class PositionInfo - { - position[]={15093.894,19.827385,17251.121}; - angles[]={0,3.8983667,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4421; - type="Land_Shoot_House_Wall_Long_F"; - atlOffset=0.15042305; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item595 - { - dataType="Object"; - class PositionInfo - { - position[]={15099.705,19.827385,17245.627}; - angles[]={0,3.8983667,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4422; - type="Land_Shoot_House_Wall_Long_F"; - atlOffset=0.15609932; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item596 - { - dataType="Object"; - class PositionInfo - { - position[]={15096.805,19.827385,17248.373}; - angles[]={0,3.8983667,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4423; - type="Land_Shoot_House_Wall_Long_F"; - atlOffset=0.15326691; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item597 - { - dataType="Object"; - class PositionInfo - { - position[]={15108.207,19.673763,17242.248}; - angles[]={0,2.327497,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4424; - type="Land_Shoot_House_Wall_Long_F"; - atlOffset=0.010780334; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item598 - { - dataType="Object"; - class PositionInfo - { - position[]={15117.596,19.827385,17255.217}; - angles[]={0,2.327497,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4425; - type="Land_Shoot_House_Wall_Long_F"; - atlOffset=0.17357063; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item599 - { - dataType="Object"; - class PositionInfo - { - position[]={15109.899,19.827385,17247.857}; - angles[]={0,2.327497,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4426; - type="Land_Shoot_House_Wall_Long_F"; - atlOffset=0.16605568; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item600 - { - dataType="Object"; - class PositionInfo - { - position[]={15114.853,19.827385,17252.309}; - angles[]={0,2.327497,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4427; - type="Land_Shoot_House_Wall_Long_F"; - atlOffset=0.17089272; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item601 - { - dataType="Object"; - class PositionInfo - { - position[]={15090.406,18.634956,17255.611}; - angles[]={0,5.4691086,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - name="KT_30"; - }; - id=4428; - type="TargetP_Inf4_F"; - atlOffset=-0.1181488; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - }; - nAttributes=1; - }; - }; - class Item602 - { - dataType="Object"; - class PositionInfo - { - position[]={15091.692,18.634956,17256.977}; - angles[]={0,5.4691086,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - name="KT_32"; - }; - id=4429; - type="TargetP_Inf4_F"; - atlOffset=-0.11763; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - }; - nAttributes=1; - }; - }; - class Item603 - { - dataType="Object"; - class PositionInfo - { - position[]={15092.717,18.634956,17258.246}; - angles[]={0,5.4691086,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - name="KT_33"; - }; - id=4430; - type="TargetP_Inf4_F"; - atlOffset=-0.11737251; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - }; - nAttributes=1; - }; - }; - class Item604 - { - dataType="Object"; - class PositionInfo - { - position[]={15093.833,18.634956,17259.43}; - angles[]={0,5.4691086,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - name="KT_34"; - }; - id=4431; - type="TargetP_Inf4_F"; - atlOffset=-0.11562157; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - }; - nAttributes=1; - }; - }; - class Item605 - { - dataType="Object"; - class PositionInfo - { - position[]={15095.3,18.634956,17260.811}; - angles[]={0,5.4691086,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - name="KT_35"; - }; - id=4432; - type="TargetP_Inf4_F"; - atlOffset=-0.11548996; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - }; - nAttributes=1; - }; - }; - class Item606 - { - dataType="Object"; - class PositionInfo - { - position[]={15094.179,18.634956,17259.615}; - angles[]={0,5.4691086,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - name="KG_32"; - }; - id=4433; - type="TargetP_Civ2_F"; - atlOffset=-0.11579323; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - }; - nAttributes=1; - }; - }; - class Item607 - { - dataType="Object"; - class PositionInfo - { - position[]={15090.659,18.634956,17256.072}; - angles[]={0,5.4691086,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.60000002; - name="KT_31"; - }; - id=4434; - type="TargetP_Inf3_F"; - atlOffset=-0.11691856; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - }; - nAttributes=1; - }; - }; - class Item608 - { - dataType="Object"; - class PositionInfo - { - position[]={15102.619,19.827385,17242.881}; - angles[]={0,3.8983667,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4435; - type="Land_Shoot_House_Wall_Long_F"; - atlOffset=0.15894508; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item609 - { - dataType="Object"; - class PositionInfo - { - position[]={15118.42,19.827385,17259.139}; - angles[]={0,0.75670183,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4436; - type="Land_Shoot_House_Wall_Long_F"; - atlOffset=0.17437553; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item610 - { - dataType="Object"; - class PositionInfo - { - position[]={15102.092,18.456453,17244.664}; - angles[]={0,5.4691086,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - createAsSimpleObject=1; - disableSimulation=1; - }; - id=4437; - type="Land_Pallets_stack_F"; - atlOffset=0.033432007; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item611 - { - dataType="Object"; - class PositionInfo - { - position[]={15093.069,18.634956,17258.438}; - angles[]={0,5.4691086,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - name="KG_31"; - }; - id=4438; - type="TargetP_Civ2_F"; - atlOffset=-0.1175518; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - }; - nAttributes=1; - }; - }; - class Item612 - { - dataType="Object"; - class PositionInfo - { - position[]={15094.949,18.634956,17260.613}; - angles[]={0,5.4691086,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - name="KG_33"; - }; - id=4439; - type="TargetP_Civ2_F"; - atlOffset=-0.11461067; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - }; - nAttributes=1; - }; - }; - class Item613 - { - dataType="Object"; - class PositionInfo - { - position[]={15107.846,19.827385,17245.678}; - angles[]={0,2.327497,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4440; - type="Land_Shoot_House_Panels_F"; - atlOffset=0.16404915; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item614 - { - dataType="Object"; - class PositionInfo - { - position[]={15101.044,19.232386,17251.594}; - angles[]={0,5.4691086,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4441; - type="Land_Shoot_House_Wall_Crouch_F"; - atlOffset=-0.35311508; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item615 - { - dataType="Object"; - class PositionInfo - { - position[]={15106.443,19.827385,17253.02}; - angles[]={0,0.75670183,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4442; - type="Land_Shoot_House_Wall_Long_F"; - atlOffset=0.16267967; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item616 - { - dataType="Object"; - class PositionInfo - { - position[]={15104.004,18.503633,17242.586}; - angles[]={0.00073217542,5.2705278,6.2825813}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.60000002; - init="call{[""AmmoboxInit"",[this,true]] call BIS_fnc_arsenal;}"; - dynamicSimulation=1; - }; - id=4443; - type="Land_WaterBarrel_F"; - atlOffset=0.026884079; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item617 - { - dataType="Object"; - class PositionInfo - { - position[]={15109.418,19.827385,17267.635}; - angles[]={0,0.75670183,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4444; - type="Land_Shoot_House_Wall_Long_F"; - atlOffset=0.16558456; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item618 - { - dataType="Object"; - class PositionInfo - { - position[]={15106.509,19.827385,17270.385}; - angles[]={0,0.75670183,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4445; - type="Land_Shoot_House_Wall_Long_F"; - atlOffset=0.16274452; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item619 - { - dataType="Object"; - class PositionInfo - { - position[]={15109.818,19.827385,17250.689}; - angles[]={0,3.8983667,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4446; - type="Land_Shoot_House_Wall_Long_F"; - atlOffset=0.16597557; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item620 - { - dataType="Object"; - class PositionInfo - { - position[]={15106.916,19.827385,17253.436}; - angles[]={0,3.8983667,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4447; - type="Land_Shoot_House_Wall_Long_F"; - atlOffset=0.16314125; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item621 - { - dataType="Object"; - class PositionInfo - { - position[]={15101.095,19.827385,17258.928}; - angles[]={0,3.8983667,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4448; - type="Land_Shoot_House_Wall_Long_F"; - atlOffset=0.15745735; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item622 - { - dataType="Object"; - class PositionInfo - { - position[]={15098.19,19.827385,17261.678}; - angles[]={0,3.8983667,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4449; - type="Land_Shoot_House_Wall_Long_F"; - atlOffset=0.15461922; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item623 - { - dataType="Object"; - class PositionInfo - { - position[]={15095.283,19.827385,17264.428}; - angles[]={0,3.8983667,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4450; - type="Land_Shoot_House_Wall_Long_F"; - atlOffset=0.15178108; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item624 - { - dataType="Object"; - class PositionInfo - { - position[]={15113.987,19.67206,17248.363}; - angles[]={0,2.327497,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4451; - type="Land_Shoot_House_Wall_Long_F"; - atlOffset=0.014720917; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item625 - { - dataType="Object"; - class PositionInfo - { - position[]={15104.141,19.827385,17241.578}; - angles[]={0,2.327497,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4452; - type="Land_Shoot_House_Wall_Long_F"; - atlOffset=0.16043091; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item626 - { - dataType="Object"; - class PositionInfo - { - position[]={15097.946,19.827385,17270.154}; - angles[]={0,5.4691086,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4453; - type="Land_Shoot_House_Wall_Long_F"; - atlOffset=0.15438271; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item627 - { - dataType="Object"; - class PositionInfo - { - position[]={15100.693,19.827385,17273.074}; - angles[]={0,5.4691086,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4454; - type="Land_Shoot_House_Wall_Long_F"; - atlOffset=0.15706444; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item628 - { - dataType="Object"; - class PositionInfo - { - position[]={15092.642,17.78105,17257.809}; - angles[]={0,5.4691086,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4455; - type="Land_ConcreteKerb_01_8m_F"; - atlOffset=0.0060768127; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item629 - { - dataType="Object"; - class PositionInfo - { - position[]={15096.07,17.783178,17261.441}; - angles[]={0,5.4691086,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4456; - type="Land_ConcreteKerb_01_2m_F"; - atlOffset=0.0081138611; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item630 - { - dataType="Object"; - class PositionInfo - { - position[]={15109.226,18.676844,17263.811}; - angles[]={0,5.4264717,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - name="x2_1"; - disableSimulation=1; - dynamicSimulation=1; - }; - id=4457; - type="Land_Sign_WarningUnexplodedAmmo_F"; - atlOffset=-0.27311516; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\20-G.jpg"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item631 - { - dataType="Object"; - class PositionInfo - { - position[]={15108.795,18.691843,17263.361}; - angles[]={0,5.4264717,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - name="x2_3"; - disableSimulation=1; - dynamicSimulation=1; - }; - id=4458; - type="Land_Sign_WarningUnexplodedAmmo_F"; - atlOffset=-0.25811577; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\21-G.jpg"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item632 - { - dataType="Object"; - class PositionInfo - { - position[]={15108.371,18.691843,17262.902}; - angles[]={0,5.4264717,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - name="x2_4"; - disableSimulation=1; - dynamicSimulation=1; - }; - id=4459; - type="Land_Sign_WarningUnexplodedAmmo_F"; - atlOffset=-0.25811577; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\22-G.jpg"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item633 - { - dataType="Object"; - class PositionInfo - { - position[]={15107.935,18.691843,17262.438}; - angles[]={0,5.4264717,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - name="x2_5"; - disableSimulation=1; - dynamicSimulation=1; - }; - id=4460; - type="Land_Sign_WarningUnexplodedAmmo_F"; - atlOffset=-0.25811577; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\23-G.jpg"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item634 - { - dataType="Object"; - class PositionInfo - { - position[]={15107.507,18.691843,17261.994}; - angles[]={0,5.4264717,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - name="x2_6"; - disableSimulation=1; - dynamicSimulation=1; - }; - id=4461; - type="Land_Sign_WarningUnexplodedAmmo_F"; - atlOffset=-0.25811577; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\24-G.jpg"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item635 - { - dataType="Object"; - class PositionInfo - { - position[]={15107.079,18.691843,17261.523}; - angles[]={0,5.4264717,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - name="x2_7"; - disableSimulation=1; - dynamicSimulation=1; - }; - id=4462; - type="Land_Sign_WarningUnexplodedAmmo_F"; - atlOffset=-0.25811577; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\25-G.jpg"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item636 - { - dataType="Object"; - class PositionInfo - { - position[]={15106.656,18.691843,17261.08}; - angles[]={0,5.4264717,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - name="x2_8"; - disableSimulation=1; - dynamicSimulation=1; - }; - id=4463; - type="Land_Sign_WarningUnexplodedAmmo_F"; - atlOffset=-0.25811577; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\26-G.jpg"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item637 - { - dataType="Object"; - class PositionInfo - { - position[]={15104.682,18.691843,17255.781}; - angles[]={0,3.8557284,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - name="x2_2"; - disableSimulation=1; - dynamicSimulation=1; - }; - id=4464; - type="Land_Sign_WarningUnexplodedAmmo_F"; - atlOffset=-0.25811577; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\20-T.jpg"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item638 - { - dataType="Object"; - class PositionInfo - { - position[]={15105.128,18.691843,17255.344}; - angles[]={0,3.8557284,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - name="x2_9"; - disableSimulation=1; - dynamicSimulation=1; - }; - id=4465; - type="Land_Sign_WarningUnexplodedAmmo_F"; - atlOffset=-0.25811577; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\21-T.jpg"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item639 - { - dataType="Object"; - class PositionInfo - { - position[]={15105.586,18.691843,17254.934}; - angles[]={0,3.8557284,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - name="x2_10"; - disableSimulation=1; - dynamicSimulation=1; - }; - id=4466; - type="Land_Sign_WarningUnexplodedAmmo_F"; - atlOffset=-0.25811577; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\22-T.jpg"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item640 - { - dataType="Object"; - class PositionInfo - { - position[]={15106.048,18.691843,17254.496}; - angles[]={0,3.8557284,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - name="x2_11"; - disableSimulation=1; - dynamicSimulation=1; - }; - id=4467; - type="Land_Sign_WarningUnexplodedAmmo_F"; - atlOffset=-0.25811577; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\23-T.jpg"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item641 - { - dataType="Object"; - class PositionInfo - { - position[]={15106.493,18.691843,17254.066}; - angles[]={0,3.8557284,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - name="x2_12"; - disableSimulation=1; - dynamicSimulation=1; - }; - id=4468; - type="Land_Sign_WarningUnexplodedAmmo_F"; - atlOffset=-0.25811577; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\24-T.jpg"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item642 - { - dataType="Object"; - class PositionInfo - { - position[]={15106.952,18.691843,17253.633}; - angles[]={0,3.8557284,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - name="x2_13"; - disableSimulation=1; - dynamicSimulation=1; - }; - id=4469; - type="Land_Sign_WarningUnexplodedAmmo_F"; - atlOffset=-0.25811577; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\25-T.jpg"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item643 - { - dataType="Object"; - class PositionInfo - { - position[]={15107.402,18.691843,17253.213}; - angles[]={0,3.8557284,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - name="x2_14"; - disableSimulation=1; - dynamicSimulation=1; - }; - id=4470; - type="Land_Sign_WarningUnexplodedAmmo_F"; - atlOffset=-0.25811577; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\26-T.jpg"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item644 - { - dataType="Object"; - class PositionInfo - { - position[]={15108.311,18.691843,17252.35}; - angles[]={0,3.8557284,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - name="x2_15"; - disableSimulation=1; - dynamicSimulation=1; - }; - id=4471; - type="Land_Sign_WarningUnexplodedAmmo_F"; - atlOffset=-0.25811577; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\27-T.jpg"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item645 - { - dataType="Object"; - class PositionInfo - { - position[]={15108.766,18.691843,17251.92}; - angles[]={0,3.8557284,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - name="x2_16"; - disableSimulation=1; - dynamicSimulation=1; - }; - id=4472; - type="Land_Sign_WarningUnexplodedAmmo_F"; - atlOffset=-0.25811577; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\28-T.jpg"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item646 - { - dataType="Object"; - class PositionInfo - { - position[]={15109.225,18.691843,17251.492}; - angles[]={0,3.8557284,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - name="x2_17"; - disableSimulation=1; - dynamicSimulation=1; - }; - id=4473; - type="Land_Sign_WarningUnexplodedAmmo_F"; - atlOffset=-0.25811577; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\29-T.jpg"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item647 - { - dataType="Object"; - class PositionInfo - { - position[]={15109.683,18.691843,17251.061}; - angles[]={0,3.8557284,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - name="x2_18"; - disableSimulation=1; - dynamicSimulation=1; - }; - id=4474; - type="Land_Sign_WarningUnexplodedAmmo_F"; - atlOffset=-0.25811577; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\30-T.jpg"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item648 - { - dataType="Object"; - class PositionInfo - { - position[]={15110.133,18.691843,17250.639}; - angles[]={0,3.8557284,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - name="x2_19"; - disableSimulation=1; - dynamicSimulation=1; - }; - id=4475; - type="Land_Sign_WarningUnexplodedAmmo_F"; - atlOffset=-0.25811577; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\31-T.jpg"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item649 - { - dataType="Object"; - class PositionInfo - { - position[]={15099.737,18.130072,17272.594}; - angles[]={0,5.4691086,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4476; - type="Land_Billboard_F"; - atlOffset=-1.4814339; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\RW_01.jpg"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item650 - { - dataType="Object"; - class PositionInfo - { - position[]={15095.84,18.130072,17263.371}; - angles[]={0,3.8983667,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4477; - type="Land_Billboard_F"; - atlOffset=-1.5008202; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\RW_01.jpg"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item651 - { - dataType="Object"; - class PositionInfo - { - position[]={15109,18.130072,17268.576}; - angles[]={0,0.75670183,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4478; - type="Land_Billboard_F"; - atlOffset=-1.5137844; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\RW_01.jpg"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item652 - { - dataType="Object"; - class PositionInfo - { - position[]={15100.208,18.130072,17259.256}; - angles[]={0,3.8983667,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4479; - type="Land_Billboard_F"; - atlOffset=-1.5184326; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\RW_02.jpg"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item653 - { - dataType="Object"; - class PositionInfo - { - position[]={15098.929,18.776674,17261.73}; - angles[]={0,2.2340214,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - name="SM_Schild_01"; - }; - id=4480; - type="Land_Sign_WarningUnexplodedAmmo_F"; - atlOffset=-0.16200066; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\30-T.jpg"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - }; - nAttributes=2; - }; - }; - class Item654 - { - dataType="Object"; - class PositionInfo - { - position[]={15098.29,18.777067,17262.334}; - angles[]={0,2.2340214,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - name="SM_Schild_02"; - }; - id=4481; - type="Land_Sign_WarningUnexplodedAmmo_F"; - atlOffset=-0.15999985; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\25-G.jpg"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - }; - nAttributes=2; - }; - }; - class Item655 - { - dataType="Object"; - class PositionInfo - { - position[]={15098.055,18.777285,17269.539}; - angles[]={0,3.8048177,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - name="SM_Schild_03"; - }; - id=4482; - type="Land_Sign_WarningUnexplodedAmmo_F"; - atlOffset=-0.13599968; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\31-T.jpg"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - }; - nAttributes=2; - }; - }; - class Item656 - { - dataType="Object"; - class PositionInfo - { - position[]={15098.652,18.777308,17270.182}; - angles[]={0,3.8048177,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - name="SM_Schild_04"; - }; - id=4483; - type="Land_Sign_WarningUnexplodedAmmo_F"; - atlOffset=-0.13500023; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\20-G.jpg"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - }; - nAttributes=2; - }; - }; - class Item657 - { - dataType="Object"; - class PositionInfo - { - position[]={15105.878,18.776651,17270.363}; - angles[]={0,2.4085543,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - name="SM_Schild_05"; - }; - id=4484; - type="Land_Sign_WarningUnexplodedAmmo_F"; - atlOffset=-0.1590004; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\27-T.jpg"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - }; - nAttributes=2; - }; - }; - class Item658 - { - dataType="Object"; - class PositionInfo - { - position[]={15106.515,18.777214,17269.777}; - angles[]={0,2.4085543,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - name="SM_Schild_06"; - }; - id=4485; - type="Land_Sign_WarningUnexplodedAmmo_F"; - atlOffset=-0.15999985; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\24-G.jpg"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - }; - nAttributes=2; - }; - }; - class Item659 - { - dataType="Object"; - class PositionInfo - { - position[]={15104.636,18.130072,17272.691}; - angles[]={0,0.75670183,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4486; - type="Land_Billboard_F"; - atlOffset=-1.5003796; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\RW_02.jpg"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item660 - { - dataType="Object"; - class PositionInfo - { - position[]={15107.866,18.691843,17252.777}; - angles[]={0,3.8557284,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - name="x2_20"; - disableSimulation=1; - dynamicSimulation=1; - }; - id=4487; - type="Land_Sign_WarningUnexplodedAmmo_F"; - atlOffset=-0.25811577; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\19-T.jpg"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item661 - { - dataType="Object"; - class PositionInfo - { - position[]={15106.219,18.691843,17260.631}; - angles[]={0,5.4264717,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - name="x2_21"; - disableSimulation=1; - dynamicSimulation=1; - }; - id=4488; - type="Land_Sign_WarningUnexplodedAmmo_F"; - atlOffset=-0.25811577; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\19-G.jpg"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item662 - { - dataType="Object"; - class PositionInfo - { - position[]={15103.6,19.827385,17273.135}; - angles[]={0,0.75670183,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4489; - type="Land_Shoot_House_Wall_Long_F"; - atlOffset=0.15990257; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item663 - { - dataType="Object"; - class PositionInfo - { - position[]={15095.613,18.130072,17268.238}; - angles[]={0,5.4691086,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4490; - type="Land_Billboard_F"; - atlOffset=-1.4826145; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\RW_02.jpg"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item664 - { - dataType="Object"; - class PositionInfo - { - position[]={15105.355,18.027382,17253.018}; - angles[]={0,5.4691086,0}; - }; - side="Empty"; - flags=1; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4491; - type="VR_Area_01_square_1x1_yellow_F"; - atlOffset=0.036615372; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item665 - { - dataType="Object"; - class PositionInfo - { - position[]={15098.039,18.027382,17248.416}; - angles[]={0,5.4691086,0}; - }; - side="Empty"; - flags=1; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4492; - type="VR_Area_01_square_1x1_yellow_F"; - atlOffset=0.029470444; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item666 - { - dataType="Object"; - class PositionInfo - { - position[]={15101.681,18.027382,17250.984}; - angles[]={0,5.4691086,0}; - }; - side="Empty"; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4493; - type="VR_Area_01_square_1x1_yellow_F"; - atlOffset=0.033027649; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item667 - { - dataType="Object"; - class PositionInfo - { - position[]={15102.502,18.027382,17265.52}; - angles[]={0,5.4691086,0}; - }; - side="Empty"; - flags=1; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4494; - type="VR_Area_01_square_2x2_yellow_F"; - atlOffset=0.033828735; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item668 - { - dataType="Object"; - class PositionInfo - { - position[]={15096.386,19.428699,17262.871}; - angles[]={0,3.8983667,0}; - }; - side="Empty"; - flags=1; - class Attributes - { - dynamicSimulation=1; - }; - id=4495; - type="Land_ConcreteWall_01_l_8m_F"; - atlOffset=0.52785683; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item669 - { - dataType="Object"; - class PositionInfo - { - position[]={15102.203,19.428699,17257.363}; - angles[]={0,3.8983667,0}; - }; - side="Empty"; - flags=1; - class Attributes - { - dynamicSimulation=1; - }; - id=4496; - type="Land_ConcreteWall_01_l_8m_F"; - atlOffset=0.53353882; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item670 - { - dataType="Object"; - class PositionInfo - { - position[]={15103.534,19.827385,17255.771}; - angles[]={0,0.75670183,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4497; - type="Land_Shoot_House_Wall_Long_F"; - atlOffset=0.15983772; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item671 - { - dataType="Object"; - class PositionInfo - { - position[]={15109.357,19.827385,17250.281}; - angles[]={0,0.75670183,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4498; - type="Land_Shoot_House_Wall_Long_F"; - atlOffset=0.16552544; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item672 - { - dataType="Object"; - class PositionInfo - { - position[]={15108.021,19.428699,17251.875}; - angles[]={0,3.8983667,0}; - }; - side="Empty"; - flags=1; - class Attributes - { - dynamicSimulation=1; - }; - id=4499; - type="Land_ConcreteWall_01_l_8m_F"; - atlOffset=0.53922081; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item673 - { - dataType="Object"; - class PositionInfo - { - position[]={15108.401,19.428699,17263.383}; - angles[]={0,2.327497,0}; - }; - side="Empty"; - flags=1; - class Attributes - { - dynamicSimulation=1; - }; - id=4500; - type="Land_ConcreteWall_01_l_8m_F"; - atlOffset=0.53959084; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item674 - { - dataType="Object"; - class PositionInfo - { - position[]={15101.684,18.761049,17266.285}; - angles[]={4.712389,3.1416695,5.4691105}; - }; - side="Empty"; - class Attributes - { - init="call{this addAction [ " \n " """" + ""Starten (Area 3)"", " \n " {[[],""scripts\simmax\SM_L3_Area1.sqf""] remoteExec [""execVM"",2];}, " \n " [] " \n "];" \n "" \n "this addAction [ " \n " """" + ""Flashlight (on/off)"", " \n " {[[],""scripts\simmax\SM_L3_flashlights_on.sqf""] remoteExec [""execVM"",2];}, " \n " [] " \n "];}"; - name="Schalttafel_03"; - disableSimulation=1; - }; - id=4501; - type="Land_Tablet_02_F"; - atlOffset=0.73303223; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\RW_05.jpg"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item675 - { - dataType="Object"; - class PositionInfo - { - position[]={15109.692,19.827385,17264.572}; - angles[]={0,5.4691086,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4502; - type="Land_Shoot_House_Wall_Long_F"; - atlOffset=0.1658535; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item676 - { - dataType="Object"; - class PositionInfo - { - position[]={15106.945,19.827385,17261.666}; - angles[]={0,5.4691086,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4503; - type="Land_Shoot_House_Wall_Long_F"; - atlOffset=0.16316986; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item677 - { - dataType="Object"; - class PositionInfo - { - position[]={15109.512,19.827385,17264.744}; - angles[]={0,2.327497,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4504; - type="Land_Shoot_House_Wall_Long_F"; - atlOffset=0.16567612; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item678 - { - dataType="Object"; - class PositionInfo - { - position[]={15110.338,19.232386,17257.428}; - angles[]={0,0.75670183,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4505; - type="Land_Shoot_House_Wall_Crouch_F"; - atlOffset=-0.35311508; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item679 - { - dataType="Object"; - class PositionInfo - { - position[]={15113.565,18.130072,17264.186}; - angles[]={0,0.75670183,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4506; - type="Land_Billboard_F"; - atlOffset=-1.5231152; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\RW_02.jpg"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item680 - { - dataType="Object"; - class PositionInfo - { - position[]={15101.13,18.761049,17251.508}; - angles[]={4.712389,3.1416695,5.4691105}; - }; - side="Empty"; - class Attributes - { - init="call{this addAction [ " \n " """" + ""Starten (Area 2)"", " \n " {[[],""scripts\simmax\SM_L2_Area1.sqf""] remoteExec [""execVM"",2];}, " \n " [] " \n "];" \n "}"; - name="Schalttafel_02"; - disableSimulation=1; - }; - id=4507; - type="Land_Tablet_02_F"; - atlOffset=0.73249245; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\RW_05.jpg"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item681 - { - dataType="Object"; - class PositionInfo - { - position[]={15091.098,18.634956,17256.35}; - angles[]={0,5.4691086,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - name="KG_34"; - }; - id=4508; - type="TargetP_Civ2_F"; - atlOffset=-0.11618233; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - }; - nAttributes=1; - }; - }; - class Item682 - { - dataType="Object"; - class PositionInfo - { - position[]={15096.07,18.634956,17261.611}; - angles[]={0,5.4691086,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - name="KG_35"; - }; - id=4509; - type="TargetP_Civ2_F"; - atlOffset=-0.11643219; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - }; - nAttributes=1; - }; - }; - class Item683 - { - dataType="Object"; - class PositionInfo - { - position[]={15095.198,19.827385,17267.26}; - angles[]={0,5.4691086,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4510; - type="Land_Shoot_House_Wall_Long_F"; - atlOffset=0.15169716; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item684 - { - dataType="Object"; - class PositionInfo - { - position[]={15094.814,19.827385,17264.006}; - angles[]={0,0.75670183,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4511; - type="Land_Shoot_House_Wall_Long_F"; - atlOffset=0.15132332; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item685 - { - dataType="Object"; - class PositionInfo - { - position[]={15088.08,19.827385,17256.619}; - angles[]={0,3.8983667,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4512; - type="Land_Shoot_House_Wall_Long_F"; - atlOffset=0.14474678; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item686 - { - dataType="Object"; - class PositionInfo - { - position[]={15101.595,19.232386,17266.377}; - angles[]={0,5.4691086,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4515; - type="Land_Shoot_House_Wall_Crouch_F"; - atlOffset=-0.33852768; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item687 - { - dataType="Object"; - class PositionInfo - { - position[]={15104.007,19.827385,17256.186}; - angles[]={0,3.8983667,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4516; - type="Land_Shoot_House_Wall_Long_F"; - atlOffset=0.1602993; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item688 - { - dataType="Object"; - class PositionInfo - { - position[]={15106.761,19.827385,17261.844}; - angles[]={0,2.327497,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4517; - type="Land_Shoot_House_Wall_Long_F"; - atlOffset=0.16298866; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item689 - { - dataType="Object"; - class PositionInfo - { - position[]={15100.185,15.98007,17272.35}; - angles[]={0,5.4691086,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4518; - type="Land_Billboard_F"; - atlOffset=-3.6342583; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\RW_04.jpg"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item690 - { - dataType="Object"; - class PositionInfo - { - position[]={15096.182,15.98007,17263.742}; - angles[]={0,3.8983667,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4519; - type="Land_Billboard_F"; - atlOffset=-3.6511955; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\RW_04.jpg"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item691 - { - dataType="Object"; - class PositionInfo - { - position[]={15100.551,15.98007,17259.625}; - angles[]={0,3.8983667,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4520; - type="Land_Billboard_F"; - atlOffset=-3.667448; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\RW_04.jpg"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item692 - { - dataType="Object"; - class PositionInfo - { - position[]={15104.253,15.98007,17272.281}; - angles[]={0,0.75670183,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4521; - type="Land_Billboard_F"; - atlOffset=-3.650713; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\RW_04.jpg"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item693 - { - dataType="Object"; - class PositionInfo - { - position[]={15108.614,15.979739,17268.166}; - angles[]={0,0.75670493,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4522; - type="Land_Billboard_F"; - atlOffset=-3.665; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\RW_04.jpg"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item694 - { - dataType="Object"; - class PositionInfo - { - position[]={15103.331,19.827385,17258.205}; - angles[]={0,2.327497,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4523; - type="Land_Shoot_House_Panels_F"; - atlOffset=0.15963936; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item695 - { - dataType="Object"; - class PositionInfo - { - position[]={15103.51,19.827385,17258.031}; - angles[]={0,5.4691086,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4524; - type="Land_Shoot_House_Panels_F"; - atlOffset=0.15981483; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item696 - { - dataType="Object"; - class PositionInfo - { - position[]={15101.869,22.702385,17271.947}; - angles[]={0,2.327497,0}; - }; - side="Empty"; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4525; - type="Land_Shoot_House_Wall_Long_Prone_F"; - atlOffset=3.0332127; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item697 - { - dataType="Object"; - class PositionInfo - { - position[]={15099.125,22.702385,17269.051}; - angles[]={0,2.327497,0}; - }; - side="Empty"; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4526; - type="Land_Shoot_House_Wall_Long_Prone_F"; - atlOffset=3.0305328; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item698 - { - dataType="Object"; - class PositionInfo - { - position[]={15096.382,22.702385,17266.15}; - angles[]={0,2.327497,0}; - }; - side="Empty"; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4527; - type="Land_Shoot_House_Wall_Long_Prone_F"; - atlOffset=3.027853; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item699 - { - dataType="Object"; - class PositionInfo - { - position[]={15104.604,22.702385,17269.391}; - angles[]={0,2.327497,0}; - }; - side="Empty"; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4528; - type="Land_Shoot_House_Wall_Long_Prone_F"; - atlOffset=3.0358829; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item700 - { - dataType="Object"; - class PositionInfo - { - position[]={15101.854,22.702385,17266.453}; - angles[]={0,2.327497,0}; - }; - side="Empty"; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4529; - type="Land_Shoot_House_Wall_Long_Prone_F"; - atlOffset=3.0331974; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item701 - { - dataType="Object"; - class PositionInfo - { - position[]={15099.111,22.702385,17263.557}; - angles[]={0,2.327497,0}; - }; - side="Empty"; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4530; - type="Land_Shoot_House_Wall_Long_Prone_F"; - atlOffset=3.0305195; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item702 - { - dataType="Object"; - class PositionInfo - { - position[]={15101.834,22.702385,17260.994}; - angles[]={0,2.327497,0}; - }; - side="Empty"; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4531; - type="Land_Shoot_House_Wall_Long_Prone_F"; - atlOffset=3.0331783; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item703 - { - dataType="Object"; - class PositionInfo - { - position[]={15104.58,22.702385,17263.902}; - angles[]={0,2.327497,0}; - }; - side="Empty"; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4532; - type="Land_Shoot_House_Wall_Long_Prone_F"; - atlOffset=3.0358601; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item704 - { - dataType="Object"; - class PositionInfo - { - position[]={15107.328,22.702385,17266.805}; - angles[]={0,2.327497,0}; - }; - side="Empty"; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4533; - type="Land_Shoot_House_Wall_Long_Prone_F"; - atlOffset=3.0385437; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item705 - { - dataType="Object"; - class PositionInfo - { - position[]={15095.181,22.702385,17255.404}; - angles[]={0,2.327497,0}; - }; - side="Empty"; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4534; - type="Land_Shoot_House_Wall_Long_Prone_F"; - atlOffset=3.0266819; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item706 - { - dataType="Object"; - class PositionInfo - { - position[]={15097.933,22.702385,17258.311}; - angles[]={0,2.327497,0}; - }; - side="Empty"; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4535; - type="Land_Shoot_House_Wall_Long_Prone_F"; - atlOffset=3.0293674; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item707 - { - dataType="Object"; - class PositionInfo - { - position[]={15092.448,22.702385,17252.482}; - angles[]={0,2.327497,0}; - }; - side="Empty"; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4536; - type="Land_Shoot_House_Wall_Long_Prone_F"; - atlOffset=3.0240116; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item708 - { - dataType="Object"; - class PositionInfo - { - position[]={15104.109,22.620249,17258.834}; - angles[]={0,2.327497,0}; - }; - side="Empty"; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4537; - type="Land_Shoot_House_Wall_Long_Prone_F"; - atlOffset=2.9532642; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item709 - { - dataType="Object"; - class PositionInfo - { - position[]={15114.507,18.976843,17247.76}; - angles[]={0,5.4691086,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4538; - type="Land_SignM_WarningMilitaryArea_english_F"; - atlOffset=0.026884079; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item710 - { - dataType="Object"; - class PositionInfo - { - position[]={15096.069,15.98007,17267.982}; - angles[]={0,5.4691086,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4539; - type="Land_Billboard_F"; - atlOffset=-3.6354656; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\RW_04.jpg"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item711 - { - dataType="Trigger"; - position[]={15117.734,17.936884,17252.523}; - angle=-0.81407636; - class Attributes - { - condition="call{Flashligt_trigger_03 == 1;}"; - onActivation="call{_null = [] execVM ""scripts\simmax\SM_L3_flashlights.sqf"";" \n "Flashligt_trigger_03 = 0;}"; - sizeA=0; - sizeB=0; - repeatable=1; - }; - id=4540; - type="EmptyDetector"; - atlOffset=0.026884079; - }; - class Item712 - { - dataType="Object"; - class PositionInfo - { - position[]={15106.996,19.202883,17262.32}; - angles[]={1.3608193,1.4186543,0.80300236}; - }; - side="Empty"; - class Attributes - { - health=0; - disableSimulation=1; - }; - id=4541; - type="rhssaf_weapon_g36c"; - atlOffset=0.45027924; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item713 - { - dataType="Object"; - class PositionInfo - { - position[]={15106.629,18.396528,17262.271}; - angles[]={0,0.75670493,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - health=0; - ammo=0; - init="call{this addaction [""Open Virtual Arsenal"", { [""Open"",true] call BIS_fnc_arsenal; }]; [this] call grad_customGear_fnc_addAction;}"; - disableSimulation=1; - }; - id=4542; - type="Box_NATO_Equip_F"; - atlOffset=0.025976181; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="[[[[],[]],[[],[]],[[],[]],[[],[]]],true]"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item714 - { - dataType="Object"; - class PositionInfo - { - position[]={15106.427,18.776083,17262.117}; - angles[]={0,2.7535686,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - health=0; - disableSimulation=1; - dynamicSimulation=1; - }; - id=4543; - type="rhsusf_weapon_MP7A1_desert"; - atlOffset=0.023479462; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item715 - { - dataType="Object"; - class PositionInfo - { - position[]={15106.6,18.782885,17262.398}; - angles[]={0,2.0194473,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - health=0; - init="call{this addAction ["""" + ""MP5 / Glock 17"",""scripts\simmax\MP5_01.sqf"", [],6,true,true,"""",""player distance SM_kiste_03 < 5""]; " \n "this addAction ["""" + ""MP7 / Glock 17"",""scripts\simmax\MP7_01.sqf"", [],5,true,true,"""",""player distance SM_kiste_03 < 5""]; " \n "this addAction ["""" + ""G36 / Glock 17"",""scripts\simmax\G36_01.sqf"", [],4,true,true,"""",""player distance SM_kiste_03 < 5""]; " \n "this addAction ["""" + ""HK416 / Glock 17"",""scripts\simmax\HK416_01.sqf"", [],3,true,true,"""",""player distance SM_kiste_03 < 5""];}"; - name="SM_kiste_03"; - disableSimulation=1; - }; - id=4544; - type="Weapon_SMG_05_F"; - atlOffset=0.030281067; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item716 - { - dataType="Object"; - class PositionInfo - { - position[]={15106.168,18.399881,17261.793}; - angles[]={5.0064402,4.9127083,0.73483968}; - }; - side="Empty"; - class Attributes - { - health=0; - disableSimulation=1; - dynamicSimulation=1; - }; - id=4545; - type="rhs_weapon_hk416d10_LMT_d"; - atlOffset=0.41040802; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item717 - { - dataType="Object"; - class PositionInfo - { - position[]={15107.94,18.393528,17246.363}; - angles[]={0,0.75670493,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - health=0; - ammo=0; - init="call{this addaction [""Open Virtual Arsenal"", { [""Open"",true] call BIS_fnc_arsenal; }]; [this] call grad_customGear_fnc_addAction;}"; - disableSimulation=1; - }; - id=4546; - type="Box_NATO_Equip_F"; - atlOffset=0.024255753; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="[[[[],[]],[[],[]],[[],[]],[[],[]]],true]"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item718 - { - dataType="Object"; - class PositionInfo - { - position[]={15108.019,18.772882,17246.605}; - angles[]={0,3.1127334,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - health=0; - ammo=0.71179271; - init="call{this addAction ["""" + ""MP5 / Glock 17"",""scripts\simmax\MP5_01.sqf"", [],6,true,true,"""",""player distance SM_kiste_02 < 5""]; " \n "this addAction ["""" + ""MP7 / Glock 17"",""scripts\simmax\MP7_01.sqf"", [],5,true,true,"""",""player distance SM_kiste_02 < 5""]; " \n "this addAction ["""" + ""G36 / Glock 17"",""scripts\simmax\G36_01.sqf"", [],4,true,true,"""",""player distance SM_kiste_02 < 5""]; " \n "this addAction ["""" + ""HK416 / Glock 17"",""scripts\simmax\HK416_01.sqf"", [],3,true,true,"""",""player distance SM_kiste_02 < 5""];}"; - name="SM_kiste_02"; - disableSimulation=1; - }; - id=4547; - type="rhsusf_weapon_MP7A1_desert"; - atlOffset=0.02327919; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item719 - { - dataType="Object"; - class PositionInfo - { - position[]={15107.688,18.765882,17246.008}; - angles[]={0,2.0194473,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - health=0; - disableSimulation=1; - }; - id=4548; - type="Weapon_SMG_05_F"; - atlOffset=0.016279221; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item720 - { - dataType="Object"; - class PositionInfo - { - position[]={15107.983,18.396883,17246.92}; - angles[]={4.3967395,4.92523,5.422369}; - }; - side="Empty"; - class Attributes - { - health=0; - disableSimulation=1; - }; - id=4549; - type="rhs_weapon_hk416d10_LMT_d"; - atlOffset=0.40918159; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item721 - { - dataType="Object"; - class PositionInfo - { - position[]={15108.027,19.198881,17246.105}; - angles[]={1.3608193,1.4186543,0.80300236}; - }; - side="Empty"; - class Attributes - { - health=0; - disableSimulation=1; - }; - id=4550; - type="rhssaf_weapon_g36c"; - atlOffset=0.44927788; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item722 - { - dataType="Object"; - class PositionInfo - { - position[]={15119.651,19.827385,17257.402}; - angles[]={0,2.327497,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4551; - type="Land_Shoot_House_Panels_F"; - atlOffset=0.17557716; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item723 - { - dataType="Object"; - class PositionInfo - { - position[]={15113.088,15.980186,17263.721}; - angles[]={0,0.75670493,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4552; - type="Land_Billboard_F"; - atlOffset=-3.6730003; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\RW_04.jpg"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item724 - { - dataType="Object"; - class PositionInfo - { - position[]={15117.444,15.98007,17259.623}; - angles[]={0,0.75670183,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4553; - type="Land_Billboard_F"; - atlOffset=-3.6731167; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\RW_04.jpg"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item725 - { - dataType="Object"; - class PositionInfo - { - position[]={15099.186,17.78105,17251.627}; - angles[]={0,5.4691086,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4554; - type="Land_ConcreteKerb_01_8m_F"; - atlOffset=-0.0081157684; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item726 - { - dataType="Object"; - class PositionInfo - { - position[]={15102.616,17.783178,17255.262}; - angles[]={0,5.4691086,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4555; - type="Land_ConcreteKerb_01_2m_F"; - atlOffset=-0.0081157684; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item727 - { - dataType="Object"; - class PositionInfo - { - position[]={15097.235,19.232386,17248.838}; - angles[]={0,5.4691086,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4556; - type="Land_Shoot_House_Wall_Crouch_F"; - atlOffset=-0.35311508; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item728 - { - dataType="Object"; - class PositionInfo - { - position[]={15104.958,19.232386,17253.908}; - angles[]={0,5.4691086,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4557; - type="Land_Shoot_House_Wall_Crouch_F"; - atlOffset=-0.35311508; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item729 - { - dataType="Object"; - class PositionInfo - { - position[]={15109.822,18.027382,17256.879}; - angles[]={0,5.4691086,0}; - }; - side="Empty"; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4558; - type="VR_Area_01_square_1x1_yellow_F"; - atlOffset=0.040977478; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item730 - { - dataType="Object"; - class PositionInfo - { - position[]={15113.54,18.82696,17262.832}; - angles[]={0,2.6703537,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - name="SM_Schild_10"; - }; - id=4559; - type="Land_Sign_WarningUnexplodedAmmo_F"; - atlOffset=-0.12299919; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\27-T.jpg"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - }; - nAttributes=2; - }; - }; - class Item731 - { - dataType="Object"; - class PositionInfo - { - position[]={15113.922,18.82696,17262.463}; - angles[]={0,2.6703537,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - name="SM_Schild_11"; - }; - id=4560; - type="Land_Sign_WarningUnexplodedAmmo_F"; - atlOffset=-0.12299919; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\27-T.jpg"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - }; - nAttributes=2; - }; - }; - class Item732 - { - dataType="Object"; - class PositionInfo - { - position[]={15114.364,18.82696,17262.064}; - angles[]={0,2.6703537,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - name="SM_Schild_12"; - }; - id=4561; - type="Land_Sign_WarningUnexplodedAmmo_F"; - atlOffset=-0.12299919; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\27-T.jpg"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - }; - nAttributes=2; - }; - }; - class Item733 - { - dataType="Object"; - class PositionInfo - { - position[]={15114.728,18.82696,17261.699}; - angles[]={0,2.6703537,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - name="SM_Schild_13"; - }; - id=4562; - type="Land_Sign_WarningUnexplodedAmmo_F"; - atlOffset=-0.12299919; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\27-T.jpg"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - }; - nAttributes=2; - }; - }; - class Item734 - { - dataType="Object"; - class PositionInfo - { - position[]={15115.248,18.82696,17261.219}; - angles[]={0,2.6703537,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - name="SM_Schild_14"; - }; - id=4563; - type="Land_Sign_WarningUnexplodedAmmo_F"; - atlOffset=-0.12299919; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\27-T.jpg"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - }; - nAttributes=2; - }; - }; - class Item735 - { - dataType="Object"; - class PositionInfo - { - position[]={15115.635,18.82696,17260.854}; - angles[]={0,2.6703537,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - name="SM_Schild_15"; - }; - id=4564; - type="Land_Sign_WarningUnexplodedAmmo_F"; - atlOffset=-0.12299919; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\27-T.jpg"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - }; - nAttributes=2; - }; - }; - class Item736 - { - dataType="Object"; - class PositionInfo - { - position[]={15110.254,18.761164,17257.33}; - angles[]={4.712389,3.1415927,0.75670493}; - }; - side="Empty"; - class Attributes - { - init="call{this addAction [ " \n " """" + ""Starten (Area 4)"", " \n " {[[],""scripts\simmax\SM_L4_Area1.sqf""] remoteExec [""execVM"",2];}, " \n " [] " \n "];}"; - name="Schalttafel_04"; - disableSimulation=1; - }; - id=4565; - type="Land_Tablet_02_F"; - atlOffset=0.74151611; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\RW_05.jpg"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item737 - { - dataType="Object"; - class PositionInfo - { - position[]={15117.909,18.130072,17260.066}; - angles[]={0,0.75670183,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4566; - type="Land_Billboard_F"; - atlOffset=-1.5231152; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\RW_01.jpg"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item738 - { - dataType="Object"; - class PositionInfo - { - position[]={15116.088,18.82696,17260.424}; - angles[]={0,2.6703537,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - name="SM_Schild_16"; - }; - id=4567; - type="Land_Sign_WarningUnexplodedAmmo_F"; - atlOffset=-0.12299919; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\27-T.jpg"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - }; - nAttributes=2; - }; - }; - class Item739 - { - dataType="Object"; - class PositionInfo - { - position[]={15116.45,18.82696,17260.08}; - angles[]={0,2.6703537,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - name="SM_Schild_17"; - }; - id=4568; - type="Land_Sign_WarningUnexplodedAmmo_F"; - atlOffset=-0.12299919; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\27-T.jpg"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - }; - nAttributes=2; - }; - }; - class Item740 - { - dataType="Object"; - class PositionInfo - { - position[]={15113.767,22.702385,17260.031}; - angles[]={0,3.8983667,0}; - }; - side="Empty"; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4569; - type="Land_Shoot_House_Wall_Long_Prone_F"; - atlOffset=3.0448322; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item741 - { - dataType="Object"; - class PositionInfo - { - position[]={15110.859,22.702385,17262.773}; - angles[]={0,3.8983667,0}; - }; - side="Empty"; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4570; - type="Land_Shoot_House_Wall_Long_Prone_F"; - atlOffset=3.0419922; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item742 - { - dataType="Object"; - class PositionInfo - { - position[]={15116.676,22.702385,17257.287}; - angles[]={0,3.8983667,0}; - }; - side="Empty"; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4571; - type="Land_Shoot_House_Wall_Long_Prone_F"; - atlOffset=3.0476723; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item743 - { - dataType="Object"; - class PositionInfo - { - position[]={15108.175,21.49777,17242.32}; - angles[]={3.141669,3.9557586,9.3094025e-007}; - }; - side="Empty"; - class Attributes - { - disableSimulation=1; - }; - id=4572; - type="UserTexture1m_F"; - atlOffset=3.5102558; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\RW_06.jpg"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item744 - { - dataType="Object"; - class PositionInfo - { - position[]={15113.938,21.499792,17248.42}; - angles[]={3.141669,3.9557586,9.3094025e-007}; - }; - side="Empty"; - class Attributes - { - disableSimulation=1; - }; - id=4573; - type="UserTexture1m_F"; - atlOffset=3.5179081; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\RW_07.jpg"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item745 - { - dataType="Object"; - class PositionInfo - { - position[]={15104.725,21.650885,17259.607}; - angles[]={0,5.4691086,0}; - }; - side="Empty"; - class Attributes - { - disableSimulation=1; - }; - id=4574; - type="UserTexture1m_F"; - atlOffset=3.6600018; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\RW_07.jpg"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item746 - { - dataType="Object"; - class PositionInfo - { - position[]={15117.049,19.553699,17260.723}; - angles[]={0,3.8983667,0}; - }; - side="Empty"; - flags=1; - class Attributes - { - dynamicSimulation=1; - }; - id=4575; - type="Land_ConcreteWall_01_l_8m_F"; - atlOffset=0.67303658; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item747 - { - dataType="Object"; - class PositionInfo - { - position[]={15111.235,19.553699,17266.203}; - angles[]={0,3.8983667,0}; - }; - side="Empty"; - flags=1; - class Attributes - { - dynamicSimulation=1; - }; - id=4576; - type="Land_ConcreteWall_01_l_8m_F"; - atlOffset=0.66736031; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item748 - { - dataType="Object"; - class PositionInfo - { - position[]={15105.415,19.553699,17271.707}; - angles[]={0,3.8983667,0}; - }; - side="Empty"; - flags=1; - class Attributes - { - dynamicSimulation=1; - }; - id=4577; - type="Land_ConcreteWall_01_l_8m_F"; - atlOffset=0.66167641; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item749 - { - dataType="Object"; - class PositionInfo - { - position[]={15099.397,19.678699,17271.879}; - angles[]={0,2.327497,0}; - }; - side="Empty"; - flags=1; - class Attributes - { - dynamicSimulation=1; - }; - id=4578; - type="Land_ConcreteWall_01_l_8m_F"; - atlOffset=0.78079796; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item750 - { - dataType="Object"; - class PositionInfo - { - position[]={15093.913,19.678699,17266.063}; - angles[]={0,2.327497,0}; - }; - side="Empty"; - flags=1; - class Attributes - { - dynamicSimulation=1; - }; - id=4579; - type="Land_ConcreteWall_01_l_8m_F"; - atlOffset=0.77544212; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item751 - { - dataType="Object"; - class PositionInfo - { - position[]={15088.413,19.678699,17260.24}; - angles[]={0,2.327497,0}; - }; - side="Empty"; - flags=1; - class Attributes - { - dynamicSimulation=1; - }; - id=4580; - type="Land_ConcreteWall_01_l_8m_F"; - atlOffset=0.77007103; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item752 - { - dataType="Object"; - class PositionInfo - { - position[]={15088.736,19.678699,17255.305}; - angles[]={0,3.8983667,0}; - }; - side="Empty"; - flags=1; - class Attributes - { - dynamicSimulation=1; - }; - id=4581; - type="Land_ConcreteWall_01_l_8m_F"; - atlOffset=0.77038765; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item753 - { - dataType="Trigger"; - position[]={15095.234,21.705999,17243.107}; - angle=3.9107411; - class Attributes - { - condition="call{this}"; - onActivation="call{anz1_03 hideObjectGlobal false;" \n "anz2_03 hideObjectGlobal false;" \n "anz3_03 hideObjectGlobal false;" \n "anz4_03 hideObjectGlobal false;" \n """area_mk_03"" setMarkerColor ""Colorred"";}"; - onDeactivation="call{anz1_03 hideObjectGlobal true;" \n "anz2_03 hideObjectGlobal true;" \n "anz4_03 hideObjectGlobal true;" \n """area_mk_03"" setMarkerColor ""Colorblack"";}"; - sizeA=34; - sizeB=34; - sizeC=4; - repeatable=1; - activationBy="ANYPLAYER"; - isRectangle=1; - }; - id=4589; - type="EmptyDetector"; - atlOffset=3.7268353; - }; - class Item754 - { - dataType="Marker"; - position[]={15092.351,0,17246.305}; - name="sniper range_5"; - markerType="RECTANGLE"; - type="Empty"; - colorName="ColorRed"; - fillName="DiagGrid"; - a=30; - b=20; - angle=134.29999; - id=4598; - atlOffset=-17.91; - }; - class Item755 - { - dataType="Object"; - class PositionInfo - { - position[]={14435.248,18.657053,15887.526}; - angles[]={0,0.79964006,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - init="call{[this, ""Shooting Range""] execVM ""scripts\simmax\TP_Setup.sqf"";}"; - disableSimulation=1; - }; - id=4623; - type="SignAd_Sponsor_ION_F"; - atlOffset=-0.29400063; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\area_01.jpg"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item756 - { - dataType="Object"; - class PositionInfo - { - position[]={14434.778,19.410078,15887.965}; - angles[]={0,0.79964811,0}; - }; - side="Empty"; - class Attributes - { - name="anz2_04"; - disableSimulation=1; - }; - id=4626; - type="Sign_Sphere10cm_Geometry_F"; - atlOffset=1.5000782; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="#(argb,8,8,3)color(0.9,0.0,0.033333,1.000000,ca)"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item757 - { - dataType="Object"; - class PositionInfo - { - position[]={14434.778,19.552078,15887.965}; - angles[]={0,0.79964811,0}; - }; - side="Empty"; - class Attributes - { - name="anz2_03"; - disableSimulation=1; - }; - id=4627; - type="Sign_Sphere10cm_Geometry_F"; - atlOffset=1.6420784; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="#(argb,8,8,3)color(0.9,0.0,0.033333,1.000000,ca)"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item758 - { - dataType="Object"; - class PositionInfo - { - position[]={14434.778,19.698999,15887.965}; - angles[]={0,0.79964006,0}; - }; - side="Empty"; - class Attributes - { - name="anz2_02"; - disableSimulation=1; - }; - id=4628; - type="Sign_Sphere10cm_Geometry_F"; - atlOffset=1.7889996; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="#(argb,8,8,3)color(0.9,0.0,0.033333,1.000000,ca)"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item759 - { - dataType="Object"; - class PositionInfo - { - position[]={14434.778,19.843,15887.965}; - angles[]={0,0.79964006,0}; - }; - side="Empty"; - class Attributes - { - name="anz2_01"; - disableSimulation=1; - }; - id=4629; - type="Sign_Sphere10cm_Geometry_F"; - atlOffset=1.9330006; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="#(argb,8,8,3)color(0.9,0.0,0.033333,1.000000,ca)"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item760 - { - dataType="Object"; - class PositionInfo - { - position[]={14183.595,20.296055,16266.126}; - angles[]={0,3.8887856,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - init="call{[this, ""Adler Base""] execVM ""scripts\simmax\TP_Setup.sqf""; " \n "}"; - disableSimulation=1; - }; - id=4630; - type="SignAd_Sponsor_ION_F"; - atlOffset=-0.33499908; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\area_01.jpg"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item761 - { - dataType="Object"; - class PositionInfo - { - position[]={14184.087,21.049,16265.714}; - angles[]={0,3.8887856,0}; - }; - side="Empty"; - class Attributes - { - name="anz1_04"; - disableSimulation=1; - }; - id=4631; - type="Sign_Sphere10cm_Geometry_F"; - atlOffset=1.4589996; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="#(argb,8,8,3)color(0.9,0.0,0.033333,1.000000,ca)"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item762 - { - dataType="Object"; - class PositionInfo - { - position[]={14184.087,21.191,16265.714}; - angles[]={0,3.8887856,0}; - }; - side="Empty"; - class Attributes - { - name="anz1_03"; - disableSimulation=1; - }; - id=4632; - type="Sign_Sphere10cm_Geometry_F"; - atlOffset=1.6009998; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="#(argb,8,8,3)color(0.9,0.0,0.033333,1.000000,ca)"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item763 - { - dataType="Object"; - class PositionInfo - { - position[]={14184.087,21.337999,16265.714}; - angles[]={0,3.8887856,0}; - }; - side="Empty"; - class Attributes - { - name="anz1_02"; - disableSimulation=1; - }; - id=4633; - type="Sign_Sphere10cm_Geometry_F"; - atlOffset=1.7479992; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="#(argb,8,8,3)color(0.9,0.0,0.033333,1.000000,ca)"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item764 - { - dataType="Object"; - class PositionInfo - { - position[]={14184.087,21.482,16265.714}; - angles[]={0,3.8887856,0}; - }; - side="Empty"; - class Attributes - { - name="anz1_01"; - disableSimulation=1; - }; - id=4634; - type="Sign_Sphere10cm_Geometry_F"; - atlOffset=1.8920002; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="#(argb,8,8,3)color(0.9,0.0,0.033333,1.000000,ca)"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item765 - { - dataType="Trigger"; - position[]={14209.475,19.524752,16276.27}; - angle=3.9295545; - class Attributes - { - condition="call{this}"; - onActivation="call{anz1_01 hideObjectGlobal false;" \n "anz2_01 hideObjectGlobal false;" \n "anz3_01 hideObjectGlobal false;" \n "anz4_01 hideObjectGlobal false;" \n """area_mk_01"" setMarkerColor ""Colorred"";" \n "}"; - onDeactivation="call{anz1_01 hideObjectGlobal true;" \n "anz2_01 hideObjectGlobal true;" \n "anz3_01 hideObjectGlobal true;" \n "anz4_01 hideObjectGlobal true;" \n """area_mk_01"" setMarkerColor ""Colorblack"";" \n "}"; - sizeA=110; - sizeB=110; - sizeC=4; - repeatable=1; - activationBy="ANYPLAYER"; - isRectangle=1; - }; - id=4635; - type="EmptyDetector"; - }; - class Item766 - { - dataType="Object"; - class PositionInfo - { - position[]={15112.11,18.586054,17228.225}; - angles[]={0,5.4016891,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - init="call{[this, ""Indoor Range""] execVM ""scripts\simmax\TP_Setup.sqf""; " \n "}"; - disableSimulation=1; - }; - id=4636; - type="SignAd_Sponsor_ION_F"; - atlOffset=-0.36499977; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\area_01.jpg"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item767 - { - dataType="Object"; - class PositionInfo - { - position[]={15111.719,19.34,17227.715}; - angles[]={0,5.4017067,0}; - }; - side="Empty"; - class Attributes - { - name="anz3_04"; - disableSimulation=1; - }; - id=4637; - type="Sign_Sphere10cm_Geometry_F"; - atlOffset=1.4300003; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="#(argb,8,8,3)color(0.9,0.0,0.033333,1.000000,ca)"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item768 - { - dataType="Object"; - class PositionInfo - { - position[]={15111.719,19.482,17227.715}; - angles[]={0,5.4017067,0}; - }; - side="Empty"; - class Attributes - { - name="anz3_03"; - disableSimulation=1; - }; - id=4638; - type="Sign_Sphere10cm_Geometry_F"; - atlOffset=1.5720005; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="#(argb,8,8,3)color(0.9,0.0,0.033333,1.000000,ca)"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item769 - { - dataType="Object"; - class PositionInfo - { - position[]={15111.719,19.628,17227.715}; - angles[]={0,5.4016891,0}; - }; - side="Empty"; - class Attributes - { - name="anz3_02"; - disableSimulation=1; - }; - id=4639; - type="Sign_Sphere10cm_Geometry_F"; - atlOffset=1.7180004; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="#(argb,8,8,3)color(0.9,0.0,0.033333,1.000000,ca)"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item770 - { - dataType="Object"; - class PositionInfo - { - position[]={15111.719,19.771999,17227.715}; - angles[]={0,5.4016891,0}; - }; - side="Empty"; - class Attributes - { - name="anz3_01"; - disableSimulation=1; - }; - id=4640; - type="Sign_Sphere10cm_Geometry_F"; - atlOffset=1.8619995; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="#(argb,8,8,3)color(0.9,0.0,0.033333,1.000000,ca)"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item771 - { - dataType="Object"; - class PositionInfo - { - position[]={15081.434,24.61919,14907.081}; - angles[]={0,3.3244681,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - init="call{[this, ""USS Freedom""] execVM ""scripts\simmax\TP_Setup.sqf""; " \n "}"; - disableSimulation=1; - }; - id=4641; - type="SignAd_Sponsor_ION_F"; - atlOffset=0.049692154; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\area_01.jpg"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item772 - { - dataType="Object"; - class PositionInfo - { - position[]={15082.065,25.373585,14906.983}; - angles[]={0,3.3244858,0}; - }; - side="Empty"; - class Attributes - { - name="anz4_04"; - disableSimulation=1; - }; - id=4642; - type="Sign_Sphere10cm_Geometry_F"; - atlOffset=1.8451405; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="#(argb,8,8,3)color(0.9,0.0,0.033333,1.000000,ca)"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item773 - { - dataType="Object"; - class PositionInfo - { - position[]={15082.065,25.515591,14906.983}; - angles[]={0,3.3244858,0}; - }; - side="Empty"; - class Attributes - { - name="anz4_03"; - disableSimulation=1; - }; - id=4643; - type="Sign_Sphere10cm_Geometry_F"; - atlOffset=1.9871464; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="#(argb,8,8,3)color(0.9,0.0,0.033333,1.000000,ca)"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item774 - { - dataType="Object"; - class PositionInfo - { - position[]={15082.065,25.661587,14906.983}; - angles[]={0,3.3244681,0}; - }; - side="Empty"; - class Attributes - { - name="anz4_02"; - disableSimulation=1; - }; - id=4644; - type="Sign_Sphere10cm_Geometry_F"; - atlOffset=2.1331425; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="#(argb,8,8,3)color(0.9,0.0,0.033333,1.000000,ca)"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item775 - { - dataType="Object"; - class PositionInfo - { - position[]={15082.065,25.805584,14906.983}; - angles[]={0,3.3244681,0}; - }; - side="Empty"; - class Attributes - { - name="anz4_01"; - disableSimulation=1; - }; - id=4645; - type="Sign_Sphere10cm_Geometry_F"; - atlOffset=2.2771397; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="#(argb,8,8,3)color(0.9,0.0,0.033333,1.000000,ca)"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item776 - { - dataType="Trigger"; - position[]={15075.244,17.906761,15000.642}; - angle=3.3363183; - class Attributes - { - condition="call{this}"; - onActivation="call{anz1_04 hideObjectGlobal false;" \n "anz2_04 hideObjectGlobal false;" \n "anz3_04 hideObjectGlobal false;" \n "anz4_04 hideObjectGlobal false;" \n """area_mk_04"" setMarkerColor ""Colorred"";" \n "}"; - onDeactivation="call{anz1_04 hideObjectGlobal true;" \n "anz2_04 hideObjectGlobal true;" \n "anz3_04 hideObjectGlobal true;" \n "anz4_04 hideObjectGlobal true;" \n """area_mk_04"" setMarkerColor ""Colorblack"";" \n "}"; - sizeB=190; - sizeC=25; - repeatable=1; - activationBy="ANYPLAYER"; - isRectangle=1; - }; - id=4646; - type="EmptyDetector"; - atlOffset=74.140999; - }; - class Item777 - { - dataType="Marker"; - position[]={14080,0,17248}; - name="area_mk_01"; - text="Adler Base"; - type="mil_box"; - colorName="ColorBlack"; - id=4648; - atlOffset=-26.85199; - }; - class Item778 - { - dataType="Marker"; - position[]={14080,0,17184}; - name="area_mk_02"; - text="Shooting Range"; - type="mil_box"; - colorName="ColorBlack"; - id=4649; - atlOffset=-25.126907; - }; - class Item779 - { - dataType="Marker"; - position[]={14080,0,17120}; - name="area_mk_03"; - text="Indoor Range"; - type="mil_box"; - colorName="ColorBlack"; - id=4650; - atlOffset=-19.396751; - }; - class Item780 - { - dataType="Marker"; - position[]={14080,0,17056}; - name="area_mk_04"; - text="USS Freedom"; - type="mil_box"; - colorName="ColorBlack"; - id=4651; - atlOffset=-15.580757; - }; - class Item781 - { - dataType="Object"; - class PositionInfo - { - position[]={15071.986,18.614727,17236.361}; - angles[]={0,5.4822884,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - name="KG_42"; - }; - id=4660; - type="TargetP_Civ2_F"; - atlOffset=-0.15334511; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - }; - nAttributes=1; - }; - }; - class Item782 - { - dataType="Object"; - class PositionInfo - { - position[]={15071.398,18.568071,17236.238}; - angles[]={0,5.4822884,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - name="KT_45"; - }; - id=4661; - type="TargetP_Inf4_F"; - atlOffset=-0.20000076; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - }; - nAttributes=1; - }; - }; - class Item783 - { - dataType="Object"; - class PositionInfo - { - position[]={15070.781,18.630072,17235.533}; - angles[]={0,5.4822884,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.60000002; - name="KT_44"; - }; - id=4662; - type="TargetP_Inf3_F"; - atlOffset=-0.13800049; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - }; - nAttributes=1; - }; - }; - class Item784 - { - dataType="Object"; - class PositionInfo - { - position[]={15070.12,18.615072,17234.881}; - angles[]={0,5.4822884,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - name="KT_43"; - }; - id=4663; - type="TargetP_Inf4_F"; - atlOffset=-0.15299988; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - }; - nAttributes=1; - }; - }; - class Item785 - { - dataType="Object"; - class PositionInfo - { - position[]={15069.85,18.615072,17234.424}; - angles[]={0,5.4822884,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - name="KG_41"; - }; - id=4664; - type="TargetP_Civ2_F"; - atlOffset=-0.15299988; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - }; - nAttributes=1; - }; - }; - class Item786 - { - dataType="Object"; - class PositionInfo - { - position[]={15087.256,18.098946,17239.928}; - angles[]={0,5.4822884,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - createAsSimpleObject=1; - disableSimulation=1; - dynamicSimulation=1; - }; - id=4665; - type="Land_Pallets_stack_F"; - atlOffset=-0.24062157; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item787 - { - dataType="Object"; - class PositionInfo - { - position[]={15074.728,18.129923,17228.133}; - angles[]={0,5.4822965,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - createAsSimpleObject=1; - disableSimulation=1; - dynamicSimulation=1; - }; - id=4666; - type="Land_Pallets_stack_F"; - atlOffset=-0.20964432; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item788 - { - dataType="Object"; - class PositionInfo - { - position[]={15075.979,18.572073,17240.703}; - angles[]={0,5.4822884,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - name="KG_53"; - }; - id=4667; - type="TargetP_Civ2_F"; - atlOffset=-0.19599915; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - }; - nAttributes=1; - }; - }; - class Item789 - { - dataType="Object"; - class PositionInfo - { - position[]={15077.498,17.934982,17237.881}; - angles[]={0,3.9095376,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4669; - type="Land_ConcreteKerb_03_BY_long_F"; - atlOffset=0.024982452; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item790 - { - dataType="Object"; - class PositionInfo - { - position[]={15073.876,17.752394,17238.395}; - angles[]={0,5.482296,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4363; - type="Land_ConcreteKerb_01_8m_F"; - atlOffset=-0.036771774; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item791 - { - dataType="Object"; - class PositionInfo - { - position[]={15087.09,17.994198,17226.182}; - angles[]={0,5.4822965,0}; - }; - side="Empty"; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4671; - type="VR_Area_01_square_1x1_yellow_F"; - atlOffset=0.0065803528; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item792 - { - dataType="Object"; - class PositionInfo - { - position[]={15089.511,17.986662,17228.619}; - angles[]={0,5.4822965,0}; - }; - side="Empty"; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4672; - type="VR_Area_01_square_1x1_yellow_F"; - atlOffset=0.0014095306; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item793 - { - dataType="Object"; - class PositionInfo - { - position[]={15087.75,19.285501,17228}; - angles[]={0,5.5094981,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4676; - type="Land_Shoot_House_Wall_Crouch_F"; - atlOffset=-0.29999924; - }; - class Item794 - { - dataType="Object"; - class PositionInfo - { - position[]={15086.32,19.285501,17226.604}; - angles[]={0,5.5094981,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4677; - type="Land_Shoot_House_Wall_Crouch_F"; - atlOffset=-0.29999924; - }; - class Item795 - { - dataType="Object"; - class PositionInfo - { - position[]={15089.18,19.285501,17229.396}; - angles[]={0,5.5094981,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4678; - type="Land_Shoot_House_Wall_Crouch_F"; - atlOffset=-0.29999924; - }; - class Item796 - { - dataType="Object"; - class PositionInfo - { - position[]={15084.884,19.8155,17225.209}; - angles[]={0,5.5095038,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4679; - type="Land_Shoot_House_Panels_F"; - atlOffset=0.15072632; - }; - class Item797 - { - dataType="Object"; - class PositionInfo - { - position[]={15090.616,19.8155,17230.791}; - angles[]={0,5.5095038,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4680; - type="Land_Shoot_House_Panels_F"; - atlOffset=0.15632629; - }; - class Item798 - { - dataType="Object"; - class PositionInfo - { - position[]={15086.32,21.9405,17226.604}; - angles[]={0,5.5095038,0}; - }; - side="Empty"; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4681; - type="Land_Shoot_House_Wall_Crouch_F"; - atlOffset=2.2771301; - }; - class Item799 - { - dataType="Object"; - class PositionInfo - { - position[]={15087.75,21.9405,17228}; - angles[]={0,5.5095038,0}; - }; - side="Empty"; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4682; - type="Land_Shoot_House_Wall_Crouch_F"; - atlOffset=2.2785263; - }; - class Item800 - { - dataType="Object"; - class PositionInfo - { - position[]={15089.18,21.9405,17229.396}; - angles[]={0,5.5095038,0}; - }; - side="Empty"; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4683; - type="Land_Shoot_House_Wall_Crouch_F"; - atlOffset=2.2799225; - }; - class Item801 - { - dataType="Object"; - class PositionInfo - { - position[]={15080.601,21.968508,17221.02}; - angles[]={0,5.5095038,0}; - }; - side="Empty"; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4702; - type="Land_Shoot_House_Wall_Crouch_F"; - atlOffset=2.2995529; - }; - class Item802 - { - dataType="Object"; - class PositionInfo - { - position[]={15082.027,21.968508,17222.404}; - angles[]={0,5.5095038,0}; - }; - side="Empty"; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4703; - type="Land_Shoot_House_Wall_Crouch_F"; - atlOffset=2.3009453; - }; - class Item803 - { - dataType="Object"; - class PositionInfo - { - position[]={15083.458,21.968508,17223.813}; - angles[]={0,5.5095038,0}; - }; - side="Empty"; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4704; - type="Land_Shoot_House_Wall_Crouch_F"; - atlOffset=2.3023415; - }; - class Item804 - { - dataType="Object"; - class PositionInfo - { - position[]={15083.458,19.285501,17223.813}; - angles[]={0,5.5094981,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4705; - type="Land_Shoot_House_Wall_Crouch_F"; - atlOffset=-0.29999924; - }; - class Item805 - { - dataType="Object"; - class PositionInfo - { - position[]={15082.027,19.285501,17222.404}; - angles[]={0,5.5094981,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - name="Schalttafel_01_L"; - disableSimulation=1; - dynamicSimulation=1; - }; - id=4706; - type="Land_Shoot_House_Wall_Crouch_F"; - atlOffset=-0.29999924; - }; - class Item806 - { - dataType="Object"; - class PositionInfo - { - position[]={15092.042,21.9405,17232.188}; - angles[]={0,5.5095038,0}; - }; - side="Empty"; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4708; - type="Land_Shoot_House_Wall_Crouch_F"; - atlOffset=2.2827187; - }; - class Item807 - { - dataType="Object"; - class PositionInfo - { - position[]={15093.473,21.9405,17233.596}; - angles[]={0,5.5095038,0}; - }; - side="Empty"; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4709; - type="Land_Shoot_House_Wall_Crouch_F"; - atlOffset=2.2841148; - }; - class Item808 - { - dataType="Object"; - class PositionInfo - { - position[]={15094.899,21.9405,17234.98}; - angles[]={0,5.5095038,0}; - }; - side="Empty"; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4710; - type="Land_Shoot_House_Wall_Crouch_F"; - atlOffset=2.2855072; - }; - class Item809 - { - dataType="Object"; - class PositionInfo - { - position[]={15093.473,19.285501,17233.596}; - angles[]={0,5.5094981,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - name="Schalttafel_01_R"; - disableSimulation=1; - dynamicSimulation=1; - }; - id=4712; - type="Land_Shoot_House_Wall_Crouch_F"; - atlOffset=-0.29999924; - }; - class Item810 - { - dataType="Object"; - class PositionInfo - { - position[]={15092.042,19.285501,17232.188}; - angles[]={0,5.5094981,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4713; - type="Land_Shoot_House_Wall_Crouch_F"; - atlOffset=-0.29999924; - }; - class Item811 - { - dataType="Object"; - class PositionInfo - { - position[]={15076.326,18.606071,17241.105}; - angles[]={0,5.4822884,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.60000002; - name="KT_57"; - }; - id=4716; - type="TargetP_Inf4_F"; - atlOffset=-0.16200066; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - }; - nAttributes=1; - }; - }; - class Item812 - { - dataType="Logic"; - class PositionInfo - { - position[]={14127.469,20.104572,16015.739}; - }; - areaSize[]={1,-1,1}; - id=4733; - type="ModuleEditTerrainObject_F"; - atlOffset=1.9073486e-006; - class CustomAttributes - { - class Attribute0 - { - property="#name"; - expression="_this setVariable [""#name"",_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value=""; - }; - }; - }; - class Attribute1 - { - property="#filter"; - expression="_this setVariable [""#filter"",_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=7; - }; - }; - }; - class Attribute2 - { - property="#initServer"; - expression="_this setVariable [""#initServer"",_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value=""; - }; - }; - }; - class Attribute3 - { - property="#state"; - expression="_this setVariable [""#state"",_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=5; - }; - }; - }; - class Attribute4 - { - property="#allowDamage"; - expression="_this setVariable [""#allowDamage"",_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - }; - class Attribute5 - { - property="#doorStates"; - expression="_this setVariable [""#doorStates"",_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0; - }; - }; - }; - class Attribute6 - { - property="#init"; - expression="_this setVariable [""#init"",_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value=""; - }; - }; - }; - nAttributes=7; - }; - }; - class Item813 - { - dataType="Logic"; - class PositionInfo - { - position[]={14196.756,21.218267,16095.187}; - }; - areaSize[]={1,-1,1}; - id=4735; - type="ModuleEditTerrainObject_F"; - class CustomAttributes - { - class Attribute0 - { - property="#name"; - expression="_this setVariable [""#name"",_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value=""; - }; - }; - }; - class Attribute1 - { - property="#filter"; - expression="_this setVariable [""#filter"",_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=7; - }; - }; - }; - class Attribute2 - { - property="#initServer"; - expression="_this setVariable [""#initServer"",_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value=""; - }; - }; - }; - class Attribute3 - { - property="#state"; - expression="_this setVariable [""#state"",_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=5; - }; - }; - }; - class Attribute4 - { - property="#allowDamage"; - expression="_this setVariable [""#allowDamage"",_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - }; - class Attribute5 - { - property="#doorStates"; - expression="_this setVariable [""#doorStates"",_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0; - }; - }; - }; - class Attribute6 - { - property="#init"; - expression="_this setVariable [""#init"",_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value=""; - }; - }; - }; - nAttributes=7; - }; - }; - class Item814 - { - dataType="Logic"; - class PositionInfo - { - position[]={14162.61,21.125385,16139.642}; - }; - areaSize[]={1,-1,1}; - id=4736; - type="ModuleEditTerrainObject_F"; - class CustomAttributes - { - class Attribute0 - { - property="#name"; - expression="_this setVariable [""#name"",_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value=""; - }; - }; - }; - class Attribute1 - { - property="#filter"; - expression="_this setVariable [""#filter"",_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=7; - }; - }; - }; - class Attribute2 - { - property="#initServer"; - expression="_this setVariable [""#initServer"",_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value=""; - }; - }; - }; - class Attribute3 - { - property="#state"; - expression="_this setVariable [""#state"",_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=5; - }; - }; - }; - class Attribute4 - { - property="#allowDamage"; - expression="_this setVariable [""#allowDamage"",_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - }; - class Attribute5 - { - property="#doorStates"; - expression="_this setVariable [""#doorStates"",_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0; - }; - }; - }; - class Attribute6 - { - property="#init"; - expression="_this setVariable [""#init"",_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value=""; - }; - }; - }; - nAttributes=7; - }; - }; - class Item815 - { - dataType="Object"; - class PositionInfo - { - position[]={14125.458,18.247059,16444.434}; - angles[]={0,5.2957916,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - textures="Redstone"; - }; - id=4743; - type="C_Kart_01_Blu_F"; - atlOffset=-0.0093860626; - }; - class Item816 - { - dataType="Object"; - class PositionInfo - { - position[]={14122.977,18.260855,16443.795}; - angles[]={0.004394535,5.2285089,6.2825875}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=4744; - type="C_Kart_01_Fuel_F"; - }; - class Item817 - { - dataType="Object"; - class PositionInfo - { - position[]={14127.672,18.257412,16445.246}; - angles[]={0,5.2684679,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=4745; - type="C_Kart_01_Vrana_F"; - atlOffset=0.0028953552; - }; - class Item818 - { - dataType="Object"; - class PositionInfo - { - position[]={14120.379,18.247543,16443.025}; - angles[]={0,5.1704178,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=4746; - type="C_Kart_01_F"; - atlOffset=0.001241684; - }; - class Item819 - { - dataType="Object"; - class PositionInfo - { - position[]={14117.737,18.218199,16442.504}; - angles[]={0,5.2209182,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=4747; - type="C_Kart_01_Blu_F"; - atlOffset=0.0012283325; - }; - class Item820 - { - dataType="Object"; - class PositionInfo - { - position[]={14115.246,18.201265,16441.873}; - angles[]={0,5.2405877,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=4748; - type="C_Kart_01_Fuel_F"; - atlOffset=0.015298843; - }; - class Item821 - { - dataType="Object"; - class PositionInfo - { - position[]={14128.206,20.087029,16450.604}; - angles[]={0,4.4775763,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - disableSimulation=1; - }; - id=4750; - type="Land_FinishGate_01_wide_F"; - atlOffset=0.0044593811; - }; - class Item822 - { - dataType="Object"; - class PositionInfo - { - position[]={14127.008,17.188833,16448.178}; - angles[]={0.0075723142,0,0.00034526698}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4751; - type="Oil_Spill_F"; - atlOffset=3.8146973e-006; - }; - class Item823 - { - dataType="Object"; - class PositionInfo - { - position[]={14186.46,20.096487,16266.923}; - angles[]={0,2.7079308,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=4760; - type="Land_CampingChair_V2_F"; - }; - class Item824 - { - dataType="Object"; - class PositionInfo - { - position[]={14184.599,20.096487,16269.142}; - angles[]={0,5.6145558,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=4761; - type="Land_CampingChair_V2_F"; - }; - class Item825 - { - dataType="Object"; - class PositionInfo - { - position[]={14185.6,19.996504,16268.028}; - angles[]={0,3.995914,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4762; - type="Land_CampingTable_small_F"; - atlOffset=0.0013027191; - }; - class Item826 - { - dataType="Object"; - class PositionInfo - { - position[]={14118.072,17.608522,16453.85}; - angles[]={0,6.0195184,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4764; - type="ArrowDesk_L_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item827 - { - dataType="Object"; - class PositionInfo - { - position[]={15081.61,17.932556,17233.908}; - angles[]={0,3.9095376,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - dynamicSimulation=1; - }; - id=4765; - type="Land_ConcreteKerb_03_BY_long_F"; - atlOffset=0.022556305; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item828 - { - dataType="Logic"; - class PositionInfo - { - position[]={15115.179,17.910034,16529.131}; - angles[]={0,5.4874544,0}; - }; - areaSize[]={950,0,48}; - areaIsRectangle=1; - flags=1; - id=4769; - type="ModuleHideTerrainObjects_F"; - atlOffset=0.13489532; - class CustomAttributes - { - class Attribute0 - { - property="#filter"; - expression="_this setVariable [""#filter"",_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=15; - }; - }; - }; - class Attribute1 - { - property="#hideLocally"; - expression="_this setVariable [""#hideLocally"",_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item829 - { - dataType="Object"; - class PositionInfo - { - position[]={14706.792,17.594236,16188.292}; - angles[]={0,3.9115796,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - dynamicSimulation=1; - }; - id=4773; - type="Land_ConcreteWall_01_l_8m_F"; - atlOffset=-1.2175789; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item830 - { - dataType="Object"; - class PositionInfo - { - position[]={14714.805,17.703484,16180.483}; - angles[]={0,3.9115796,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - dynamicSimulation=1; - }; - id=4775; - type="Land_ConcreteWall_01_l_4m_F"; - atlOffset=-1.1065159; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item831 - { - dataType="Object"; - class PositionInfo - { - position[]={14207.14,20.222336,16259.859}; - angles[]={0.014664836,5.3781447,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4779; - type="Land_CampingTable_F"; - atlOffset=-0.0013198853; - }; - class Item832 - { - dataType="Object"; - class PositionInfo - { - position[]={14208.486,20.19927,16261.549}; - angles[]={0.021328852,2.2131238,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4780; - type="Land_CampingTable_F"; - atlOffset=0.010702133; - }; - class Item833 - { - dataType="Object"; - class PositionInfo - { - position[]={14209.868,20.161449,16263.283}; - angles[]={0.022662206,5.3781447,6.2818484}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4781; - type="Land_CampingTable_F"; - atlOffset=0.010704041; - }; - class Item834 - { - dataType="Object"; - class PositionInfo - { - position[]={14209.813,20.718828,16263.347}; - angles[]={0.022654373,5.3770976,6.2818413}; - }; - side="Empty"; - class Attributes - { - init="call{[this,""BASE""] execVM ""vehicleSpawnerLaptops.sqf""}"; - disableSimulation=1; - }; - id=4782; - type="Land_Laptop_unfolded_F"; - atlOffset=0.82500076; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\VehicleSpawnerLandTest.jpg"; - }; - }; - }; - nAttributes=1; - }; - }; - class Item835 - { - dataType="Object"; - class PositionInfo - { - position[]={14208.43,20.75717,16261.589}; - angles[]={0.021327924,5.3477936,0}; - }; - side="Empty"; - class Attributes - { - init="call{[this,""BASE""] execVM ""vehicleSpawnerLaptops.sqf""}"; - disableSimulation=1; - }; - id=4783; - type="Land_Laptop_unfolded_F"; - atlOffset=0.82500076; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\VehicleSpawnerLandTest.jpg"; - }; - }; - }; - nAttributes=1; - }; - }; - class Item836 - { - dataType="Object"; - class PositionInfo - { - position[]={14207.09,20.780666,16259.891}; - angles[]={0.014660765,5.3770976,0}; - }; - side="Empty"; - class Attributes - { - init="call{[this,""CARRIER""] execVM ""vehicleSpawnerLaptops.sqf""}"; - disableSimulation=1; - }; - id=4784; - type="Land_Laptop_unfolded_F"; - atlOffset=0.81299973; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\VehicleSpawnerTEST.jpg"; - }; - }; - }; - nAttributes=1; - }; - }; - class Item837 - { - dataType="Object"; - class PositionInfo - { - position[]={14210.724,20.867142,16266.848}; - angles[]={0.022662206,0.76116437,6.2818484}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=4787; - type="Land_HBarrier_Big_F"; - }; - class Item838 - { - dataType="Logic"; - class PositionInfo - { - position[]={14175.294,21.05201,16083.361}; - angles[]={6.2671871,0,6.2751918}; - }; - init="call{{ _x hideObjectGlobal true } foreach (nearestTerrainObjects [this,[],20])}"; - id=4788; - type="Logic"; - atlOffset=-0.025671005; - }; - class Item839 - { - dataType="Logic"; - class PositionInfo - { - position[]={14142.901,20.295191,16038.837}; - angles[]={6.2578607,0,6.2698507}; - }; - init="call{{ _x hideObjectGlobal true } foreach (nearestTerrainObjects [this,[""structures""],10])}"; - id=4792; - type="Logic"; - atlOffset=-1.9073486e-006; - }; - class Item840 - { - dataType="Group"; - side="Civilian"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={14433.82,17.911438,15888.47}; - angles[]={0,3.4936953,0}; - }; - side="Civilian"; - flags=7; - class Attributes - { - name="sol_200"; - disableSimulation=1; - }; - id=4291; - type="B_RangeMaster_F"; - class CustomAttributes - { - class Attribute0 - { - property="acex_headless_blacklist"; - expression="_this setVariable [""acex_headless_blacklist"",_value,true]"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute2 - { - property="enableStamina"; - expression="_this enablestamina _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute3 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1.04; - }; - }; - }; - class Attribute4 - { - property="face"; - expression="_this setface _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="WhiteHead_01"; - }; - }; - }; - nAttributes=5; - }; - }; - }; - class Attributes - { - }; - id=4795; - }; - class Item841 - { - dataType="Object"; - class PositionInfo - { - position[]={19991.898,0.96540165,20239.082}; - angles[]={0.089096971,0,0.11153521}; - }; - side="Empty"; - flags=4; - class Attributes - { - name="fw2"; - }; - id=4802; - type="Land_WaterBottle_01_full_F"; - atlOffset=-0.0019911528; - }; - class Item842 - { - dataType="Object"; - class PositionInfo - { - position[]={19963.695,11.271636,20172.941}; - angles[]={0.091741994,0,0.097027972}; - }; - side="Empty"; - flags=4; - class Attributes - { - name="fw1"; - }; - id=4803; - type="Land_WaterBottle_01_full_F"; - }; - class Item843 - { - dataType="Object"; - class PositionInfo - { - position[]={20042.088,20.621403,20234.451}; - angles[]={0.089096971,0,0.18583085}; - }; - side="Empty"; - flags=4; - class Attributes - { - name="fw3"; - }; - id=4804; - type="Land_WaterBottle_01_full_F"; - atlOffset=-0.37145233; - }; - class Item844 - { - dataType="Object"; - class PositionInfo - { - position[]={20072.486,18.677519,20056.98}; - angles[]={4.9511151,2.9664836,5.3549666}; - }; - side="Empty"; - class Attributes - { - init="call{firebase addAction [""Celebration"", ""Scripts\XiviD\Celebration.sqf""];" \n "firebase addAction [""Big Celebration"", ""Scripts\XiviD\BigCelebration.sqf""];" \n "" \n "}"; - name="Firebase"; - disableSimulation=1; - }; - id=4805; - type="Land_Tablet_02_F"; - atlOffset=1.316; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\RW_08.jpg"; - }; - }; - }; - nAttributes=1; - }; - }; - class Item845 - { - dataType="Object"; - class PositionInfo - { - position[]={14155.54,19.751684,16296.34}; - angles[]={0,5.4329829,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - disableSimulation=1; - }; - id=4807; - type="VR_Billboard_01_F"; - atlOffset=-1.2199974; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item846 - { - dataType="Object"; - class PositionInfo - { - position[]={20090.414,18.088549,20037.338}; - angles[]={0,2.6961148,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - disableSimulation=1; - }; - id=4810; - type="VR_Billboard_01_F"; - atlOffset=-1.2199974; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item847 - { - dataType="Marker"; - position[]={20090.047,0,20038.365}; - name="tele"; - type="Empty"; - angle=333.9519; - id=4813; - atlOffset=-17.541279; - }; - class Item848 - { - dataType="Marker"; - position[]={14191.369,0,16272.558}; - name="tele2"; - type="Empty"; - angle=219.99992; - id=4814; - atlOffset=-19.585079; - }; - class Item849 - { - dataType="Object"; - class PositionInfo - { - position[]={14402.488,20.593527,15384.706}; - angles[]={0,5.2997556,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=4816; - type="Land_LightHouse_F"; - class CustomAttributes - { - class Attribute0 - { - property="DoorStates"; - expression="['init',_this,_value] call bis_fnc_3DENAttributeDoorStates;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - nAttributes=1; - }; - }; - class Item850 - { - dataType="Group"; - side="West"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={14193.642,19.586254,16272.141}; - angles[]={0.0066682254,3.8592508,6.2791886}; - }; - side="West"; - flags=6; - class Attributes - { - skill=0.60000002; - name="int1"; - description="Zeus #1"; - isPlayer=1; - isPlayable=1; - class Inventory - { - class primaryWeapon - { - name="rhs_weap_hk416d145"; - optics="optic_ERCO_blk_F"; - flashlight="acc_pointer_IR"; - class primaryMuzzleMag - { - name="rhs_mag_30Rnd_556x45_Mk318_Stanag"; - ammoLeft=30; - }; - }; - class handgun - { - name="rhsusf_weap_glock17g4"; - class primaryMuzzleMag - { - name="rhsusf_mag_17Rnd_9x19_FMJ"; - ammoLeft=17; - }; - }; - class binocular - { - name="Binocular"; - }; - class uniform - { - typeName="SMM_Uniform_BW_FT"; - isBackpack=0; - class MagazineCargo - { - items=2; - class Item0 - { - name="rhs_mag_30Rnd_556x45_Mk318_Stanag"; - count=3; - ammoLeft=30; - }; - class Item1 - { - name="rhs_mag_30Rnd_556x45_M855A1_Stanag_Tracer_Red"; - count=1; - ammoLeft=30; - }; - }; - class ItemCargo - { - items=2; - class Item0 - { - name="ACE_fieldDressing"; - count=2; - }; - class Item1 - { - name="ACE_morphine"; - count=1; - }; - }; - }; - class vest - { - typeName="SMM_Vest_BW_FT"; - isBackpack=0; - class MagazineCargo - { - items=8; - class Item0 - { - name="SmokeShell"; - count=1; - ammoLeft=1; - }; - class Item1 - { - name="SmokeShellGreen"; - count=1; - ammoLeft=1; - }; - class Item2 - { - name="Chemlight_green"; - count=2; - ammoLeft=1; - }; - class Item3 - { - name="HandGrenade"; - count=2; - ammoLeft=1; - }; - class Item4 - { - name="MiniGrenade"; - count=3; - ammoLeft=1; - }; - class Item5 - { - name="rhs_mag_30Rnd_556x45_M855A1_Stanag_Tracer_Red"; - count=7; - ammoLeft=30; - }; - class Item6 - { - name="rhs_mag_an_m14_th3"; - count=2; - ammoLeft=1; - }; - class Item7 - { - name="rhsusf_mag_17Rnd_9x19_JHP"; - count=1; - ammoLeft=17; - }; - }; - class ItemCargo - { - items=3; - class Item0 - { - name="ACE_EarPlugs"; - count=1; - }; - class Item1 - { - name="ACE_fieldDressing"; - count=10; - }; - class Item2 - { - name="ACE_morphine"; - count=6; - }; - }; - }; - map="ItemMap"; - compass="ItemCompass"; - watch="ItemWatch"; - radio="tf_anprc152"; - gps="ItemGPS"; - headgear="SMM_Helmet_BW_FT"; - }; - }; - id=4829; - type="B_Soldier_F"; - class CustomAttributes - { - class Attribute0 - { - property="acex_headless_blacklist"; - expression="_this setVariable [""acex_headless_blacklist"",_value,true]"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isHandcuffed"; - expression="if (_value) then {[objNull, [_this], true] call ace_captives_fnc_moduleHandcuffed}"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute2 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1.03; - }; - }; - }; - class Attribute3 - { - property="ace_isSurrendered"; - expression="if (_value) then {[objNull, [_this], true] call ace_captives_fnc_moduleSurrender}"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=4; - }; - }; - }; - class Attributes - { - }; - id=4828; - }; - class Item851 - { - dataType="Group"; - side="West"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={14189.816,19.578009,16275.71}; - angles[]={0.0066682254,3.8592575,6.2778587}; - }; - side="West"; - flags=6; - class Attributes - { - skill=0.60000002; - name="int2"; - description="Zeus #2"; - isPlayable=1; - class Inventory - { - class primaryWeapon - { - name="arifle_SPAR_01_blk_F"; - optics="optic_ERCO_blk_F"; - flashlight="acc_pointer_IR"; - class primaryMuzzleMag - { - name="30Rnd_556x45_Stanag_Tracer_Red"; - ammoLeft=30; - }; - }; - class handgun - { - name="rhsusf_weap_glock17g4"; - class primaryMuzzleMag - { - name="rhsusf_mag_17Rnd_9x19_FMJ"; - ammoLeft=17; - }; - }; - class binocular - { - name="Binocular"; - }; - class uniform - { - typeName="SMM_Uniform_BW_FT"; - isBackpack=0; - class MagazineCargo - { - items=1; - class Item0 - { - name="30Rnd_556x45_Stanag_Tracer_Green"; - count=4; - ammoLeft=30; - }; - }; - class ItemCargo - { - items=2; - class Item0 - { - name="ACE_fieldDressing"; - count=2; - }; - class Item1 - { - name="ACE_morphine"; - count=1; - }; - }; - }; - class vest - { - typeName="SMM_Vest_BW_FT"; - isBackpack=0; - class MagazineCargo - { - items=6; - class Item0 - { - name="SmokeShell"; - count=1; - ammoLeft=1; - }; - class Item1 - { - name="SmokeShellGreen"; - count=1; - ammoLeft=1; - }; - class Item2 - { - name="Chemlight_green"; - count=2; - ammoLeft=1; - }; - class Item3 - { - name="HandGrenade"; - count=2; - ammoLeft=1; - }; - class Item4 - { - name="MiniGrenade"; - count=3; - ammoLeft=1; - }; - class Item5 - { - name="30Rnd_556x45_Stanag_Tracer_Red"; - count=2; - ammoLeft=30; - }; - }; - class ItemCargo - { - items=3; - class Item0 - { - name="ACE_EarPlugs"; - count=1; - }; - class Item1 - { - name="ACE_fieldDressing"; - count=10; - }; - class Item2 - { - name="ACE_morphine"; - count=6; - }; - }; - }; - map="ItemMap"; - compass="ItemCompass"; - watch="ItemWatch"; - radio="tf_anprc152"; - gps="ItemGPS"; - headgear="SMM_Helmet_BW_FT"; - }; - }; - id=4833; - type="B_Soldier_F"; - class CustomAttributes - { - class Attribute0 - { - property="acex_headless_blacklist"; - expression="_this setVariable [""acex_headless_blacklist"",_value,true]"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isHandcuffed"; - expression="if (_value) then {[objNull, [_this], true] call ace_captives_fnc_moduleHandcuffed}"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute2 - { - property="ace_isSurrendered"; - expression="if (_value) then {[objNull, [_this], true] call ace_captives_fnc_moduleSurrender}"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=3; - }; - }; - }; - class Attributes - { - }; - id=4832; - }; - class Item852 - { - dataType="Logic"; - class PositionInfo - { - position[]={14191.742,20.09482,16335.796}; - angles[]={0.013332055,0,0.0039967569}; - }; - id=4834; - type="ModuleCurator_F"; - atlOffset=1.1084671; - class CustomAttributes - { - class Attribute0 - { - property="ModuleCurator_F_Owner"; - expression="_this setVariable ['Owner',_value,true];"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="int1"; - }; - }; - }; - class Attribute1 - { - property="ModuleCurator_F_Forced"; - expression="_this setVariable ['Forced',_value,true];"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0; - }; - }; - }; - class Attribute2 - { - property="ModuleCurator_F_Name"; - expression="_this setVariable ['Name',_value,true];"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value=""; - }; - }; - }; - class Attribute3 - { - property="ModuleInfo"; - expression="false"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - }; - class Attribute4 - { - property="ModuleCurator_F_Addons"; - expression="_this setVariable ['Addons',_value,true];"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=3; - }; - }; - }; - nAttributes=5; - }; - }; - class Item853 - { - dataType="Logic"; - class PositionInfo - { - position[]={14195.377,19.53974,16336.061}; - angles[]={0.013332055,0,0.0039967569}; - }; - id=4835; - type="ModuleCurator_F"; - atlOffset=0.54238892; - class CustomAttributes - { - class Attribute0 - { - property="ModuleCurator_F_Owner"; - expression="_this setVariable ['Owner',_value,true];"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="int2"; - }; - }; - }; - class Attribute1 - { - property="ModuleCurator_F_Forced"; - expression="_this setVariable ['Forced',_value,true];"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0; - }; - }; - }; - class Attribute2 - { - property="ModuleCurator_F_Name"; - expression="_this setVariable ['Name',_value,true];"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value=""; - }; - }; - }; - class Attribute3 - { - property="ModuleInfo"; - expression="false"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - }; - class Attribute4 - { - property="ModuleCurator_F_Addons"; - expression="_this setVariable ['Addons',_value,true];"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=3; - }; - }; - }; - nAttributes=5; - }; - }; - class Item854 - { - dataType="Logic"; - class PositionInfo - { - position[]={14193.549,20.126894,16333.822}; - angles[]={0.023993526,0,0.0039967569}; - }; - id=4836; - type="ModuleCurator_F"; - atlOffset=1.0944386; - class CustomAttributes - { - class Attribute0 - { - property="ModuleCurator_F_Owner"; - expression="_this setVariable ['Owner',_value,true];"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="int3"; - }; - }; - }; - class Attribute1 - { - property="ModuleCurator_F_Forced"; - expression="_this setVariable ['Forced',_value,true];"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=0; - }; - }; - }; - class Attribute2 - { - property="ModuleCurator_F_Name"; - expression="_this setVariable ['Name',_value,true];"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value=""; - }; - }; - }; - class Attribute3 - { - property="ModuleInfo"; - expression="false"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - }; - class Attribute4 - { - property="ModuleCurator_F_Addons"; - expression="_this setVariable ['Addons',_value,true];"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=3; - }; - }; - }; - nAttributes=5; - }; - }; - class Item855 - { - dataType="Object"; - class PositionInfo - { - position[]={14154.542,20.311892,16294.549}; - angles[]={0,5.0401969,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=4871; - type="Land_Sign_WarningUnexplodedAmmo_F"; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\WarningGrenades.jpg"; - }; - }; - }; - nAttributes=1; - }; - }; - class Item856 - { - dataType="Logic"; - class PositionInfo - { - position[]={14188.611,21.089237,16079.329}; - angles[]={0.043118879,0,0.69915211}; - }; - init="call{{ _x hideObjectGlobal true } foreach (nearestTerrainObjects [this,[""structures""],10])}"; - id=4874; - type="Logic"; - atlOffset=0.0037250519; - }; - class Item857 - { - dataType="Logic"; - class PositionInfo - { - position[]={14129.54,19.915689,16010.224}; - angles[]={6.2671871,0,6.2751918}; - }; - init="call{{ _x hideObjectGlobal true } foreach (nearestTerrainObjects [this,[],20])}"; - id=4875; - type="Logic"; - atlOffset=-0.00018501282; - }; - class Item858 - { - dataType="Logic"; - class PositionInfo - { - position[]={14130.801,20.007736,16011.278}; - angles[]={0,0,6.2826972}; - }; - init="call{{ _x hideObjectGlobal true } foreach (nearestTerrainObjects [this,[],20])}"; - id=4876; - type="Logic"; - }; - class Item859 - { - dataType="Object"; - class PositionInfo - { - position[]={14226.387,25.465546,16280.494}; - angles[]={0,6.2254524,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=4877; - type="Land_LampHalogen_F"; - }; - class Item860 - { - dataType="Object"; - class PositionInfo - { - position[]={14199.502,25.832298,16248.596}; - angles[]={0,1.4052951,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=4879; - type="Land_LampHalogen_F"; - }; - class Item861 - { - dataType="Object"; - class PositionInfo - { - position[]={15132.827,23.892179,17250.963}; - angles[]={0,5.4477715,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=4880; - type="Land_LampHalogen_F"; - }; - class Item862 - { - dataType="Object"; - class PositionInfo - { - position[]={15091.029,23.892179,17206.445}; - angles[]={0,2.2512789,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=4881; - type="Land_LampHalogen_F"; - }; - class Item863 - { - dataType="Object"; - class PositionInfo - { - position[]={14404.593,0.0068445206,15383.225}; - angles[]={0,3.836586,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4886; - type="Land_SharpRock_monolith"; - atlOffset=-9.9681435; - }; - class Item864 - { - dataType="Object"; - class PositionInfo - { - position[]={14392.098,2.8744087,15380.635}; - angles[]={0,3.2840946,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4888; - type="Land_Small_Stone_01_F"; - }; - class Item865 - { - dataType="Object"; - class PositionInfo - { - position[]={14391.604,-4.9833555,15372.25}; - angles[]={6.2578578,0,6.2432079}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4891; - type="Land_SharpRock_spike"; - atlOffset=-14.720743; - }; - class Item866 - { - dataType="Object"; - class PositionInfo - { - position[]={14395.398,3.3895679,15397.996}; - angles[]={6.2711902,0,6.2738566}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4892; - type="Land_SharpStone_03"; - }; - class Item867 - { - dataType="Object"; - class PositionInfo - { - position[]={14396.136,-29.676674,15372.269}; - angles[]={0,5.936101,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4893; - type="Land_SharpRock_wallV"; - atlOffset=-54.262367; - }; - class Item868 - { - dataType="Object"; - class PositionInfo - { - position[]={14391.709,3.1112688,15386.175}; - angles[]={6.2578578,0,6.2432079}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4894; - type="Land_SharpStones_erosion"; - atlOffset=-0.024967909; - }; - class Item869 - { - dataType="Object"; - class PositionInfo - { - position[]={14414.845,5.9404716,15398.616}; - angles[]={0.0066682254,0,6.2259154}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4895; - type="Land_SharpRock_apart"; - }; - class Item870 - { - dataType="Object"; - class PositionInfo - { - position[]={14401.325,3.3199131,15396.087}; - angles[]={6.2711902,0,6.2738566}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4897; - type="Land_SharpStone_02"; - }; - class Item871 - { - dataType="Object"; - class PositionInfo - { - position[]={14401.086,3.2304063,15401.606}; - angles[]={6.2578578,0,6.2432079}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4900; - type="Land_SharpStones_erosion"; - atlOffset=-0.025014877; - }; - class Item872 - { - dataType="Object"; - class PositionInfo - { - position[]={14404.949,5.6839604,15396.188}; - angles[]={0,4.8717408,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4901; - type="Land_SharpRock_apart"; - }; - class Item873 - { - dataType="Object"; - class PositionInfo - { - position[]={14396.05,5.8038969,15384.97}; - angles[]={0,2.2573514,0}; - }; - side="Empty"; - flags=1; - class Attributes - { - disableSimulation=1; - }; - id=4902; - type="Land_PierLadder_F"; - atlOffset=2.634989; - }; - class Item874 - { - dataType="Object"; - class PositionInfo - { - position[]={14397.562,3.1515582,15393.021}; - angles[]={0,4.252388,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4903; - type="Land_SharpStones_erosion"; - atlOffset=-0.024967909; - }; - class Item875 - { - dataType="Object"; - class PositionInfo - { - position[]={14412.072,3.2993822,15410.854}; - angles[]={6.2711902,0,6.2738566}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4904; - type="Land_SharpStone_03"; - atlOffset=8.7738037e-005; - }; - class Item876 - { - dataType="Object"; - class PositionInfo - { - position[]={14422.843,3.1314855,15408.364}; - angles[]={6.2711902,0,6.2738566}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4905; - type="Land_SharpStone_03"; - }; - class Item877 - { - dataType="Object"; - class PositionInfo - { - position[]={14409.267,3.2718379,15403.417}; - angles[]={0,4.252388,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4906; - type="Land_SharpStones_erosion"; - atlOffset=-0.024955273; - }; - class Item878 - { - dataType="Object"; - class PositionInfo - { - position[]={14416.574,3.0758133,15389.214}; - angles[]={0,4.252388,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4907; - type="Land_SharpStones_erosion"; - atlOffset=-0.025003433; - }; - class Item879 - { - dataType="Object"; - class PositionInfo - { - position[]={14404.722,2.9074426,15370.777}; - angles[]={0,4.252388,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4908; - type="Land_SharpStones_erosion"; - atlOffset=-0.024973392; - }; - class Item880 - { - dataType="Object"; - class PositionInfo - { - position[]={14392.302,2.4085431,15359.356}; - angles[]={0,4.252388,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4909; - type="Land_SharpStones_erosion"; - atlOffset=-0.024968863; - }; - class Item881 - { - dataType="Object"; - class PositionInfo - { - position[]={14386.585,2.4539003,15365.917}; - angles[]={0,4.252388,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4910; - type="Land_SharpStones_erosion"; - atlOffset=-0.024977922; - }; - class Item882 - { - dataType="Group"; - side="West"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={14191.699,19.582327,16273.896}; - angles[]={0.0066682254,3.8592575,6.2791886}; - }; - side="West"; - flags=6; - class Attributes - { - skill=0.60000002; - name="int3"; - description="Zeus #3"; - isPlayable=1; - class Inventory - { - class primaryWeapon - { - name="arifle_SPAR_01_blk_F"; - optics="optic_ERCO_blk_F"; - flashlight="acc_pointer_IR"; - class primaryMuzzleMag - { - name="30Rnd_556x45_Stanag_Tracer_Red"; - ammoLeft=30; - }; - }; - class handgun - { - name="rhsusf_weap_glock17g4"; - class primaryMuzzleMag - { - name="rhsusf_mag_17Rnd_9x19_FMJ"; - ammoLeft=17; - }; - }; - class binocular - { - name="Binocular"; - }; - class uniform - { - typeName="SMM_Uniform_BW_FT"; - isBackpack=0; - class MagazineCargo - { - items=1; - class Item0 - { - name="30Rnd_556x45_Stanag_Tracer_Green"; - count=4; - ammoLeft=30; - }; - }; - class ItemCargo - { - items=2; - class Item0 - { - name="ACE_fieldDressing"; - count=2; - }; - class Item1 - { - name="ACE_morphine"; - count=1; - }; - }; - }; - class vest - { - typeName="SMM_Vest_BW_FT"; - isBackpack=0; - class MagazineCargo - { - items=6; - class Item0 - { - name="SmokeShell"; - count=1; - ammoLeft=1; - }; - class Item1 - { - name="SmokeShellGreen"; - count=1; - ammoLeft=1; - }; - class Item2 - { - name="Chemlight_green"; - count=2; - ammoLeft=1; - }; - class Item3 - { - name="HandGrenade"; - count=2; - ammoLeft=1; - }; - class Item4 - { - name="MiniGrenade"; - count=3; - ammoLeft=1; - }; - class Item5 - { - name="30Rnd_556x45_Stanag_Tracer_Red"; - count=2; - ammoLeft=30; - }; - }; - class ItemCargo - { - items=3; - class Item0 - { - name="ACE_EarPlugs"; - count=1; - }; - class Item1 - { - name="ACE_fieldDressing"; - count=10; - }; - class Item2 - { - name="ACE_morphine"; - count=6; - }; - }; - }; - map="ItemMap"; - compass="ItemCompass"; - watch="ItemWatch"; - radio="tf_anprc152"; - gps="ItemGPS"; - headgear="SMM_Helmet_BW_FT"; - }; - }; - id=4912; - type="B_Soldier_F"; - atlOffset=1.1444092e-005; - class CustomAttributes - { - class Attribute0 - { - property="acex_headless_blacklist"; - expression="_this setVariable [""acex_headless_blacklist"",_value,true]"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isHandcuffed"; - expression="if (_value) then {[objNull, [_this], true] call ace_captives_fnc_moduleHandcuffed}"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute2 - { - property="ace_isSurrendered"; - expression="if (_value) then {[objNull, [_this], true] call ace_captives_fnc_moduleSurrender}"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=3; - }; - }; - }; - class Attributes - { - }; - id=4911; - atlOffset=1.1444092e-005; - }; - class Item883 - { - dataType="Object"; - class PositionInfo - { - position[]={14481.283,20.813513,15856.41}; - angles[]={5.1093287,5.0215917,0.86648607}; - }; - side="Empty"; - class Attributes - { - health=0; - disableSimulation=1; - }; - id=4920; - type="rhs_weapon_M136_hp"; - atlOffset=0.42805099; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item884 - { - dataType="Object"; - class PositionInfo - { - position[]={14434.781,19.124001,15887.966}; - angles[]={0,0.79964006,0}; - }; - side="Empty"; - class Attributes - { - name="anz2_05"; - disableSimulation=1; - }; - id=4927; - type="Sign_Sphere10cm_Geometry_F"; - atlOffset=1.2140007; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="#(argb,8,8,3)color(0.9,0.0,0.033333,1.000000,ca)"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item885 - { - dataType="Trigger"; - position[]={14337.545,20.229544,16081.099}; - angle=3.9295545; - class Attributes - { - condition="call{count grad_adlerBase_airVehicleUnits > 0}"; - onActivation="call{anz1_05 hideObjectGlobal false;" \n "anz2_05 hideObjectGlobal false;" \n "anz3_05 hideObjectGlobal false;" \n "anz4_05 hideObjectGlobal false;" \n """area_mk_05"" setMarkerColor ""Colorred"";" \n "}"; - onDeactivation="call{anz1_05 hideObjectGlobal true;" \n "anz2_05 hideObjectGlobal true;" \n "anz3_05 hideObjectGlobal true;" \n "anz4_05 hideObjectGlobal true;" \n """area_mk_05"" setMarkerColor ""Colorblack"";" \n "}"; - sizeA=0; - sizeB=0; - sizeC=0; - repeatable=1; - activationBy="ANYPLAYER"; - isRectangle=1; - }; - id=4928; - type="EmptyDetector"; - atlOffset=2.382; - }; - class Item886 - { - dataType="Marker"; - position[]={14080,0,16992}; - name="area_mk_05"; - text="Airborne"; - type="mil_box"; - colorName="ColorBlack"; - id=4929; - atlOffset=-12.010854; - }; - class Item887 - { - dataType="Object"; - class PositionInfo - { - position[]={14184.095,20.757502,16265.725}; - angles[]={0,3.8887856,0}; - }; - side="Empty"; - class Attributes - { - name="anz1_05"; - disableSimulation=1; - }; - id=4930; - type="Sign_Sphere10cm_Geometry_F"; - atlOffset=1.1675014; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="#(argb,8,8,3)color(0.9,0.0,0.033333,1.000000,ca)"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item888 - { - dataType="Object"; - class PositionInfo - { - position[]={15111.714,19.049011,17227.717}; - angles[]={0,5.4017067,0}; - }; - side="Empty"; - class Attributes - { - name="anz3_05"; - disableSimulation=1; - }; - id=4931; - type="Sign_Sphere10cm_Geometry_F"; - atlOffset=1.1390114; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="#(argb,8,8,3)color(0.9,0.0,0.033333,1.000000,ca)"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item889 - { - dataType="Object"; - class PositionInfo - { - position[]={15082.071,25.073854,14906.991}; - angles[]={0,3.3244858,0}; - }; - side="Empty"; - class Attributes - { - name="anz4_05"; - disableSimulation=1; - }; - id=4933; - type="Sign_Sphere10cm_Geometry_F"; - atlOffset=1.5454102; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="#(argb,8,8,3)color(0.9,0.0,0.033333,1.000000,ca)"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item890 - { - dataType="Logic"; - class PositionInfo - { - position[]={13985.961,18.947535,16261.196}; - angles[]={0.067895547,0,6.2578578}; - }; - id=4936; - type="TFAR_ModuleTaskForceRadioFrequencies"; - }; - class Item891 - { - dataType="Object"; - class PositionInfo - { - position[]={14383.695,3.0982356,15381.239}; - angles[]={6.2312322,0,6.2645216}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4941; - type="Land_SharpStones_erosion"; - atlOffset=0.06787324; - }; - class Item892 - { - dataType="Object"; - class PositionInfo - { - position[]={14380.192,2.7032719,15371.719}; - angles[]={6.2551923,0,6.2778478}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4942; - type="Land_SharpStones_erosion"; - atlOffset=0.067977667; - }; - class Item893 - { - dataType="Object"; - class PositionInfo - { - position[]={14401.108,2.6831009,15363.245}; - angles[]={6.2418756,3.2742944,6.2312331}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4943; - type="Land_SharpStones_erosion"; - atlOffset=-0.024967909; - }; - class Item894 - { - dataType="Object"; - class PositionInfo - { - position[]={14185.854,20.438164,16267.902}; - angles[]={0,0.48843041,0}; - }; - side="Empty"; - class Attributes - { - init="call{[this] execVM ""manual\addInteraction.sqf""}"; - }; - id=4944; - type="Land_Tablet_02_F"; - atlOffset=0.81399918; - }; - class Item895 - { - dataType="Logic"; - class PositionInfo - { - position[]={12833.859,86.262383,16735.752}; - }; - areaSize[]={5,-1,5}; - flags=1; - id=4946; - type="ModuleHideTerrainObjects_F"; - atlOffset=2.2888184e-005; - class CustomAttributes - { - class Attribute0 - { - property="#filter"; - expression="_this setVariable [""#filter"",_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=15; - }; - }; - }; - class Attribute1 - { - property="#hideLocally"; - expression="_this setVariable [""#hideLocally"",_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item896 - { - dataType="Object"; - class PositionInfo - { - position[]={12833.21,86.658813,16744.365}; - angles[]={0.0079935296,2.9447517,6.247201}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4949; - type="Land_BagFence_Round_F"; - }; - class Item897 - { - dataType="Object"; - class PositionInfo - { - position[]={12841.133,86.426788,16738.813}; - angles[]={0.0026520467,4.5121336,6.2605233}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4950; - type="Land_BagFence_Round_F"; - }; - class Item898 - { - dataType="Object"; - class PositionInfo - { - position[]={12826.859,86.962212,16735.23}; - angles[]={6.2099833,1.2939813,6.2791886}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4951; - type="Land_BagFence_Round_F"; - }; - class Item899 - { - dataType="Object"; - class PositionInfo - { - position[]={12834.779,86.698334,16729.629}; - angles[]={0.0026744273,6.1145458,6.2618566}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4952; - type="Land_BagFence_Round_F"; - }; - class Item900 - { - dataType="Object"; - class PositionInfo - { - position[]={12838.627,86.807762,16737.66}; - angles[]={0.0026529003,5.2896914,6.2471962}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=4953; - type="B_T_Mortar_01_F"; - }; - class Item901 - { - dataType="Object"; - class PositionInfo - { - position[]={12834.504,86.973389,16732.307}; - angles[]={0.01733112,5.3249645,6.2471962}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=4954; - type="B_T_Mortar_01_F"; - }; - class Item902 - { - dataType="Object"; - class PositionInfo - { - position[]={12833.859,86.965179,16740.998}; - angles[]={0.0079936078,5.2955379,6.2471962}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=4955; - type="B_T_Mortar_01_F"; - }; - class Item903 - { - dataType="Object"; - class PositionInfo - { - position[]={12830.098,87.227158,16735.84}; - angles[]={0.0026703537,5.2622375,6.2033539}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=4956; - type="B_T_Mortar_01_F"; - }; - class Item904 - { - dataType="Object"; - class PositionInfo - { - position[]={12828.595,86.814415,16733.311}; - angles[]={6.2099833,0.61865646,6.2791886}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4957; - type="Land_BagFence_Long_F"; - }; - class Item905 - { - dataType="Object"; - class PositionInfo - { - position[]={12832.372,86.744865,16730.607}; - angles[]={0.0026520467,0.61865646,6.2791886}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4958; - type="Land_BagFence_Long_F"; - }; - class Item906 - { - dataType="Object"; - class PositionInfo - { - position[]={12838.124,86.537819,16732.793}; - angles[]={0.0026520467,5.331481,6.2472029}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4959; - type="Land_BagFence_Corner_F"; - }; - class Item907 - { - dataType="Object"; - class PositionInfo - { - position[]={12830.508,86.743759,16731.934}; - angles[]={0.0026520467,0.60519469,6.2791886}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4960; - type="Land_BagFence_Short_F"; - }; - class Item908 - { - dataType="Object"; - class PositionInfo - { - position[]={12836.785,86.60553,16731.316}; - angles[]={0.017332481,5.2995381,6.247201}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4961; - type="Land_BagFence_Long_F"; - }; - class Item909 - { - dataType="Object"; - class PositionInfo - { - position[]={12840.254,86.453316,16736.336}; - angles[]={0.0026520467,5.286397,6.2605233}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4962; - type="Land_BagFence_Long_F"; - }; - class Item910 - { - dataType="Object"; - class PositionInfo - { - position[]={12839.495,86.483902,16734.506}; - angles[]={0.0026520467,3.7551777,6.247201}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4963; - type="Land_BagFence_Corner_F"; - }; - class Item911 - { - dataType="Object"; - class PositionInfo - { - position[]={12839.437,86.466461,16740.77}; - angles[]={6.2765174,3.75542,6.2618566}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4964; - type="Land_BagFence_Long_F"; - }; - class Item912 - { - dataType="Object"; - class PositionInfo - { - position[]={12835.646,86.578438,16743.453}; - angles[]={0.0079935296,3.75542,6.247201}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4965; - type="Land_BagFence_Long_F"; - atlOffset=6.1035156e-005; - }; - class Item913 - { - dataType="Object"; - class PositionInfo - { - position[]={12837.517,86.518349,16742.137}; - angles[]={0.0079935296,3.7419581,6.247201}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4966; - type="Land_BagFence_Short_F"; - atlOffset=0.0017776489; - }; - class Item914 - { - dataType="Object"; - class PositionInfo - { - position[]={12827.684,87.033112,16737.746}; - angles[]={6.1980801,2.1735854,6.2033563}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4967; - type="Land_BagFence_Long_F"; - atlOffset=-0.077461243; - }; - class Item915 - { - dataType="Object"; - class PositionInfo - { - position[]={12828.495,87.042648,16739.553}; - angles[]={0.0026744273,0.64236617,6.2033563}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4968; - type="Land_BagFence_Corner_F"; - }; - class Item916 - { - dataType="Object"; - class PositionInfo - { - position[]={12829.816,86.980385,16741.289}; - angles[]={6.2485313,2.2541239,6.2033553}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4969; - type="Land_BagFence_Corner_F"; - }; - class Item917 - { - dataType="Object"; - class PositionInfo - { - position[]={12831.247,86.851532,16742.676}; - angles[]={0.0080009829,2.2221811,6.161128}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4970; - type="Land_BagFence_Long_F"; - }; - class Item918 - { - dataType="Object"; - class PositionInfo - { - position[]={12828.935,87.045776,16741.467}; - angles[]={6.2485313,3.7821784,6.2033553}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4971; - type="Land_BagFence_End_F"; - }; - class Item919 - { - dataType="Object"; - class PositionInfo - { - position[]={12828.04,87.074486,16740.232}; - angles[]={6.2485313,3.7821784,6.2033553}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4972; - type="Land_BagFence_End_F"; - }; - class Item920 - { - dataType="Object"; - class PositionInfo - { - position[]={12838.913,86.498207,16732.703}; - angles[]={0.0026520467,0.61163235,6.2472029}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4973; - type="Land_BagFence_End_F"; - }; - class Item921 - { - dataType="Object"; - class PositionInfo - { - position[]={12839.934,86.458267,16733.912}; - angles[]={0.0026520467,0.6109519,6.247201}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4974; - type="Land_BagFence_End_F"; - }; - class Item922 - { - dataType="Object"; - class PositionInfo - { - position[]={12835.756,86.212784,16741.777}; - angles[]={6.1846786,2.295372,1.5055732}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4975; - type="81mm_mortar_case_single"; - atlOffset=-0.23423004; - }; - class Item923 - { - dataType="Object"; - class PositionInfo - { - position[]={12836.32,86.427399,16741.922}; - angles[]={0.30507535,5.3800383,0.328484}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4976; - type="81mm_mortar_case_quad"; - atlOffset=0.0018692017; - }; - class Item924 - { - dataType="Object"; - class PositionInfo - { - position[]={12833.037,86.53685,16736.682}; - angles[]={0.44377446,1.6136978,6.2601743}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4977; - type="rhs_mortar_M821_inv"; - atlOffset=0.00020599365; - }; - class Item925 - { - dataType="Object"; - class PositionInfo - { - position[]={12836.765,86.417564,16741.629}; - angles[]={0.0079935296,0,6.247201}; - }; - side="Empty"; - flags=4; - class Attributes - { - createAsSimpleObject=1; - disableSimulation=1; - }; - id=4978; - type="ACE_Box_82mm_Mo_Smoke"; - atlOffset=-7.6293945e-005; - }; - class Item926 - { - dataType="Object"; - class PositionInfo - { - position[]={12835.982,86.441345,16742.184}; - angles[]={0.0079935296,0.68122077,6.247201}; - }; - side="Empty"; - flags=4; - class Attributes - { - createAsSimpleObject=1; - disableSimulation=1; - }; - id=4979; - type="ACE_Box_82mm_Mo_Illum"; - atlOffset=-7.6293945e-006; - }; - class Item927 - { - dataType="Object"; - class PositionInfo - { - position[]={12832.226,86.615158,16736.799}; - angles[]={0.0026744273,0,6.2033563}; - }; - side="Empty"; - flags=4; - class Attributes - { - createAsSimpleObject=1; - disableSimulation=1; - }; - id=4980; - type="ACE_Box_82mm_Mo_HE"; - atlOffset=-0.00025939941; - }; - class Item928 - { - dataType="Object"; - class PositionInfo - { - position[]={12833.007,86.573296,16737.242}; - angles[]={0.0026520467,0,6.2472029}; - }; - side="Empty"; - flags=4; - class Attributes - { - createAsSimpleObject=1; - disableSimulation=1; - }; - id=4981; - type="ACE_Box_82mm_Mo_Combo"; - }; - class Item929 - { - dataType="Object"; - class PositionInfo - { - position[]={12832.229,86.385864,16736.203}; - angles[]={1.5810387,6.1948256,6.2039518}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4982; - type="81mm_mortar_case_quad"; - atlOffset=-0.22509003; - }; - class Item930 - { - dataType="Object"; - class PositionInfo - { - position[]={12833.037,86.56414,16736.781}; - angles[]={0.51473284,0,6.2472029}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4983; - type="81mm_mortar_case_quad"; - atlOffset=-0.0035247803; - }; - class Item931 - { - dataType="Object"; - class PositionInfo - { - position[]={12832.836,86.346207,16736.305}; - angles[]={0.063539766,6.2198138,4.7541437}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4984; - type="81mm_mortar_case_single"; - atlOffset=-0.2299881; - }; - class Item932 - { - dataType="Object"; - class PositionInfo - { - position[]={12836.484,86.212288,16741.238}; - angles[]={4.7334533,4.2794161,0.040179029}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4985; - type="81mm_mortar_case_single"; - atlOffset=-0.21279907; - }; - class Item933 - { - dataType="Object"; - class PositionInfo - { - position[]={12832.461,86.430443,16736.016}; - angles[]={0.0060659191,0.0055518984,1.118759}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4986; - type="rhs_mortar_M821_inv"; - atlOffset=-0.13101959; - }; - class Item934 - { - dataType="Object"; - class PositionInfo - { - position[]={12832.623,86.350082,16736.682}; - angles[]={1.446931,0,6.247201}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4987; - type="rhs_mortar_M821_inv"; - atlOffset=-0.20146179; - }; - class Item935 - { - dataType="Object"; - class PositionInfo - { - position[]={12836.119,86.197113,16741.688}; - angles[]={1.5542842,0,6.247201}; - }; - side="Empty"; - flags=4; - class Attributes - { - disableSimulation=1; - }; - id=4988; - type="rhs_mortar_M821_inv"; - atlOffset=-0.20625305; - }; - class Item936 - { - dataType="Marker"; - position[]={12840.801,86.063004,16730.539}; - name="mortar_range"; - text="Mortar Range"; - type="mil_box"; - colorName="ColorBlue"; - id=4989; - atlOffset=0.00040435791; - }; - class Item937 - { - dataType="Object"; - class PositionInfo - { - position[]={12837.83,87.185829,16731.535}; - angles[]={0,5.320549,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - init="call{[this, ""Mortar Range""] execVM ""scripts\simmax\TP_Setup.sqf""; }"; - disableSimulation=1; - }; - id=4990; - type="SignAd_Sponsor_ION_F"; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\area_01.jpg"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item938 - { - dataType="Object"; - class PositionInfo - { - position[]={12838.903,86.36705,16735.012}; - angles[]={0.0026520467,3.7768018,6.247201}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=4992; - type="Box_NATO_Support_F"; - atlOffset=6.1035156e-005; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="[[[[],[]],[[],[]],[[""ACE_RangeTable_82mm""],[50]],[[],[]]],false]"; - }; - }; - }; - nAttributes=1; - }; - }; - class Item939 - { - dataType="Object"; - class PositionInfo - { - position[]={14435.905,20.086805,15888.518}; - angles[]={0,4.6912875,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.60000002; - }; - id=4993; - type="GRAD_flag_gruppeAdlerWhite"; - atlOffset=-1.7999992; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item940 - { - dataType="Object"; - class PositionInfo - { - position[]={14191.26,23.603886,16253.658}; - angles[]={0,5.3432789,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=4994; - type="GRAD_flag_gruppeAdlerWhite"; - atlOffset=1.9073486e-006; - }; - class Item941 - { - dataType="Logic"; - class PositionInfo - { - position[]={16083.803,15.820898,16999.641}; - angles[]={6.2711854,0,0.0039967569}; - }; - areaSize[]={30,0,30}; - flags=1; - id=4996; - type="ModuleHideTerrainObjects_F"; - atlOffset=-1.5258789e-005; - class CustomAttributes - { - class Attribute0 - { - property="#filter"; - expression="_this setVariable [""#filter"",_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=15; - }; - }; - }; - class Attribute1 - { - property="#hideLocally"; - expression="_this setVariable [""#hideLocally"",_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item942 - { - dataType="Object"; - class PositionInfo - { - position[]={16083.739,15.821014,16999.67}; - angles[]={6.2711778,0,0.0039968039}; - }; - side="Empty"; - flags=4; - class Attributes - { - name="grad_heligame_cargoSpawn"; - disableSimulation=1; - }; - id=4997; - type="Land_HelipadSquare_F"; - atlOffset=-9.5367432e-007; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item943 - { - dataType="Object"; - class PositionInfo - { - position[]={16078.121,15.850979,16994.039}; - angles[]={6.2392135,0,0.014664836}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=4998; - type="PortableHelipadLight_01_yellow_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item944 - { - dataType="Object"; - class PositionInfo - { - position[]={16089.381,15.829635,16994.021}; - angles[]={6.223258,0,6.2818484}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=4999; - type="PortableHelipadLight_01_yellow_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item945 - { - dataType="Object"; - class PositionInfo - { - position[]={16089.341,16.03968,17005.266}; - angles[]={6.272521,0,0.015998369}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5000; - type="PortableHelipadLight_01_yellow_F"; - atlOffset=0.03545475; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item946 - { - dataType="Object"; - class PositionInfo - { - position[]={16078.13,15.969373,17005.303}; - angles[]={6.2791886,0,6.2791886}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5001; - type="PortableHelipadLight_01_yellow_F"; - atlOffset=2.8610229e-006; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item947 - { - dataType="Object"; - class PositionInfo - { - position[]={16080.137,15.928333,16997.051}; - angles[]={6.2791886,0,6.2791886}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5002; - type="PortableHelipadLight_01_red_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item948 - { - dataType="Object"; - class PositionInfo - { - position[]={16087.306,15.914196,16997.021}; - angles[]={6.2711854,0,0.0039967569}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5003; - type="PortableHelipadLight_01_red_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item949 - { - dataType="Object"; - class PositionInfo - { - position[]={16083.725,15.968535,17003.236}; - angles[]={6.2791886,0,0.0039967569}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5004; - type="PortableHelipadLight_01_red_F"; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=1; - }; - }; - class Item950 - { - dataType="Object"; - class PositionInfo - { - position[]={16077.087,19.296755,16944.891}; - angles[]={0,1.7053539,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=5005; - type="Land_LampHalogen_F"; - atlOffset=-9.5367432e-007; - }; - class Item951 - { - dataType="Logic"; - class PositionInfo - { - position[]={16079.403,13.317027,16944.652}; - angles[]={6.2791886,0,0.0026520467}; - }; - areaSize[]={5,-1,5}; - flags=1; - id=5006; - type="ModuleHideTerrainObjects_F"; - class CustomAttributes - { - class Attribute0 - { - property="#filter"; - expression="_this setVariable [""#filter"",_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=15; - }; - }; - }; - class Attribute1 - { - property="#hideLocally"; - expression="_this setVariable [""#hideLocally"",_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item952 - { - dataType="Logic"; - class PositionInfo - { - position[]={16132.06,13.540447,17020.965}; - angles[]={0.0066592805,0,0.014664836}; - }; - areaSize[]={5,-1,5}; - flags=1; - id=5007; - type="ModuleHideTerrainObjects_F"; - class CustomAttributes - { - class Attribute0 - { - property="#filter"; - expression="_this setVariable [""#filter"",_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=15; - }; - }; - }; - class Attribute1 - { - property="#hideLocally"; - expression="_this setVariable [""#hideLocally"",_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item953 - { - dataType="Object"; - class PositionInfo - { - position[]={16131.352,19.500227,17023.068}; - angles[]={0,5.788146,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - }; - id=5008; - type="Land_LampHalogen_F"; - atlOffset=0.0020189285; - }; - class Item954 - { - dataType="Object"; - class PositionInfo - { - position[]={23808.061,5.8102579,16010.251}; - angles[]={0,0.011815879,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - init="call{[this] call grad_killhouse_fnc_addAction;}"; - name="kill_spawn"; - }; - id=5016; - type="Land_InfoStand_V2_F"; - atlOffset=-0.0080666542; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\gruppe-adler.paa"; - }; - }; - }; - nAttributes=1; - }; - }; - class Item955 - { - dataType="Logic"; - class PositionInfo - { - position[]={23833.016,5.23,16043.418}; - }; - areaSize[]={34,0,34}; - areaIsRectangle=1; - flags=1; - id=5017; - type="ModuleHideTerrainObjects_F"; - class CustomAttributes - { - class Attribute0 - { - property="#filter"; - expression="_this setVariable [""#filter"",_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=15; - }; - }; - }; - class Attribute1 - { - property="#hideLocally"; - expression="_this setVariable [""#hideLocally"",_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item956 - { - dataType="Object"; - class PositionInfo - { - position[]={23803.561,6.9055076,16012.562}; - angles[]={0,3.1415927,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5018; - type="Land_Shoot_House_Panels_F"; - atlOffset=7.6293945e-006; - }; - class Item957 - { - dataType="Object"; - class PositionInfo - { - position[]={23805.559,6.9054999,16012.563}; - angles[]={0,3.1415927,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5019; - type="Land_Shoot_House_Panels_F"; - }; - class Item958 - { - dataType="Object"; - class PositionInfo - { - position[]={23807.553,6.9055057,16012.564}; - angles[]={0,3.1415927,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5020; - type="Land_Shoot_House_Panels_F"; - atlOffset=5.7220459e-006; - }; - class Item959 - { - dataType="Object"; - class PositionInfo - { - position[]={23859.523,6.9055057,16012.562}; - angles[]={0,3.1415927,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5021; - type="Land_Shoot_House_Panels_F"; - atlOffset=5.7220459e-006; - }; - class Item960 - { - dataType="Object"; - class PositionInfo - { - position[]={23861.523,6.9055037,16012.562}; - angles[]={0,3.1415927,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5022; - type="Land_Shoot_House_Panels_F"; - atlOffset=3.8146973e-006; - }; - class Item961 - { - dataType="Object"; - class PositionInfo - { - position[]={23809.523,6.9055114,16012.562}; - angles[]={0,3.1415927,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5023; - type="Land_Shoot_House_Panels_F"; - atlOffset=1.1444092e-005; - }; - class Item962 - { - dataType="Object"; - class PositionInfo - { - position[]={23811.523,6.9054999,16012.562}; - angles[]={0,3.1415927,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5024; - type="Land_Shoot_House_Panels_F"; - }; - class Item963 - { - dataType="Object"; - class PositionInfo - { - position[]={23813.523,6.9054999,16012.562}; - angles[]={0,3.1415927,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5025; - type="Land_Shoot_House_Panels_F"; - }; - class Item964 - { - dataType="Object"; - class PositionInfo - { - position[]={23815.523,6.9054999,16012.562}; - angles[]={0,3.1415927,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5026; - type="Land_Shoot_House_Panels_F"; - }; - class Item965 - { - dataType="Object"; - class PositionInfo - { - position[]={23817.523,6.9055076,16012.562}; - angles[]={0,3.1415927,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5027; - type="Land_Shoot_House_Panels_F"; - atlOffset=7.6293945e-006; - }; - class Item966 - { - dataType="Object"; - class PositionInfo - { - position[]={23819.523,6.9055057,16012.562}; - angles[]={0,3.1415927,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5028; - type="Land_Shoot_House_Panels_F"; - atlOffset=5.7220459e-006; - }; - class Item967 - { - dataType="Object"; - class PositionInfo - { - position[]={23821.523,6.9055114,16012.562}; - angles[]={0,3.1415927,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5029; - type="Land_Shoot_House_Panels_F"; - atlOffset=1.1444092e-005; - }; - class Item968 - { - dataType="Object"; - class PositionInfo - { - position[]={23823.523,6.9055018,16012.562}; - angles[]={0,3.1415927,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5030; - type="Land_Shoot_House_Panels_F"; - atlOffset=1.9073486e-006; - }; - class Item969 - { - dataType="Object"; - class PositionInfo - { - position[]={23825.523,6.9054999,16012.562}; - angles[]={0,3.1415927,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5031; - type="Land_Shoot_House_Panels_F"; - }; - class Item970 - { - dataType="Object"; - class PositionInfo - { - position[]={23829.523,6.9055133,16012.562}; - angles[]={0,3.1415927,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5032; - type="Land_Shoot_House_Panels_F"; - atlOffset=1.335144e-005; - }; - class Item971 - { - dataType="Object"; - class PositionInfo - { - position[]={23827.523,6.9055057,16012.562}; - angles[]={0,3.1415927,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5033; - type="Land_Shoot_House_Panels_F"; - atlOffset=5.7220459e-006; - }; - class Item972 - { - dataType="Object"; - class PositionInfo - { - position[]={23831.523,6.9054999,16012.562}; - angles[]={0,3.1415927,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5034; - type="Land_Shoot_House_Panels_F"; - }; - class Item973 - { - dataType="Object"; - class PositionInfo - { - position[]={23833.523,6.9055133,16012.562}; - angles[]={0,3.1415927,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5035; - type="Land_Shoot_House_Panels_F"; - atlOffset=1.335144e-005; - }; - class Item974 - { - dataType="Object"; - class PositionInfo - { - position[]={23835.523,6.9055057,16012.562}; - angles[]={0,3.1415927,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5036; - type="Land_Shoot_House_Panels_F"; - atlOffset=5.7220459e-006; - }; - class Item975 - { - dataType="Object"; - class PositionInfo - { - position[]={23837.523,6.9055133,16012.562}; - angles[]={0,3.1415927,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5037; - type="Land_Shoot_House_Panels_F"; - atlOffset=1.335144e-005; - }; - class Item976 - { - dataType="Object"; - class PositionInfo - { - position[]={23839.523,6.9055095,16012.562}; - angles[]={0,3.1415927,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5038; - type="Land_Shoot_House_Panels_F"; - atlOffset=9.5367432e-006; - }; - class Item977 - { - dataType="Object"; - class PositionInfo - { - position[]={23841.523,6.9055057,16012.562}; - angles[]={0,3.1415927,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5039; - type="Land_Shoot_House_Panels_F"; - atlOffset=5.7220459e-006; - }; - class Item978 - { - dataType="Object"; - class PositionInfo - { - position[]={23843.523,6.9055095,16012.562}; - angles[]={0,3.1415927,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5040; - type="Land_Shoot_House_Panels_F"; - atlOffset=9.5367432e-006; - }; - class Item979 - { - dataType="Object"; - class PositionInfo - { - position[]={23845.523,6.9055133,16012.562}; - angles[]={0,3.1415927,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5041; - type="Land_Shoot_House_Panels_F"; - atlOffset=1.335144e-005; - }; - class Item980 - { - dataType="Object"; - class PositionInfo - { - position[]={23847.523,6.9055076,16012.562}; - angles[]={0,3.1415927,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5042; - type="Land_Shoot_House_Panels_F"; - atlOffset=7.6293945e-006; - }; - class Item981 - { - dataType="Object"; - class PositionInfo - { - position[]={23849.523,6.9055114,16012.562}; - angles[]={0,3.1415927,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5043; - type="Land_Shoot_House_Panels_F"; - atlOffset=1.1444092e-005; - }; - class Item982 - { - dataType="Object"; - class PositionInfo - { - position[]={23851.523,6.9055114,16012.562}; - angles[]={0,3.1415927,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5044; - type="Land_Shoot_House_Panels_F"; - atlOffset=1.1444092e-005; - }; - class Item983 - { - dataType="Object"; - class PositionInfo - { - position[]={23855.523,6.9055018,16012.562}; - angles[]={0,3.1415927,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5045; - type="Land_Shoot_House_Panels_F"; - atlOffset=1.9073486e-006; - }; - class Item984 - { - dataType="Object"; - class PositionInfo - { - position[]={23857.523,6.9055037,16012.562}; - angles[]={0,3.1415927,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5046; - type="Land_Shoot_House_Panels_F"; - atlOffset=3.8146973e-006; - }; - class Item985 - { - dataType="Object"; - class PositionInfo - { - position[]={23853.523,6.9055114,16012.562}; - angles[]={0,3.1415927,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5047; - type="Land_Shoot_House_Panels_F"; - atlOffset=1.1444092e-005; - }; - class Item986 - { - dataType="Object"; - class PositionInfo - { - position[]={23800.523,6.9055076,16011.562}; - angles[]={0,4.712389,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5048; - type="Land_Shoot_House_Panels_F"; - atlOffset=7.6293945e-006; - }; - class Item987 - { - dataType="Object"; - class PositionInfo - { - position[]={23801.523,6.9054999,16010.562}; - angles[]={0,3.1415927,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5049; - type="Land_Shoot_House_Panels_F"; - }; - class Item988 - { - dataType="Object"; - class PositionInfo - { - position[]={23807.523,6.9055076,16010.562}; - angles[]={0,3.1415927,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5050; - type="Land_Shoot_House_Panels_F"; - atlOffset=7.6293945e-006; - }; - class Item989 - { - dataType="Object"; - class PositionInfo - { - position[]={23805.523,6.9055114,16010.562}; - angles[]={0,3.1415927,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5051; - type="Land_Shoot_House_Panels_F"; - atlOffset=1.1444092e-005; - }; - class Item990 - { - dataType="Object"; - class PositionInfo - { - position[]={23803.523,6.9054999,16010.562}; - angles[]={0,3.1415927,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5052; - type="Land_Shoot_House_Panels_F"; - }; - class Item991 - { - dataType="Object"; - class PositionInfo - { - position[]={23864.523,6.9055057,16015.562}; - angles[]={0,1.5707964,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5053; - type="Land_Shoot_House_Panels_F"; - atlOffset=5.7220459e-006; - }; - class Item992 - { - dataType="Object"; - class PositionInfo - { - position[]={23864.523,6.9054999,16017.562}; - angles[]={0,1.5707964,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5054; - type="Land_Shoot_House_Panels_F"; - }; - class Item993 - { - dataType="Object"; - class PositionInfo - { - position[]={23864.523,6.9055114,16021.562}; - angles[]={0,1.5707964,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5055; - type="Land_Shoot_House_Panels_F"; - atlOffset=1.1444092e-005; - }; - class Item994 - { - dataType="Object"; - class PositionInfo - { - position[]={23864.523,6.9055133,16019.562}; - angles[]={0,1.5707964,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5056; - type="Land_Shoot_House_Panels_F"; - atlOffset=1.335144e-005; - }; - class Item995 - { - dataType="Object"; - class PositionInfo - { - position[]={23864.523,6.9055095,16023.562}; - angles[]={0,1.5707964,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5057; - type="Land_Shoot_House_Panels_F"; - atlOffset=9.5367432e-006; - }; - class Item996 - { - dataType="Object"; - class PositionInfo - { - position[]={23864.523,6.9055076,16025.562}; - angles[]={0,1.5707964,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5058; - type="Land_Shoot_House_Panels_F"; - atlOffset=7.6293945e-006; - }; - class Item997 - { - dataType="Object"; - class PositionInfo - { - position[]={23864.523,6.9055095,16027.562}; - angles[]={0,1.5707964,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5059; - type="Land_Shoot_House_Panels_F"; - atlOffset=9.5367432e-006; - }; - class Item998 - { - dataType="Object"; - class PositionInfo - { - position[]={23864.523,6.9055018,16029.562}; - angles[]={0,1.5707964,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5060; - type="Land_Shoot_House_Panels_F"; - atlOffset=1.9073486e-006; - }; - class Item999 - { - dataType="Object"; - class PositionInfo - { - position[]={23864.523,6.9055095,16031.562}; - angles[]={0,1.5707964,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5061; - type="Land_Shoot_House_Panels_F"; - atlOffset=9.5367432e-006; - }; - class Item1000 - { - dataType="Object"; - class PositionInfo - { - position[]={23864.523,6.9055114,16033.562}; - angles[]={0,1.5707964,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5062; - type="Land_Shoot_House_Panels_F"; - atlOffset=1.1444092e-005; - }; - class Item1001 - { - dataType="Object"; - class PositionInfo - { - position[]={23864.523,6.9055018,16035.562}; - angles[]={0,1.5707964,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5063; - type="Land_Shoot_House_Panels_F"; - atlOffset=1.9073486e-006; - }; - class Item1002 - { - dataType="Object"; - class PositionInfo - { - position[]={23864.523,6.9055076,16037.562}; - angles[]={0,1.5707964,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5064; - type="Land_Shoot_House_Panels_F"; - atlOffset=7.6293945e-006; - }; - class Item1003 - { - dataType="Object"; - class PositionInfo - { - position[]={23864.523,6.9055133,16039.562}; - angles[]={0,1.5707964,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5065; - type="Land_Shoot_House_Panels_F"; - atlOffset=1.335144e-005; - }; - class Item1004 - { - dataType="Object"; - class PositionInfo - { - position[]={23864.523,6.9055018,16041.562}; - angles[]={0,1.5707964,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5066; - type="Land_Shoot_House_Panels_F"; - atlOffset=1.9073486e-006; - }; - class Item1005 - { - dataType="Object"; - class PositionInfo - { - position[]={23864.523,6.9054999,16045.562}; - angles[]={0,1.5707964,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5067; - type="Land_Shoot_House_Panels_F"; - }; - class Item1006 - { - dataType="Object"; - class PositionInfo - { - position[]={23864.523,6.9055018,16043.562}; - angles[]={0,1.5707964,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5068; - type="Land_Shoot_House_Panels_F"; - atlOffset=1.9073486e-006; - }; - class Item1007 - { - dataType="Object"; - class PositionInfo - { - position[]={23864.523,6.9055037,16047.562}; - angles[]={0,1.5707964,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5069; - type="Land_Shoot_House_Panels_F"; - atlOffset=3.8146973e-006; - }; - class Item1008 - { - dataType="Object"; - class PositionInfo - { - position[]={23864.523,6.9054999,16049.562}; - angles[]={0,1.5707964,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5070; - type="Land_Shoot_House_Panels_F"; - }; - class Item1009 - { - dataType="Object"; - class PositionInfo - { - position[]={23864.523,6.9054999,16051.562}; - angles[]={0,1.5707964,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5071; - type="Land_Shoot_House_Panels_F"; - }; - class Item1010 - { - dataType="Object"; - class PositionInfo - { - position[]={23864.523,6.9055018,16053.562}; - angles[]={0,1.5707964,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5072; - type="Land_Shoot_House_Panels_F"; - atlOffset=1.9073486e-006; - }; - class Item1011 - { - dataType="Object"; - class PositionInfo - { - position[]={23864.523,6.9055057,16055.562}; - angles[]={0,1.5707964,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5073; - type="Land_Shoot_House_Panels_F"; - atlOffset=5.7220459e-006; - }; - class Item1012 - { - dataType="Object"; - class PositionInfo - { - position[]={23864.523,6.9055095,16057.562}; - angles[]={0,1.5707964,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5074; - type="Land_Shoot_House_Panels_F"; - atlOffset=9.5367432e-006; - }; - class Item1013 - { - dataType="Object"; - class PositionInfo - { - position[]={23864.523,6.9055057,16059.562}; - angles[]={0,1.5707964,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5075; - type="Land_Shoot_House_Panels_F"; - atlOffset=5.7220459e-006; - }; - class Item1014 - { - dataType="Object"; - class PositionInfo - { - position[]={23864.523,6.9055018,16061.562}; - angles[]={0,1.5707964,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5076; - type="Land_Shoot_House_Panels_F"; - atlOffset=1.9073486e-006; - }; - class Item1015 - { - dataType="Object"; - class PositionInfo - { - position[]={23864.523,6.9055114,16063.562}; - angles[]={0,1.5707964,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5077; - type="Land_Shoot_House_Panels_F"; - atlOffset=1.1444092e-005; - }; - class Item1016 - { - dataType="Object"; - class PositionInfo - { - position[]={23864.523,6.9055037,16065.562}; - angles[]={0,1.5707964,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5078; - type="Land_Shoot_House_Panels_F"; - atlOffset=3.8146973e-006; - }; - class Item1017 - { - dataType="Object"; - class PositionInfo - { - position[]={23864.523,6.9055037,16067.562}; - angles[]={0,1.5707964,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5079; - type="Land_Shoot_House_Panels_F"; - atlOffset=3.8146973e-006; - }; - class Item1018 - { - dataType="Object"; - class PositionInfo - { - position[]={23864.523,6.9055037,16071.562}; - angles[]={0,1.5707964,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5080; - type="Land_Shoot_House_Panels_F"; - atlOffset=3.8146973e-006; - }; - class Item1019 - { - dataType="Object"; - class PositionInfo - { - position[]={23864.523,6.9054999,16073.562}; - angles[]={0,1.5707964,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5081; - type="Land_Shoot_House_Panels_F"; - }; - class Item1020 - { - dataType="Object"; - class PositionInfo - { - position[]={23864.523,6.9055095,16075.562}; - angles[]={0,1.5707964,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5082; - type="Land_Shoot_House_Panels_F"; - atlOffset=9.5367432e-006; - }; - class Item1021 - { - dataType="Object"; - class PositionInfo - { - position[]={23864.523,6.9055076,16069.562}; - angles[]={0,1.5707964,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5083; - type="Land_Shoot_House_Panels_F"; - atlOffset=7.6293945e-006; - }; - class Item1022 - { - dataType="Object"; - class PositionInfo - { - position[]={23861.523,6.9055133,16076.562}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5084; - type="Land_Shoot_House_Panels_F"; - atlOffset=1.335144e-005; - }; - class Item1023 - { - dataType="Object"; - class PositionInfo - { - position[]={23857.523,6.9054999,16076.562}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5085; - type="Land_Shoot_House_Panels_F"; - }; - class Item1024 - { - dataType="Object"; - class PositionInfo - { - position[]={23853.523,6.9055037,16076.562}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5086; - type="Land_Shoot_House_Panels_F"; - atlOffset=3.8146973e-006; - }; - class Item1025 - { - dataType="Object"; - class PositionInfo - { - position[]={23859.523,6.9054999,16076.562}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5087; - type="Land_Shoot_House_Panels_F"; - }; - class Item1026 - { - dataType="Object"; - class PositionInfo - { - position[]={23855.523,6.9055076,16076.562}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5088; - type="Land_Shoot_House_Panels_F"; - atlOffset=7.6293945e-006; - }; - class Item1027 - { - dataType="Object"; - class PositionInfo - { - position[]={23851.523,6.9055037,16076.562}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5089; - type="Land_Shoot_House_Panels_F"; - atlOffset=3.8146973e-006; - }; - class Item1028 - { - dataType="Object"; - class PositionInfo - { - position[]={23849.523,6.9055037,16076.562}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5090; - type="Land_Shoot_House_Panels_F"; - atlOffset=3.8146973e-006; - }; - class Item1029 - { - dataType="Object"; - class PositionInfo - { - position[]={23847.523,6.9055114,16076.562}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5091; - type="Land_Shoot_House_Panels_F"; - atlOffset=1.1444092e-005; - }; - class Item1030 - { - dataType="Object"; - class PositionInfo - { - position[]={23845.523,6.9055057,16076.562}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5092; - type="Land_Shoot_House_Panels_F"; - atlOffset=5.7220459e-006; - }; - class Item1031 - { - dataType="Object"; - class PositionInfo - { - position[]={23843.523,6.9055114,16076.562}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5093; - type="Land_Shoot_House_Panels_F"; - atlOffset=1.1444092e-005; - }; - class Item1032 - { - dataType="Object"; - class PositionInfo - { - position[]={23841.523,6.9054999,16076.562}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5094; - type="Land_Shoot_House_Panels_F"; - }; - class Item1033 - { - dataType="Object"; - class PositionInfo - { - position[]={23839.523,6.9054999,16076.562}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5095; - type="Land_Shoot_House_Panels_F"; - }; - class Item1034 - { - dataType="Object"; - class PositionInfo - { - position[]={23837.523,6.9055076,16076.562}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5096; - type="Land_Shoot_House_Panels_F"; - atlOffset=7.6293945e-006; - }; - class Item1035 - { - dataType="Object"; - class PositionInfo - { - position[]={23835.523,6.9055095,16076.562}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5097; - type="Land_Shoot_House_Panels_F"; - atlOffset=9.5367432e-006; - }; - class Item1036 - { - dataType="Object"; - class PositionInfo - { - position[]={23831.523,6.9055057,16076.562}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5098; - type="Land_Shoot_House_Panels_F"; - atlOffset=5.7220459e-006; - }; - class Item1037 - { - dataType="Object"; - class PositionInfo - { - position[]={23833.523,6.9055076,16076.562}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5099; - type="Land_Shoot_House_Panels_F"; - atlOffset=7.6293945e-006; - }; - class Item1038 - { - dataType="Object"; - class PositionInfo - { - position[]={23829.523,6.9055037,16076.562}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5100; - type="Land_Shoot_House_Panels_F"; - atlOffset=3.8146973e-006; - }; - class Item1039 - { - dataType="Object"; - class PositionInfo - { - position[]={23827.523,6.9055037,16076.562}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5101; - type="Land_Shoot_House_Panels_F"; - atlOffset=3.8146973e-006; - }; - class Item1040 - { - dataType="Object"; - class PositionInfo - { - position[]={23825.523,6.9055133,16076.562}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5102; - type="Land_Shoot_House_Panels_F"; - atlOffset=1.335144e-005; - }; - class Item1041 - { - dataType="Object"; - class PositionInfo - { - position[]={23823.523,6.9055037,16076.562}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5103; - type="Land_Shoot_House_Panels_F"; - atlOffset=3.8146973e-006; - }; - class Item1042 - { - dataType="Object"; - class PositionInfo - { - position[]={23821.523,6.9055018,16076.562}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5104; - type="Land_Shoot_House_Panels_F"; - atlOffset=1.9073486e-006; - }; - class Item1043 - { - dataType="Object"; - class PositionInfo - { - position[]={23819.523,6.9054999,16076.562}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5105; - type="Land_Shoot_House_Panels_F"; - }; - class Item1044 - { - dataType="Object"; - class PositionInfo - { - position[]={23817.523,6.9054999,16076.562}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5106; - type="Land_Shoot_House_Panels_F"; - }; - class Item1045 - { - dataType="Object"; - class PositionInfo - { - position[]={23815.523,6.9054999,16076.562}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5107; - type="Land_Shoot_House_Panels_F"; - }; - class Item1046 - { - dataType="Object"; - class PositionInfo - { - position[]={23813.523,6.9054999,16076.562}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5108; - type="Land_Shoot_House_Panels_F"; - }; - class Item1047 - { - dataType="Object"; - class PositionInfo - { - position[]={23811.523,6.9055057,16076.562}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5109; - type="Land_Shoot_House_Panels_F"; - atlOffset=5.7220459e-006; - }; - class Item1048 - { - dataType="Object"; - class PositionInfo - { - position[]={23809.523,6.9055076,16076.562}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5110; - type="Land_Shoot_House_Panels_F"; - atlOffset=7.6293945e-006; - }; - class Item1049 - { - dataType="Object"; - class PositionInfo - { - position[]={23805.523,6.9055018,16076.562}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5111; - type="Land_Shoot_House_Panels_F"; - atlOffset=1.9073486e-006; - }; - class Item1050 - { - dataType="Object"; - class PositionInfo - { - position[]={23803.523,6.9055037,16076.562}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5112; - type="Land_Shoot_House_Panels_F"; - atlOffset=3.8146973e-006; - }; - class Item1051 - { - dataType="Object"; - class PositionInfo - { - position[]={23801.523,6.9054999,16076.562}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5113; - type="Land_Shoot_House_Panels_F"; - }; - class Item1052 - { - dataType="Object"; - class PositionInfo - { - position[]={23807.523,6.9055037,16076.562}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5114; - type="Land_Shoot_House_Panels_F"; - atlOffset=3.8146973e-006; - }; - class Item1053 - { - dataType="Object"; - class PositionInfo - { - position[]={23800.523,6.9055114,16073.562}; - angles[]={0,4.712389,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5115; - type="Land_Shoot_House_Panels_F"; - atlOffset=1.1444092e-005; - }; - class Item1054 - { - dataType="Object"; - class PositionInfo - { - position[]={23800.523,6.9055133,16069.562}; - angles[]={0,4.712389,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5116; - type="Land_Shoot_House_Panels_F"; - atlOffset=1.335144e-005; - }; - class Item1055 - { - dataType="Object"; - class PositionInfo - { - position[]={23800.525,6.9055076,16065.532}; - angles[]={0,4.712389,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5117; - type="Land_Shoot_House_Panels_F"; - atlOffset=7.6293945e-006; - }; - class Item1056 - { - dataType="Object"; - class PositionInfo - { - position[]={23800.523,6.9055018,16071.562}; - angles[]={0,4.712389,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5118; - type="Land_Shoot_House_Panels_F"; - atlOffset=1.9073486e-006; - }; - class Item1057 - { - dataType="Object"; - class PositionInfo - { - position[]={23800.523,6.9055018,16067.562}; - angles[]={0,4.712389,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5119; - type="Land_Shoot_House_Panels_F"; - atlOffset=1.9073486e-006; - }; - class Item1058 - { - dataType="Object"; - class PositionInfo - { - position[]={23800.523,6.9054999,16063.562}; - angles[]={0,4.712389,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5120; - type="Land_Shoot_House_Panels_F"; - }; - class Item1059 - { - dataType="Object"; - class PositionInfo - { - position[]={23800.523,6.9055095,16061.562}; - angles[]={0,4.712389,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5121; - type="Land_Shoot_House_Panels_F"; - atlOffset=9.5367432e-006; - }; - class Item1060 - { - dataType="Object"; - class PositionInfo - { - position[]={23800.523,6.9055057,16059.562}; - angles[]={0,4.712389,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5122; - type="Land_Shoot_House_Panels_F"; - atlOffset=5.7220459e-006; - }; - class Item1061 - { - dataType="Object"; - class PositionInfo - { - position[]={23800.523,6.9055114,16057.562}; - angles[]={0,4.712389,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5123; - type="Land_Shoot_House_Panels_F"; - atlOffset=1.1444092e-005; - }; - class Item1062 - { - dataType="Object"; - class PositionInfo - { - position[]={23800.523,6.9055114,16055.562}; - angles[]={0,4.712389,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5124; - type="Land_Shoot_House_Panels_F"; - atlOffset=1.1444092e-005; - }; - class Item1063 - { - dataType="Object"; - class PositionInfo - { - position[]={23800.523,6.9055037,16053.562}; - angles[]={0,4.712389,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5125; - type="Land_Shoot_House_Panels_F"; - atlOffset=3.8146973e-006; - }; - class Item1064 - { - dataType="Object"; - class PositionInfo - { - position[]={23800.523,6.9055114,16051.562}; - angles[]={0,4.712389,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5126; - type="Land_Shoot_House_Panels_F"; - atlOffset=1.1444092e-005; - }; - class Item1065 - { - dataType="Object"; - class PositionInfo - { - position[]={23800.523,6.9055114,16049.562}; - angles[]={0,4.712389,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5127; - type="Land_Shoot_House_Panels_F"; - atlOffset=1.1444092e-005; - }; - class Item1066 - { - dataType="Object"; - class PositionInfo - { - position[]={23800.523,6.9055095,16047.562}; - angles[]={0,4.712389,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5128; - type="Land_Shoot_House_Panels_F"; - atlOffset=9.5367432e-006; - }; - class Item1067 - { - dataType="Object"; - class PositionInfo - { - position[]={23800.523,6.9055057,16043.562}; - angles[]={0,4.712389,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5129; - type="Land_Shoot_House_Panels_F"; - atlOffset=5.7220459e-006; - }; - class Item1068 - { - dataType="Object"; - class PositionInfo - { - position[]={23800.523,6.9054999,16045.562}; - angles[]={0,4.712389,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5130; - type="Land_Shoot_House_Panels_F"; - }; - class Item1069 - { - dataType="Object"; - class PositionInfo - { - position[]={23800.523,6.9055114,16041.562}; - angles[]={0,4.712389,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5131; - type="Land_Shoot_House_Panels_F"; - atlOffset=1.1444092e-005; - }; - class Item1070 - { - dataType="Object"; - class PositionInfo - { - position[]={23800.523,6.9055018,16039.562}; - angles[]={0,4.712389,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5132; - type="Land_Shoot_House_Panels_F"; - atlOffset=1.9073486e-006; - }; - class Item1071 - { - dataType="Object"; - class PositionInfo - { - position[]={23800.523,6.9055037,16037.562}; - angles[]={0,4.712389,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5133; - type="Land_Shoot_House_Panels_F"; - atlOffset=3.8146973e-006; - }; - class Item1072 - { - dataType="Object"; - class PositionInfo - { - position[]={23800.523,6.9055095,16035.562}; - angles[]={0,4.712389,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5134; - type="Land_Shoot_House_Panels_F"; - atlOffset=9.5367432e-006; - }; - class Item1073 - { - dataType="Object"; - class PositionInfo - { - position[]={23800.523,6.9055076,16033.562}; - angles[]={0,4.712389,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5135; - type="Land_Shoot_House_Panels_F"; - atlOffset=7.6293945e-006; - }; - class Item1074 - { - dataType="Object"; - class PositionInfo - { - position[]={23800.523,6.9055018,16031.562}; - angles[]={0,4.712389,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5136; - type="Land_Shoot_House_Panels_F"; - atlOffset=1.9073486e-006; - }; - class Item1075 - { - dataType="Object"; - class PositionInfo - { - position[]={23800.523,6.9055114,16029.562}; - angles[]={0,4.712389,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5137; - type="Land_Shoot_House_Panels_F"; - atlOffset=1.1444092e-005; - }; - class Item1076 - { - dataType="Object"; - class PositionInfo - { - position[]={23800.523,6.9055018,16027.562}; - angles[]={0,4.712389,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5138; - type="Land_Shoot_House_Panels_F"; - atlOffset=1.9073486e-006; - }; - class Item1077 - { - dataType="Object"; - class PositionInfo - { - position[]={23800.523,6.9054999,16025.562}; - angles[]={0,4.712389,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5139; - type="Land_Shoot_House_Panels_F"; - }; - class Item1078 - { - dataType="Object"; - class PositionInfo - { - position[]={23800.523,6.9055076,16023.562}; - angles[]={0,4.712389,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5140; - type="Land_Shoot_House_Panels_F"; - atlOffset=7.6293945e-006; - }; - class Item1079 - { - dataType="Object"; - class PositionInfo - { - position[]={23800.523,6.9054999,16021.562}; - angles[]={0,4.712389,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5141; - type="Land_Shoot_House_Panels_F"; - }; - class Item1080 - { - dataType="Object"; - class PositionInfo - { - position[]={23800.523,6.9055018,16017.562}; - angles[]={0,4.712389,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5142; - type="Land_Shoot_House_Panels_F"; - atlOffset=1.9073486e-006; - }; - class Item1081 - { - dataType="Object"; - class PositionInfo - { - position[]={23800.523,6.9055037,16015.562}; - angles[]={0,4.712389,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5143; - type="Land_Shoot_House_Panels_F"; - atlOffset=3.8146973e-006; - }; - class Item1082 - { - dataType="Object"; - class PositionInfo - { - position[]={23800.523,6.9055037,16013.562}; - angles[]={0,4.712389,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5144; - type="Land_Shoot_House_Panels_F"; - atlOffset=3.8146973e-006; - }; - class Item1083 - { - dataType="Object"; - class PositionInfo - { - position[]={23800.523,6.9055133,16019.562}; - angles[]={0,4.712389,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5145; - type="Land_Shoot_House_Panels_F"; - atlOffset=1.335144e-005; - }; - class Item1084 - { - dataType="Object"; - class PositionInfo - { - position[]={23864.523,6.9055057,16013.562}; - angles[]={0,1.5707964,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5146; - type="Land_Shoot_House_Panels_F"; - atlOffset=5.7220459e-006; - }; - class Item1085 - { - dataType="Object"; - class PositionInfo - { - position[]={23800.523,6.9055114,16075.562}; - angles[]={0,4.712389,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5147; - type="Land_Shoot_House_Panels_F"; - atlOffset=1.1444092e-005; - }; - class Item1086 - { - dataType="Object"; - class PositionInfo - { - position[]={23863.523,6.9055076,16076.562}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5148; - type="Land_Shoot_House_Panels_F"; - atlOffset=7.6293945e-006; - }; - class Item1087 - { - dataType="Object"; - class PositionInfo - { - position[]={23839.523,1.9581771,16009.562}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5150; - type="Land_A_Castle_Stairs_A"; - atlOffset=-6.8465734; - }; - class Item1088 - { - dataType="Object"; - class PositionInfo - { - position[]={23848.148,9.0237188,16016.562}; - }; - side="Empty"; - flags=1; - class Attributes - { - }; - id=5151; - type="Land_Plank_01_8m_F"; - atlOffset=3.7500033; - }; - class Item1089 - { - dataType="Object"; - class PositionInfo - { - position[]={23847.398,9.01373,16016.562}; - }; - side="Empty"; - flags=1; - class Attributes - { - }; - id=5152; - type="Land_Plank_01_8m_F"; - atlOffset=3.7400146; - }; - class Item1090 - { - dataType="Object"; - class PositionInfo - { - position[]={23849.023,8.9700165,16014.687}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5153; - type="Land_InvisibleBarrier_F"; - atlOffset=3.7400165; - }; - class Item1091 - { - dataType="Object"; - class PositionInfo - { - position[]={23849.023,8.9700165,16018.687}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5154; - type="Land_InvisibleBarrier_F"; - atlOffset=3.7400165; - }; - class Item1092 - { - dataType="Object"; - class PositionInfo - { - position[]={23849.023,9.9700165,16018.687}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5155; - type="Land_InvisibleBarrier_F"; - atlOffset=4.7400165; - }; - class Item1093 - { - dataType="Object"; - class PositionInfo - { - position[]={23849.023,9.9700165,16014.687}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5156; - type="Land_InvisibleBarrier_F"; - atlOffset=4.7400165; - }; - class Item1094 - { - dataType="Object"; - class PositionInfo - { - position[]={23846.523,9.9700089,16014.687}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5157; - type="Land_InvisibleBarrier_F"; - atlOffset=4.7400088; - }; - class Item1095 - { - dataType="Object"; - class PositionInfo - { - position[]={23846.523,9.9700089,16018.687}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5158; - type="Land_InvisibleBarrier_F"; - atlOffset=4.7400088; - }; - class Item1096 - { - dataType="Object"; - class PositionInfo - { - position[]={23846.523,8.9700069,16014.687}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5159; - type="Land_InvisibleBarrier_F"; - atlOffset=3.7400069; - }; - class Item1097 - { - dataType="Object"; - class PositionInfo - { - position[]={23846.523,8.9700069,16018.687}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5160; - type="Land_InvisibleBarrier_F"; - atlOffset=3.7400069; - }; - class Item1098 - { - dataType="Object"; - class PositionInfo - { - position[]={23849.023,8.9599972,16026.562}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5161; - type="Land_InvisibleBarrier_F"; - atlOffset=3.7299972; - }; - class Item1099 - { - dataType="Object"; - class PositionInfo - { - position[]={23849.023,8.9600086,16022.562}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5162; - type="Land_InvisibleBarrier_F"; - atlOffset=3.7300086; - }; - class Item1100 - { - dataType="Object"; - class PositionInfo - { - position[]={23849.023,9.9600105,16022.562}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5163; - type="Land_InvisibleBarrier_F"; - atlOffset=4.7300105; - }; - class Item1101 - { - dataType="Object"; - class PositionInfo - { - position[]={23849.023,9.9599991,16026.562}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5164; - type="Land_InvisibleBarrier_F"; - atlOffset=4.7299991; - }; - class Item1102 - { - dataType="Object"; - class PositionInfo - { - position[]={23846.523,9.9599991,16022.562}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5165; - type="Land_InvisibleBarrier_F"; - atlOffset=4.7299991; - }; - class Item1103 - { - dataType="Object"; - class PositionInfo - { - position[]={23846.523,8.9599953,16026.562}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5166; - type="Land_InvisibleBarrier_F"; - atlOffset=3.7299953; - }; - class Item1104 - { - dataType="Object"; - class PositionInfo - { - position[]={23846.523,9.9599953,16026.562}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5167; - type="Land_InvisibleBarrier_F"; - atlOffset=4.7299953; - }; - class Item1105 - { - dataType="Object"; - class PositionInfo - { - position[]={23846.523,8.9599991,16022.562}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5168; - type="Land_InvisibleBarrier_F"; - atlOffset=3.7299991; - }; - class Item1106 - { - dataType="Object"; - class PositionInfo - { - position[]={23847.398,9.0037222,16024.437}; - }; - side="Empty"; - flags=1; - class Attributes - { - }; - id=5169; - type="Land_Plank_01_8m_F"; - atlOffset=3.7300067; - }; - class Item1107 - { - dataType="Object"; - class PositionInfo - { - position[]={23848.148,9.013732,16024.437}; - }; - side="Empty"; - flags=1; - class Attributes - { - }; - id=5170; - type="Land_Plank_01_8m_F"; - atlOffset=3.7400165; - }; - class Item1108 - { - dataType="Object"; - class PositionInfo - { - position[]={23849.023,8.9700069,16034.437}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5171; - type="Land_InvisibleBarrier_F"; - atlOffset=3.7400069; - }; - class Item1109 - { - dataType="Object"; - class PositionInfo - { - position[]={23849.023,8.9700069,16030.437}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5172; - type="Land_InvisibleBarrier_F"; - atlOffset=3.7400069; - }; - class Item1110 - { - dataType="Object"; - class PositionInfo - { - position[]={23849.023,9.9700089,16030.437}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5173; - type="Land_InvisibleBarrier_F"; - atlOffset=4.7400088; - }; - class Item1111 - { - dataType="Object"; - class PositionInfo - { - position[]={23849.023,9.9700089,16034.437}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5174; - type="Land_InvisibleBarrier_F"; - atlOffset=4.7400088; - }; - class Item1112 - { - dataType="Object"; - class PositionInfo - { - position[]={23846.523,8.9700146,16034.437}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5175; - type="Land_InvisibleBarrier_F"; - atlOffset=3.7400146; - }; - class Item1113 - { - dataType="Object"; - class PositionInfo - { - position[]={23846.523,9.9700165,16034.437}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5176; - type="Land_InvisibleBarrier_F"; - atlOffset=4.7400165; - }; - class Item1114 - { - dataType="Object"; - class PositionInfo - { - position[]={23847.398,9.013732,16032.312}; - }; - side="Empty"; - flags=1; - class Attributes - { - }; - id=5177; - type="Land_Plank_01_8m_F"; - atlOffset=3.7400165; - }; - class Item1115 - { - dataType="Object"; - class PositionInfo - { - position[]={23848.148,9.0237207,16032.312}; - }; - side="Empty"; - flags=1; - class Attributes - { - }; - id=5178; - type="Land_Plank_01_8m_F"; - atlOffset=3.7500052; - }; - class Item1116 - { - dataType="Object"; - class PositionInfo - { - position[]={23849.023,8.970005,16042.312}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5179; - type="Land_InvisibleBarrier_F"; - atlOffset=3.740005; - }; - class Item1117 - { - dataType="Object"; - class PositionInfo - { - position[]={23849.023,8.9700069,16038.312}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5180; - type="Land_InvisibleBarrier_F"; - atlOffset=3.7400069; - }; - class Item1118 - { - dataType="Object"; - class PositionInfo - { - position[]={23849.023,9.9700089,16038.312}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5181; - type="Land_InvisibleBarrier_F"; - atlOffset=4.7400088; - }; - class Item1119 - { - dataType="Object"; - class PositionInfo - { - position[]={23849.023,9.970005,16042.312}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5182; - type="Land_InvisibleBarrier_F"; - atlOffset=4.740005; - }; - class Item1120 - { - dataType="Object"; - class PositionInfo - { - position[]={23846.523,9.9700127,16038.312}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5183; - type="Land_InvisibleBarrier_F"; - atlOffset=4.7400126; - }; - class Item1121 - { - dataType="Object"; - class PositionInfo - { - position[]={23846.523,8.9700184,16042.312}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5184; - type="Land_InvisibleBarrier_F"; - atlOffset=3.7400184; - }; - class Item1122 - { - dataType="Object"; - class PositionInfo - { - position[]={23846.523,9.9700203,16042.312}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5185; - type="Land_InvisibleBarrier_F"; - atlOffset=4.7400203; - }; - class Item1123 - { - dataType="Object"; - class PositionInfo - { - position[]={23846.523,8.9700127,16038.312}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5186; - type="Land_InvisibleBarrier_F"; - atlOffset=3.7400126; - }; - class Item1124 - { - dataType="Object"; - class PositionInfo - { - position[]={23847.398,9.0137281,16040.187}; - }; - side="Empty"; - flags=1; - class Attributes - { - }; - id=5187; - type="Land_Plank_01_8m_F"; - atlOffset=3.7400126; - }; - class Item1125 - { - dataType="Object"; - class PositionInfo - { - position[]={23848.148,9.0237246,16040.187}; - }; - side="Empty"; - flags=1; - class Attributes - { - }; - id=5188; - type="Land_Plank_01_8m_F"; - atlOffset=3.7500091; - }; - class Item1126 - { - dataType="Object"; - class PositionInfo - { - position[]={23848.148,9.0337095,16048.062}; - }; - side="Empty"; - flags=1; - class Attributes - { - }; - id=5189; - type="Land_Plank_01_8m_F"; - atlOffset=3.759994; - }; - class Item1127 - { - dataType="Object"; - class PositionInfo - { - position[]={23847.398,9.0237246,16048.062}; - }; - side="Empty"; - flags=1; - class Attributes - { - }; - id=5190; - type="Land_Plank_01_8m_F"; - atlOffset=3.7500091; - }; - class Item1128 - { - dataType="Object"; - class PositionInfo - { - position[]={23849.023,8.9800034,16046.187}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5191; - type="Land_InvisibleBarrier_F"; - atlOffset=3.7500033; - }; - class Item1129 - { - dataType="Object"; - class PositionInfo - { - position[]={23849.023,8.9800053,16050.187}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5192; - type="Land_InvisibleBarrier_F"; - atlOffset=3.7500052; - }; - class Item1130 - { - dataType="Object"; - class PositionInfo - { - position[]={23849.023,9.9800072,16050.187}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5193; - type="Land_InvisibleBarrier_F"; - atlOffset=4.7500072; - }; - class Item1131 - { - dataType="Object"; - class PositionInfo - { - position[]={23846.523,9.980011,16050.187}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5194; - type="Land_InvisibleBarrier_F"; - atlOffset=4.750011; - }; - class Item1132 - { - dataType="Object"; - class PositionInfo - { - position[]={23846.523,8.9800091,16050.187}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5195; - type="Land_InvisibleBarrier_F"; - atlOffset=3.7500091; - }; - class Item1133 - { - dataType="Object"; - class PositionInfo - { - position[]={23849.023,8.9700165,16058.062}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5196; - type="Land_InvisibleBarrier_F"; - atlOffset=3.7400165; - }; - class Item1134 - { - dataType="Object"; - class PositionInfo - { - position[]={23849.023,8.970005,16054.062}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5197; - type="Land_InvisibleBarrier_F"; - atlOffset=3.740005; - }; - class Item1135 - { - dataType="Object"; - class PositionInfo - { - position[]={23849.023,9.970005,16054.062}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5198; - type="Land_InvisibleBarrier_F"; - atlOffset=4.740005; - }; - class Item1136 - { - dataType="Object"; - class PositionInfo - { - position[]={23849.023,9.9700165,16058.062}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5199; - type="Land_InvisibleBarrier_F"; - atlOffset=4.7400165; - }; - class Item1137 - { - dataType="Object"; - class PositionInfo - { - position[]={23846.523,9.9700089,16054.062}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5200; - type="Land_InvisibleBarrier_F"; - atlOffset=4.7400088; - }; - class Item1138 - { - dataType="Object"; - class PositionInfo - { - position[]={23846.523,8.9700108,16055.937}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5201; - type="Land_InvisibleBarrier_F"; - atlOffset=3.7400107; - }; - class Item1139 - { - dataType="Object"; - class PositionInfo - { - position[]={23846.523,9.9700127,16055.937}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5202; - type="Land_InvisibleBarrier_F"; - atlOffset=4.7400126; - }; - class Item1140 - { - dataType="Object"; - class PositionInfo - { - position[]={23846.523,8.9700069,16054.062}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5203; - type="Land_InvisibleBarrier_F"; - atlOffset=3.7400069; - }; - class Item1141 - { - dataType="Object"; - class PositionInfo - { - position[]={23847.398,9.0137339,16055.937}; - }; - side="Empty"; - flags=1; - class Attributes - { - }; - id=5204; - type="Land_Plank_01_8m_F"; - atlOffset=3.7400184; - }; - class Item1142 - { - dataType="Object"; - class PositionInfo - { - position[]={23848.148,9.0237169,16055.937}; - }; - side="Empty"; - flags=1; - class Attributes - { - }; - id=5205; - type="Land_Plank_01_8m_F"; - atlOffset=3.7500014; - }; - class Item1143 - { - dataType="Object"; - class PositionInfo - { - position[]={23849.023,8.9800072,16065.937}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5206; - type="Land_InvisibleBarrier_F"; - atlOffset=3.7500072; - }; - class Item1144 - { - dataType="Object"; - class PositionInfo - { - position[]={23849.023,8.9800091,16061.937}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5207; - type="Land_InvisibleBarrier_F"; - atlOffset=3.7500091; - }; - class Item1145 - { - dataType="Object"; - class PositionInfo - { - position[]={23849.023,9.980011,16061.937}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5208; - type="Land_InvisibleBarrier_F"; - atlOffset=4.750011; - }; - class Item1146 - { - dataType="Object"; - class PositionInfo - { - position[]={23849.023,9.9800072,16065.937}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5209; - type="Land_InvisibleBarrier_F"; - atlOffset=4.7500072; - }; - class Item1147 - { - dataType="Object"; - class PositionInfo - { - position[]={23846.523,9.9800034,16061.937}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5210; - type="Land_InvisibleBarrier_F"; - atlOffset=4.7500033; - }; - class Item1148 - { - dataType="Object"; - class PositionInfo - { - position[]={23846.523,8.980011,16065.937}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5211; - type="Land_InvisibleBarrier_F"; - atlOffset=3.750011; - }; - class Item1149 - { - dataType="Object"; - class PositionInfo - { - position[]={23846.523,9.980011,16065.937}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5212; - type="Land_InvisibleBarrier_F"; - atlOffset=4.750011; - }; - class Item1150 - { - dataType="Object"; - class PositionInfo - { - position[]={23846.523,8.9800034,16061.937}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5213; - type="Land_InvisibleBarrier_F"; - atlOffset=3.7500033; - }; - class Item1151 - { - dataType="Object"; - class PositionInfo - { - position[]={23847.398,9.0237188,16063.812}; - }; - side="Empty"; - flags=1; - class Attributes - { - }; - id=5214; - type="Land_Plank_01_8m_F"; - atlOffset=3.7500033; - }; - class Item1152 - { - dataType="Object"; - class PositionInfo - { - position[]={23848.148,9.0337191,16063.812}; - }; - side="Empty"; - flags=1; - class Attributes - { - }; - id=5215; - type="Land_Plank_01_8m_F"; - atlOffset=3.7600036; - }; - class Item1153 - { - dataType="Object"; - class PositionInfo - { - position[]={23848.023,9.9799995,16068.312}; - angles[]={0,3.1415927,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5216; - type="Land_InvisibleBarrier_F"; - atlOffset=4.7499995; - }; - class Item1154 - { - dataType="Object"; - class PositionInfo - { - position[]={23848.023,8.9799995,16068.312}; - angles[]={0,3.1415927,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5217; - type="Land_InvisibleBarrier_F"; - atlOffset=3.7499995; - }; - class Item1155 - { - dataType="Object"; - class PositionInfo - { - position[]={23846.523,8.9800014,16046.187}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5218; - type="Land_InvisibleBarrier_F"; - atlOffset=3.7500014; - }; - class Item1156 - { - dataType="Object"; - class PositionInfo - { - position[]={23846.523,9.9800034,16046.187}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5219; - type="Land_InvisibleBarrier_F"; - atlOffset=4.7500033; - }; - class Item1157 - { - dataType="Object"; - class PositionInfo - { - position[]={23849.023,9.9800034,16046.187}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5220; - type="Land_InvisibleBarrier_F"; - atlOffset=4.7500033; - }; - class Item1158 - { - dataType="Object"; - class PositionInfo - { - position[]={23843.023,9.0237131,16030.062}; - angles[]={0,4.712389,0}; - }; - side="Empty"; - flags=1; - class Attributes - { - }; - id=5221; - type="Land_Plank_01_8m_F"; - atlOffset=3.7499976; - }; - class Item1159 - { - dataType="Object"; - class PositionInfo - { - position[]={23843.023,9.0137224,16029.312}; - angles[]={0,4.712389,0}; - }; - side="Empty"; - flags=1; - class Attributes - { - }; - id=5222; - type="Land_Plank_01_8m_F"; - atlOffset=3.7400069; - }; - class Item1160 - { - dataType="Object"; - class PositionInfo - { - position[]={23844.898,8.970005,16030.937}; - }; - side="Empty"; - class Attributes - { - }; - id=5223; - type="Land_InvisibleBarrier_F"; - atlOffset=3.740005; - }; - class Item1161 - { - dataType="Object"; - class PositionInfo - { - position[]={23840.898,8.9700146,16030.937}; - }; - side="Empty"; - class Attributes - { - }; - id=5224; - type="Land_InvisibleBarrier_F"; - atlOffset=3.7400146; - }; - class Item1162 - { - dataType="Object"; - class PositionInfo - { - position[]={23840.898,9.9700165,16030.937}; - }; - side="Empty"; - class Attributes - { - }; - id=5225; - type="Land_InvisibleBarrier_F"; - atlOffset=4.7400165; - }; - class Item1163 - { - dataType="Object"; - class PositionInfo - { - position[]={23840.898,9.970005,16028.437}; - }; - side="Empty"; - class Attributes - { - }; - id=5226; - type="Land_InvisibleBarrier_F"; - atlOffset=4.740005; - }; - class Item1164 - { - dataType="Object"; - class PositionInfo - { - position[]={23840.898,8.9700031,16028.437}; - }; - side="Empty"; - class Attributes - { - }; - id=5227; - type="Land_InvisibleBarrier_F"; - atlOffset=3.7400031; - }; - class Item1165 - { - dataType="Object"; - class PositionInfo - { - position[]={23833.023,8.9599991,16030.937}; - }; - side="Empty"; - class Attributes - { - }; - id=5228; - type="Land_InvisibleBarrier_F"; - atlOffset=3.7299991; - }; - class Item1166 - { - dataType="Object"; - class PositionInfo - { - position[]={23837.023,8.9600067,16030.937}; - }; - side="Empty"; - class Attributes - { - }; - id=5229; - type="Land_InvisibleBarrier_F"; - atlOffset=3.7300067; - }; - class Item1167 - { - dataType="Object"; - class PositionInfo - { - position[]={23837.023,9.9600067,16030.937}; - }; - side="Empty"; - class Attributes - { - }; - id=5230; - type="Land_InvisibleBarrier_F"; - atlOffset=4.7300067; - }; - class Item1168 - { - dataType="Object"; - class PositionInfo - { - position[]={23833.023,9.9599991,16030.937}; - }; - side="Empty"; - class Attributes - { - }; - id=5231; - type="Land_InvisibleBarrier_F"; - atlOffset=4.7299991; - }; - class Item1169 - { - dataType="Object"; - class PositionInfo - { - position[]={23837.023,9.9599953,16028.437}; - }; - side="Empty"; - class Attributes - { - }; - id=5232; - type="Land_InvisibleBarrier_F"; - atlOffset=4.7299953; - }; - class Item1170 - { - dataType="Object"; - class PositionInfo - { - position[]={23833.023,8.9600067,16028.437}; - }; - side="Empty"; - class Attributes - { - }; - id=5233; - type="Land_InvisibleBarrier_F"; - atlOffset=3.7300067; - }; - class Item1171 - { - dataType="Object"; - class PositionInfo - { - position[]={23833.023,9.9600067,16028.437}; - }; - side="Empty"; - class Attributes - { - }; - id=5234; - type="Land_InvisibleBarrier_F"; - atlOffset=4.7300067; - }; - class Item1172 - { - dataType="Object"; - class PositionInfo - { - position[]={23837.023,8.9599953,16028.437}; - }; - side="Empty"; - class Attributes - { - }; - id=5235; - type="Land_InvisibleBarrier_F"; - atlOffset=3.7299953; - }; - class Item1173 - { - dataType="Object"; - class PositionInfo - { - position[]={23835.148,9.0037241,16029.312}; - angles[]={0,4.712389,0}; - }; - side="Empty"; - flags=1; - class Attributes - { - }; - id=5236; - type="Land_Plank_01_8m_F"; - atlOffset=3.7300086; - }; - class Item1174 - { - dataType="Object"; - class PositionInfo - { - position[]={23835.148,9.0137243,16030.062}; - angles[]={0,4.712389,0}; - }; - side="Empty"; - flags=1; - class Attributes - { - }; - id=5237; - type="Land_Plank_01_8m_F"; - atlOffset=3.7400088; - }; - class Item1175 - { - dataType="Object"; - class PositionInfo - { - position[]={23825.148,8.9700127,16030.937}; - }; - side="Empty"; - class Attributes - { - }; - id=5238; - type="Land_InvisibleBarrier_F"; - atlOffset=3.7400126; - }; - class Item1176 - { - dataType="Object"; - class PositionInfo - { - position[]={23829.148,8.9700089,16030.937}; - }; - side="Empty"; - class Attributes - { - }; - id=5239; - type="Land_InvisibleBarrier_F"; - atlOffset=3.7400088; - }; - class Item1177 - { - dataType="Object"; - class PositionInfo - { - position[]={23829.148,9.9700089,16030.937}; - }; - side="Empty"; - class Attributes - { - }; - id=5240; - type="Land_InvisibleBarrier_F"; - atlOffset=4.7400088; - }; - class Item1178 - { - dataType="Object"; - class PositionInfo - { - position[]={23825.148,9.9700127,16030.937}; - }; - side="Empty"; - class Attributes - { - }; - id=5241; - type="Land_InvisibleBarrier_F"; - atlOffset=4.7400126; - }; - class Item1179 - { - dataType="Object"; - class PositionInfo - { - position[]={23829.148,9.9700165,16028.437}; - }; - side="Empty"; - class Attributes - { - }; - id=5242; - type="Land_InvisibleBarrier_F"; - atlOffset=4.7400165; - }; - class Item1180 - { - dataType="Object"; - class PositionInfo - { - position[]={23825.148,8.9700165,16028.437}; - }; - side="Empty"; - class Attributes - { - }; - id=5243; - type="Land_InvisibleBarrier_F"; - atlOffset=3.7400165; - }; - class Item1181 - { - dataType="Object"; - class PositionInfo - { - position[]={23825.148,9.9700165,16028.437}; - }; - side="Empty"; - class Attributes - { - }; - id=5244; - type="Land_InvisibleBarrier_F"; - atlOffset=4.7400165; - }; - class Item1182 - { - dataType="Object"; - class PositionInfo - { - position[]={23829.148,8.9700146,16028.437}; - }; - side="Empty"; - class Attributes - { - }; - id=5245; - type="Land_InvisibleBarrier_F"; - atlOffset=3.7400146; - }; - class Item1183 - { - dataType="Object"; - class PositionInfo - { - position[]={23827.273,9.0137281,16029.312}; - angles[]={0,4.712389,0}; - }; - side="Empty"; - flags=1; - class Attributes - { - }; - id=5246; - type="Land_Plank_01_8m_F"; - atlOffset=3.7400126; - }; - class Item1184 - { - dataType="Object"; - class PositionInfo - { - position[]={23827.273,9.0237284,16030.062}; - angles[]={0,4.712389,0}; - }; - side="Empty"; - flags=1; - class Attributes - { - }; - id=5247; - type="Land_Plank_01_8m_F"; - atlOffset=3.7500129; - }; - class Item1185 - { - dataType="Object"; - class PositionInfo - { - position[]={23817.273,8.9700184,16030.937}; - }; - side="Empty"; - class Attributes - { - }; - id=5248; - type="Land_InvisibleBarrier_F"; - atlOffset=3.7400184; - }; - class Item1186 - { - dataType="Object"; - class PositionInfo - { - position[]={23821.273,8.970005,16030.937}; - }; - side="Empty"; - class Attributes - { - }; - id=5249; - type="Land_InvisibleBarrier_F"; - atlOffset=3.740005; - }; - class Item1187 - { - dataType="Object"; - class PositionInfo - { - position[]={23821.273,9.970005,16030.937}; - }; - side="Empty"; - class Attributes - { - }; - id=5250; - type="Land_InvisibleBarrier_F"; - atlOffset=4.740005; - }; - class Item1188 - { - dataType="Object"; - class PositionInfo - { - position[]={23817.273,9.9700203,16030.937}; - }; - side="Empty"; - class Attributes - { - }; - id=5251; - type="Land_InvisibleBarrier_F"; - atlOffset=4.7400203; - }; - class Item1189 - { - dataType="Object"; - class PositionInfo - { - position[]={23821.273,9.9700203,16028.437}; - }; - side="Empty"; - class Attributes - { - }; - id=5252; - type="Land_InvisibleBarrier_F"; - atlOffset=4.7400203; - }; - class Item1190 - { - dataType="Object"; - class PositionInfo - { - position[]={23817.273,8.970005,16028.437}; - }; - side="Empty"; - class Attributes - { - }; - id=5253; - type="Land_InvisibleBarrier_F"; - atlOffset=3.740005; - }; - class Item1191 - { - dataType="Object"; - class PositionInfo - { - position[]={23817.273,9.970005,16028.437}; - }; - side="Empty"; - class Attributes - { - }; - id=5254; - type="Land_InvisibleBarrier_F"; - atlOffset=4.740005; - }; - class Item1192 - { - dataType="Object"; - class PositionInfo - { - position[]={23821.273,8.9700184,16028.437}; - }; - side="Empty"; - class Attributes - { - }; - id=5255; - type="Land_InvisibleBarrier_F"; - atlOffset=3.7400184; - }; - class Item1193 - { - dataType="Object"; - class PositionInfo - { - position[]={23819.398,9.0137281,16029.312}; - angles[]={0,4.712389,0}; - }; - side="Empty"; - flags=1; - class Attributes - { - }; - id=5256; - type="Land_Plank_01_8m_F"; - atlOffset=3.7400126; - }; - class Item1194 - { - dataType="Object"; - class PositionInfo - { - position[]={23819.398,9.0237188,16030.062}; - angles[]={0,4.712389,0}; - }; - side="Empty"; - flags=1; - class Attributes - { - }; - id=5257; - type="Land_Plank_01_8m_F"; - atlOffset=3.7500033; - }; - class Item1195 - { - dataType="Object"; - class PositionInfo - { - position[]={23844.898,8.9700031,16028.437}; - }; - side="Empty"; - class Attributes - { - }; - id=5258; - type="Land_InvisibleBarrier_F"; - atlOffset=3.7400031; - }; - class Item1196 - { - dataType="Object"; - class PositionInfo - { - position[]={23844.898,9.970005,16028.437}; - }; - side="Empty"; - class Attributes - { - }; - id=5259; - type="Land_InvisibleBarrier_F"; - atlOffset=4.740005; - }; - class Item1197 - { - dataType="Object"; - class PositionInfo - { - position[]={23844.898,9.970005,16030.937}; - }; - side="Empty"; - class Attributes - { - }; - id=5260; - type="Land_InvisibleBarrier_F"; - atlOffset=4.740005; - }; - class Item1198 - { - dataType="Object"; - class PositionInfo - { - position[]={23843.023,9.0237246,16059.187}; - angles[]={0,4.712389,0}; - }; - side="Empty"; - flags=1; - class Attributes - { - }; - id=5261; - type="Land_Plank_01_8m_F"; - atlOffset=3.7500091; - }; - class Item1199 - { - dataType="Object"; - class PositionInfo - { - position[]={23843.023,9.0137205,16058.437}; - angles[]={0,4.712389,0}; - }; - side="Empty"; - flags=1; - class Attributes - { - }; - id=5262; - type="Land_Plank_01_8m_F"; - atlOffset=3.740005; - }; - class Item1200 - { - dataType="Object"; - class PositionInfo - { - position[]={23844.898,8.970005,16060.062}; - }; - side="Empty"; - class Attributes - { - }; - id=5263; - type="Land_InvisibleBarrier_F"; - atlOffset=3.740005; - }; - class Item1201 - { - dataType="Object"; - class PositionInfo - { - position[]={23840.898,8.9700165,16060.062}; - }; - side="Empty"; - class Attributes - { - }; - id=5264; - type="Land_InvisibleBarrier_F"; - atlOffset=3.7400165; - }; - class Item1202 - { - dataType="Object"; - class PositionInfo - { - position[]={23840.898,9.9700165,16060.062}; - }; - side="Empty"; - class Attributes - { - }; - id=5265; - type="Land_InvisibleBarrier_F"; - atlOffset=4.7400165; - }; - class Item1203 - { - dataType="Object"; - class PositionInfo - { - position[]={23840.898,9.9700127,16057.562}; - }; - side="Empty"; - class Attributes - { - }; - id=5266; - type="Land_InvisibleBarrier_F"; - atlOffset=4.7400126; - }; - class Item1204 - { - dataType="Object"; - class PositionInfo - { - position[]={23840.898,8.9700108,16057.562}; - }; - side="Empty"; - class Attributes - { - }; - id=5267; - type="Land_InvisibleBarrier_F"; - atlOffset=3.7400107; - }; - class Item1205 - { - dataType="Object"; - class PositionInfo - { - position[]={23833.023,8.9600086,16060.062}; - }; - side="Empty"; - class Attributes - { - }; - id=5268; - type="Land_InvisibleBarrier_F"; - atlOffset=3.7300086; - }; - class Item1206 - { - dataType="Object"; - class PositionInfo - { - position[]={23837.023,8.960001,16060.062}; - }; - side="Empty"; - class Attributes - { - }; - id=5269; - type="Land_InvisibleBarrier_F"; - atlOffset=3.730001; - }; - class Item1207 - { - dataType="Object"; - class PositionInfo - { - position[]={23837.023,9.9600029,16060.062}; - }; - side="Empty"; - class Attributes - { - }; - id=5270; - type="Land_InvisibleBarrier_F"; - atlOffset=4.7300029; - }; - class Item1208 - { - dataType="Object"; - class PositionInfo - { - position[]={23833.023,9.9600105,16060.062}; - }; - side="Empty"; - class Attributes - { - }; - id=5271; - type="Land_InvisibleBarrier_F"; - atlOffset=4.7300105; - }; - class Item1209 - { - dataType="Object"; - class PositionInfo - { - position[]={23837.023,9.9599991,16057.562}; - }; - side="Empty"; - class Attributes - { - }; - id=5272; - type="Land_InvisibleBarrier_F"; - atlOffset=4.7299991; - }; - class Item1210 - { - dataType="Object"; - class PositionInfo - { - position[]={23833.023,8.9599953,16057.562}; - }; - side="Empty"; - class Attributes - { - }; - id=5273; - type="Land_InvisibleBarrier_F"; - atlOffset=3.7299953; - }; - class Item1211 - { - dataType="Object"; - class PositionInfo - { - position[]={23833.023,9.9599953,16057.562}; - }; - side="Empty"; - class Attributes - { - }; - id=5274; - type="Land_InvisibleBarrier_F"; - atlOffset=4.7299953; - }; - class Item1212 - { - dataType="Object"; - class PositionInfo - { - position[]={23837.023,8.9599972,16057.562}; - }; - side="Empty"; - class Attributes - { - }; - id=5275; - type="Land_InvisibleBarrier_F"; - atlOffset=3.7299972; - }; - class Item1213 - { - dataType="Object"; - class PositionInfo - { - position[]={23835.148,9.0037203,16058.437}; - angles[]={0,4.712389,0}; - }; - side="Empty"; - flags=1; - class Attributes - { - }; - id=5276; - type="Land_Plank_01_8m_F"; - atlOffset=3.7300048; - }; - class Item1214 - { - dataType="Object"; - class PositionInfo - { - position[]={23835.148,9.0137339,16059.187}; - angles[]={0,4.712389,0}; - }; - side="Empty"; - flags=1; - class Attributes - { - }; - id=5277; - type="Land_Plank_01_8m_F"; - atlOffset=3.7400184; - }; - class Item1215 - { - dataType="Object"; - class PositionInfo - { - position[]={23825.148,8.970005,16060.062}; - }; - side="Empty"; - class Attributes - { - }; - id=5278; - type="Land_InvisibleBarrier_F"; - atlOffset=3.740005; - }; - class Item1216 - { - dataType="Object"; - class PositionInfo - { - position[]={23829.148,8.970005,16060.062}; - }; - side="Empty"; - class Attributes - { - }; - id=5279; - type="Land_InvisibleBarrier_F"; - atlOffset=3.740005; - }; - class Item1217 - { - dataType="Object"; - class PositionInfo - { - position[]={23829.148,9.970005,16060.062}; - }; - side="Empty"; - class Attributes - { - }; - id=5280; - type="Land_InvisibleBarrier_F"; - atlOffset=4.740005; - }; - class Item1218 - { - dataType="Object"; - class PositionInfo - { - position[]={23825.148,9.970005,16060.062}; - }; - side="Empty"; - class Attributes - { - }; - id=5281; - type="Land_InvisibleBarrier_F"; - atlOffset=4.740005; - }; - class Item1219 - { - dataType="Object"; - class PositionInfo - { - position[]={23829.148,9.970005,16057.562}; - }; - side="Empty"; - class Attributes - { - }; - id=5282; - type="Land_InvisibleBarrier_F"; - atlOffset=4.740005; - }; - class Item1220 - { - dataType="Object"; - class PositionInfo - { - position[]={23825.148,8.9700108,16057.562}; - }; - side="Empty"; - class Attributes - { - }; - id=5283; - type="Land_InvisibleBarrier_F"; - atlOffset=3.7400107; - }; - class Item1221 - { - dataType="Object"; - class PositionInfo - { - position[]={23825.148,9.9700127,16057.562}; - }; - side="Empty"; - class Attributes - { - }; - id=5284; - type="Land_InvisibleBarrier_F"; - atlOffset=4.7400126; - }; - class Item1222 - { - dataType="Object"; - class PositionInfo - { - position[]={23829.148,8.970005,16057.562}; - }; - side="Empty"; - class Attributes - { - }; - id=5285; - type="Land_InvisibleBarrier_F"; - atlOffset=3.740005; - }; - class Item1223 - { - dataType="Object"; - class PositionInfo - { - position[]={23827.273,9.01373,16058.437}; - angles[]={0,4.712389,0}; - }; - side="Empty"; - flags=1; - class Attributes - { - }; - id=5286; - type="Land_Plank_01_8m_F"; - atlOffset=3.7400146; - }; - class Item1224 - { - dataType="Object"; - class PositionInfo - { - position[]={23827.273,9.023715,16059.187}; - angles[]={0,4.712389,0}; - }; - side="Empty"; - flags=1; - class Attributes - { - }; - id=5287; - type="Land_Plank_01_8m_F"; - atlOffset=3.7499995; - }; - class Item1225 - { - dataType="Object"; - class PositionInfo - { - position[]={23817.273,8.9700165,16060.062}; - }; - side="Empty"; - class Attributes - { - }; - id=5288; - type="Land_InvisibleBarrier_F"; - atlOffset=3.7400165; - }; - class Item1226 - { - dataType="Object"; - class PositionInfo - { - position[]={23821.273,8.9700127,16060.062}; - }; - side="Empty"; - class Attributes - { - }; - id=5289; - type="Land_InvisibleBarrier_F"; - atlOffset=3.7400126; - }; - class Item1227 - { - dataType="Object"; - class PositionInfo - { - position[]={23821.273,9.9700127,16060.062}; - }; - side="Empty"; - class Attributes - { - }; - id=5290; - type="Land_InvisibleBarrier_F"; - atlOffset=4.7400126; - }; - class Item1228 - { - dataType="Object"; - class PositionInfo - { - position[]={23817.273,9.9700165,16060.062}; - }; - side="Empty"; - class Attributes - { - }; - id=5291; - type="Land_InvisibleBarrier_F"; - atlOffset=4.7400165; - }; - class Item1229 - { - dataType="Object"; - class PositionInfo - { - position[]={23821.273,9.970005,16057.562}; - }; - side="Empty"; - class Attributes - { - }; - id=5292; - type="Land_InvisibleBarrier_F"; - atlOffset=4.740005; - }; - class Item1230 - { - dataType="Object"; - class PositionInfo - { - position[]={23817.273,8.9700069,16057.562}; - }; - side="Empty"; - class Attributes - { - }; - id=5293; - type="Land_InvisibleBarrier_F"; - atlOffset=3.7400069; - }; - class Item1231 - { - dataType="Object"; - class PositionInfo - { - position[]={23817.273,9.9700089,16057.562}; - }; - side="Empty"; - class Attributes - { - }; - id=5294; - type="Land_InvisibleBarrier_F"; - atlOffset=4.7400088; - }; - class Item1232 - { - dataType="Object"; - class PositionInfo - { - position[]={23821.273,8.9700031,16057.562}; - }; - side="Empty"; - class Attributes - { - }; - id=5295; - type="Land_InvisibleBarrier_F"; - atlOffset=3.7400031; - }; - class Item1233 - { - dataType="Object"; - class PositionInfo - { - position[]={23819.398,9.01373,16058.437}; - angles[]={0,4.712389,0}; - }; - side="Empty"; - flags=1; - class Attributes - { - }; - id=5296; - type="Land_Plank_01_8m_F"; - atlOffset=3.7400146; - }; - class Item1234 - { - dataType="Object"; - class PositionInfo - { - position[]={23819.398,9.0237169,16059.187}; - angles[]={0,4.712389,0}; - }; - side="Empty"; - flags=1; - class Attributes - { - }; - id=5297; - type="Land_Plank_01_8m_F"; - atlOffset=3.7500014; - }; - class Item1235 - { - dataType="Object"; - class PositionInfo - { - position[]={23844.898,8.9700089,16057.562}; - }; - side="Empty"; - class Attributes - { - }; - id=5298; - type="Land_InvisibleBarrier_F"; - atlOffset=3.7400088; - }; - class Item1236 - { - dataType="Object"; - class PositionInfo - { - position[]={23844.898,9.9700089,16057.562}; - }; - side="Empty"; - class Attributes - { - }; - id=5299; - type="Land_InvisibleBarrier_F"; - atlOffset=4.7400088; - }; - class Item1237 - { - dataType="Object"; - class PositionInfo - { - position[]={23844.898,9.970005,16060.062}; - }; - side="Empty"; - class Attributes - { - }; - id=5300; - type="Land_InvisibleBarrier_F"; - atlOffset=4.740005; - }; - class Item1238 - { - dataType="Object"; - class PositionInfo - { - position[]={23814.898,9.0237188,16032.687}; - }; - side="Empty"; - flags=1; - class Attributes - { - }; - id=5301; - type="Land_Plank_01_8m_F"; - atlOffset=3.7500033; - }; - class Item1239 - { - dataType="Object"; - class PositionInfo - { - position[]={23814.148,9.0137262,16032.687}; - }; - side="Empty"; - flags=1; - class Attributes - { - }; - id=5302; - type="Land_Plank_01_8m_F"; - atlOffset=3.7400107; - }; - class Item1240 - { - dataType="Object"; - class PositionInfo - { - position[]={23814.148,8.9700089,16028.312}; - angles[]={0,3.1415923,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5303; - type="Land_InvisibleBarrier_F"; - atlOffset=3.7400088; - }; - class Item1241 - { - dataType="Object"; - class PositionInfo - { - position[]={23815.773,8.970005,16034.812}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5304; - type="Land_InvisibleBarrier_F"; - atlOffset=3.740005; - }; - class Item1242 - { - dataType="Object"; - class PositionInfo - { - position[]={23815.773,9.970005,16034.812}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5305; - type="Land_InvisibleBarrier_F"; - atlOffset=4.740005; - }; - class Item1243 - { - dataType="Object"; - class PositionInfo - { - position[]={23813.273,9.9700203,16034.812}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5306; - type="Land_InvisibleBarrier_F"; - atlOffset=4.7400203; - }; - class Item1244 - { - dataType="Object"; - class PositionInfo - { - position[]={23813.273,8.9700184,16034.812}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5307; - type="Land_InvisibleBarrier_F"; - atlOffset=3.7400184; - }; - class Item1245 - { - dataType="Object"; - class PositionInfo - { - position[]={23815.773,8.9599991,16042.687}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5308; - type="Land_InvisibleBarrier_F"; - atlOffset=3.7299991; - }; - class Item1246 - { - dataType="Object"; - class PositionInfo - { - position[]={23815.773,8.9599972,16038.687}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5309; - type="Land_InvisibleBarrier_F"; - atlOffset=3.7299972; - }; - class Item1247 - { - dataType="Object"; - class PositionInfo - { - position[]={23815.773,9.9599991,16038.687}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5310; - type="Land_InvisibleBarrier_F"; - atlOffset=4.7299991; - }; - class Item1248 - { - dataType="Object"; - class PositionInfo - { - position[]={23815.773,9.9599991,16042.687}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5311; - type="Land_InvisibleBarrier_F"; - atlOffset=4.7299991; - }; - class Item1249 - { - dataType="Object"; - class PositionInfo - { - position[]={23813.273,9.9600067,16038.687}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5312; - type="Land_InvisibleBarrier_F"; - atlOffset=4.7300067; - }; - class Item1250 - { - dataType="Object"; - class PositionInfo - { - position[]={23813.273,8.9600067,16042.687}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5313; - type="Land_InvisibleBarrier_F"; - atlOffset=3.7300067; - }; - class Item1251 - { - dataType="Object"; - class PositionInfo - { - position[]={23813.273,9.9600067,16042.687}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5314; - type="Land_InvisibleBarrier_F"; - atlOffset=4.7300067; - }; - class Item1252 - { - dataType="Object"; - class PositionInfo - { - position[]={23813.273,8.9600048,16038.687}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5315; - type="Land_InvisibleBarrier_F"; - atlOffset=3.7300048; - }; - class Item1253 - { - dataType="Object"; - class PositionInfo - { - position[]={23814.148,9.0037203,16040.562}; - }; - side="Empty"; - flags=1; - class Attributes - { - }; - id=5316; - type="Land_Plank_01_8m_F"; - atlOffset=3.7300048; - }; - class Item1254 - { - dataType="Object"; - class PositionInfo - { - position[]={23814.898,9.0137243,16040.562}; - }; - side="Empty"; - flags=1; - class Attributes - { - }; - id=5317; - type="Land_Plank_01_8m_F"; - atlOffset=3.7400088; - }; - class Item1255 - { - dataType="Object"; - class PositionInfo - { - position[]={23815.773,8.9700165,16050.562}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5318; - type="Land_InvisibleBarrier_F"; - atlOffset=3.7400165; - }; - class Item1256 - { - dataType="Object"; - class PositionInfo - { - position[]={23815.773,8.9700184,16046.562}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5319; - type="Land_InvisibleBarrier_F"; - atlOffset=3.7400184; - }; - class Item1257 - { - dataType="Object"; - class PositionInfo - { - position[]={23815.773,9.9700203,16046.562}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5320; - type="Land_InvisibleBarrier_F"; - atlOffset=4.7400203; - }; - class Item1258 - { - dataType="Object"; - class PositionInfo - { - position[]={23815.773,9.9700165,16050.562}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5321; - type="Land_InvisibleBarrier_F"; - atlOffset=4.7400165; - }; - class Item1259 - { - dataType="Object"; - class PositionInfo - { - position[]={23813.273,9.9700165,16046.562}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5322; - type="Land_InvisibleBarrier_F"; - atlOffset=4.7400165; - }; - class Item1260 - { - dataType="Object"; - class PositionInfo - { - position[]={23813.273,8.9700146,16050.562}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5323; - type="Land_InvisibleBarrier_F"; - atlOffset=3.7400146; - }; - class Item1261 - { - dataType="Object"; - class PositionInfo - { - position[]={23813.273,9.9700165,16050.562}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5324; - type="Land_InvisibleBarrier_F"; - atlOffset=4.7400165; - }; - class Item1262 - { - dataType="Object"; - class PositionInfo - { - position[]={23813.273,8.9700146,16046.562}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5325; - type="Land_InvisibleBarrier_F"; - atlOffset=3.7400146; - }; - class Item1263 - { - dataType="Object"; - class PositionInfo - { - position[]={23814.148,9.0137243,16048.437}; - }; - side="Empty"; - flags=1; - class Attributes - { - }; - id=5326; - type="Land_Plank_01_8m_F"; - atlOffset=3.7400088; - }; - class Item1264 - { - dataType="Object"; - class PositionInfo - { - position[]={23814.898,9.0237169,16048.437}; - }; - side="Empty"; - flags=1; - class Attributes - { - }; - id=5327; - type="Land_Plank_01_8m_F"; - atlOffset=3.7500014; - }; - class Item1265 - { - dataType="Object"; - class PositionInfo - { - position[]={23814.523,8.9800072,16059.937}; - angles[]={6.2823396,3.1415923,6.2765441}; - }; - side="Empty"; - class Attributes - { - }; - id=5328; - type="Land_InvisibleBarrier_F"; - atlOffset=3.7500072; - }; - class Item1266 - { - dataType="Object"; - class PositionInfo - { - position[]={23815.773,8.9700069,16054.437}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5329; - type="Land_InvisibleBarrier_F"; - atlOffset=3.7400069; - }; - class Item1267 - { - dataType="Object"; - class PositionInfo - { - position[]={23815.773,9.9700089,16054.437}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5330; - type="Land_InvisibleBarrier_F"; - atlOffset=4.7400088; - }; - class Item1268 - { - dataType="Object"; - class PositionInfo - { - position[]={23814.523,9.9800072,16059.937}; - angles[]={0,3.1415923,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5331; - type="Land_InvisibleBarrier_F"; - atlOffset=0.90592384; - }; - class Item1269 - { - dataType="Object"; - class PositionInfo - { - position[]={23813.273,9.9700165,16054.437}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5332; - type="Land_InvisibleBarrier_F"; - atlOffset=4.7400165; - }; - class Item1270 - { - dataType="Object"; - class PositionInfo - { - position[]={23813.273,8.9700089,16058.437}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5333; - type="Land_InvisibleBarrier_F"; - atlOffset=3.7400088; - }; - class Item1271 - { - dataType="Object"; - class PositionInfo - { - position[]={23813.273,9.9700089,16058.437}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5334; - type="Land_InvisibleBarrier_F"; - atlOffset=4.7400088; - }; - class Item1272 - { - dataType="Object"; - class PositionInfo - { - position[]={23813.273,8.9700165,16054.437}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5335; - type="Land_InvisibleBarrier_F"; - atlOffset=3.7400165; - }; - class Item1273 - { - dataType="Object"; - class PositionInfo - { - position[]={23814.148,9.0137262,16056.312}; - }; - side="Empty"; - flags=1; - class Attributes - { - }; - id=5336; - type="Land_Plank_01_8m_F"; - atlOffset=3.7400107; - }; - class Item1274 - { - dataType="Object"; - class PositionInfo - { - position[]={23814.898,9.023715,16056.312}; - }; - side="Empty"; - flags=1; - class Attributes - { - }; - id=5337; - type="Land_Plank_01_8m_F"; - atlOffset=3.7499995; - }; - class Item1275 - { - dataType="Object"; - class PositionInfo - { - position[]={23813.273,8.9700031,16030.812}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5338; - type="Land_InvisibleBarrier_F"; - atlOffset=3.7400031; - }; - class Item1276 - { - dataType="Object"; - class PositionInfo - { - position[]={23813.273,9.970005,16030.812}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5339; - type="Land_InvisibleBarrier_F"; - atlOffset=4.740005; - }; - class Item1277 - { - dataType="Object"; - class PositionInfo - { - position[]={23814.148,9.9700089,16028.312}; - angles[]={0,3.1415923,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5340; - type="Land_InvisibleBarrier_F"; - atlOffset=4.7400088; - }; - class Item1278 - { - dataType="Object"; - class PositionInfo - { - position[]={23846.398,8.9600086,16032.562}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5341; - type="Land_InvisibleBarrier_F"; - atlOffset=3.7300086; - }; - class Item1279 - { - dataType="Object"; - class PositionInfo - { - position[]={23846.398,9.9600105,16032.562}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5342; - type="Land_InvisibleBarrier_F"; - atlOffset=4.7300105; - }; - class Item1280 - { - dataType="Object"; - class PositionInfo - { - position[]={23862.523,6.9055057,16011.562}; - angles[]={0,4.712389,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5343; - type="Land_Shoot_House_Panels_F"; - atlOffset=5.7220459e-006; - }; - class Item1281 - { - dataType="Object"; - class PositionInfo - { - position[]={23864.523,6.9055076,16011.562}; - angles[]={0,1.5708025,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5344; - type="Land_Shoot_House_Panels_F"; - atlOffset=7.6293945e-006; - }; - class Item1282 - { - dataType="Object"; - class PositionInfo - { - position[]={23849.127,8.9700165,16011.893}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5345; - type="Land_InvisibleBarrier_F"; - atlOffset=3.7400165; - }; - class Item1283 - { - dataType="Object"; - class PositionInfo - { - position[]={23849.127,9.9700165,16011.893}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5346; - type="Land_InvisibleBarrier_F"; - atlOffset=4.7400165; - }; - class Item1284 - { - dataType="Object"; - class PositionInfo - { - position[]={23815.734,8.9700031,16032.396}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5347; - type="Land_InvisibleBarrier_F"; - atlOffset=3.7400031; - }; - class Item1285 - { - dataType="Object"; - class PositionInfo - { - position[]={23815.734,9.970005,16032.396}; - angles[]={0,1.5707963,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5348; - type="Land_InvisibleBarrier_F"; - atlOffset=4.740005; - }; - class Item1286 - { - dataType="Object"; - class PositionInfo - { - position[]={23805.428,6.2710533,16010.263}; - angles[]={0,6.2810211,0}; - }; - side="Empty"; - flags=5; - class Attributes - { - init="call{[this, ""Killhouse""] execVM ""scripts\simmax\TP_Setup.sqf"";}"; - disableSimulation=1; - }; - id=5351; - type="SignAd_Sponsor_ION_F"; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\simmax\area_01.jpg"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item1287 - { - dataType="Marker"; - position[]={23807.141,5.23,16004.11}; - name="killhouse"; - text="Killhouse"; - type="mil_box"; - colorName="ColorBlue"; - id=5352; - }; - class Item1288 - { - dataType="Object"; - class PositionInfo - { - position[]={23802.205,6.1224227,16009.905}; - angles[]={0,3.1297944,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - skill=0.60000002; - init="call{this addaction [""Open Virtual Arsenal"", { [""Open"",true] call BIS_fnc_arsenal; }];}"; - }; - id=5354; - type="B_supplyCrate_F"; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="[[[[],[]],[[],[]],[[],[]],[[],[]]],true]"; - }; - }; - }; - class Attribute1 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item1289 - { - dataType="Object"; - class PositionInfo - { - position[]={23812.486,5.4864182,16012.986}; - }; - side="Empty"; - flags=5; - class Attributes - { - name="GRAD_Killhouse_Sign"; - }; - id=5359; - type="Land_Billboard_F"; - atlOffset=-1.4867687; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="modules\grad_killhouse\data\killhouse_frei.paa"; - }; - }; - }; - nAttributes=1; - }; - }; - class Item1290 - { - dataType="Object"; - class PositionInfo - { - position[]={15083.33,24.598152,14907.297}; - angles[]={0,0.15824901,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - init="call{_spawnLand = [14266.306,16212.634,0,303.876];" \n "_spawnLand = [14266.306,16212.634,0,303.876]; " \n "_spawnHeli = [15110.336,15008.938,23.5,282.367];" \n "_spawnPlane = [15076.33,14846.923,23.5,281.070];" \n "_spawnWater = [15031.51,14801.366,61.768,188.113]; " \n " " \n "[this,""Vehicle Spawner Carrier"",{true},[],[_spawnLand,_spawnLand,_spawnHeli,_spawnPlane,_spawnWater],{},{OWcam cameraEffect [""Internal"", ""Back"", ""OWCam1""]}] call grad_vehicleSpawner_fnc_addInteraction;}"; - disableSimulation=1; - }; - id=5379; - type="Land_Laptop_unfolded_F"; - atlOffset=0.035327911; - class CustomAttributes - { - class Attribute0 - { - property="ObjectTextureCustom0"; - expression="_this setObjectTextureGlobal [0,_value]"; - class Value - { - class data - { - class type - { - type[]= - { - "STRING" - }; - }; - value="pics\VehicleSpawnerTEST.jpg"; - }; - }; - }; - nAttributes=1; - }; - }; - class Item1291 - { - dataType="Object"; - class PositionInfo - { - position[]={14818.16,-0.096755981,14764.143}; - angles[]={0,3.2275674,0}; - }; - side="Empty"; - class Attributes - { - }; - id=5380; - type="Land_Destroyer_01_base_F"; - atlOffset=62.278; - class CustomAttributes - { - class Attribute0 - { - property="ShipHangarDoorState"; - expression="[([_this, 'Land_Destroyer_01_hull_04_F'] call bis_fnc_destroyer01GetShipPart), _value, true] spawn bis_fnc_destroyer01AnimateHangarDoors;"; - class Value - { - class data - { - class type - { - type[]= - { - "SCALAR" - }; - }; - value=1; - }; - }; - }; - nAttributes=1; - }; - }; - class Item1292 - { - dataType="Group"; - side="West"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={14824.71,11.993649,14843.061}; - angles[]={6.2571969,0.080372415,0.0022340214}; - }; - side="West"; - flags=2; - class Attributes - { - }; - id=5400; - type="B_UAV_AI"; - atlOffset=67.232002; - }; - }; - class Attributes - { - }; - class CrewLinks - { - class LinkIDProvider - { - nextID=1; - }; - class Links - { - items=1; - class Item0 - { - linkID=0; - item0=5400; - item1=5399; - class CustomData - { - role=2; - turretPath[]={0}; - }; - }; - }; - }; - id=5398; - atlOffset=67.232002; - }; - class Item1293 - { - dataType="Object"; - class PositionInfo - { - position[]={14824.972,14.718449,14842.984}; - angles[]={6.2571969,0.080372415,0.0022340214}; - }; - side="West"; - flags=2; - class Attributes - { - init="call{this setAutonomous false;}"; - reportRemoteTargets=1; - receiveRemoteTargets=1; - reportOwnPosition=1; - aiRadarUsage=1; - }; - id=5399; - type="B_Ship_Gun_01_F"; - atlOffset=67.232002; - }; - class Item1294 - { - dataType="Group"; - side="West"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={14823.384,10.427876,14826.439}; - angles[]={0,0.086673051,0}; - }; - side="West"; - flags=2; - class Attributes - { - }; - id=5403; - type="B_UAV_AI"; - atlOffset=65.416; - }; - }; - class Attributes - { - }; - class CrewLinks - { - class LinkIDProvider - { - nextID=1; - }; - class Links - { - items=1; - class Item0 - { - linkID=0; - item0=5403; - item1=5402; - class CustomData - { - role=2; - turretPath[]={0}; - }; - }; - }; - }; - id=5401; - atlOffset=65.416; - }; - class Item1295 - { - dataType="Object"; - class PositionInfo - { - position[]={14823.515,11.79361,14826.378}; - angles[]={0,0.086673051,0}; - }; - side="West"; - flags=2; - class Attributes - { - init="call{this setAutonomous false;}"; - reportRemoteTargets=1; - receiveRemoteTargets=1; - reportOwnPosition=1; - aiRadarUsage=1; - }; - id=5402; - type="B_Ship_MRLS_01_F"; - atlOffset=65.416; - }; - class Item1296 - { - dataType="Group"; - side="West"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={14815.2,16.708366,14714.871}; - angles[]={0,3.2310059,0}; - }; - side="West"; - flags=2; - class Attributes - { - }; - id=5406; - type="B_UAV_AI"; - atlOffset=1.0187016; - }; - }; - class Attributes - { - }; - class CrewLinks - { - class LinkIDProvider - { - nextID=1; - }; - class Links - { - items=1; - class Item0 - { - linkID=0; - item0=5406; - item1=5405; - class CustomData - { - role=2; - turretPath[]={0}; - }; - }; - }; - }; - id=5404; - atlOffset=1.0187016; - }; - class Item1297 - { - dataType="Object"; - class PositionInfo - { - position[]={14813.832,17.658981,14713.77}; - angles[]={0,3.2310059,0}; - }; - side="West"; - flags=2; - class Attributes - { - init="call{this setAutonomous false;}"; - reportRemoteTargets=1; - receiveRemoteTargets=1; - reportOwnPosition=1; - aiRadarUsage=1; - }; - id=5405; - type="B_SAM_System_02_F"; - atlOffset=1.0187016; - class CustomAttributes - { - class Attribute0 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - class type - { - type[]= - { - "BOOL" - }; - }; - value=1; - }; - }; - }; - nAttributes=1; - }; - }; - class Item1298 - { - dataType="Group"; - side="West"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={14814.89,19.133049,14728.403}; - angles[]={0,3.2250369,0}; - }; - side="West"; - flags=6; - class Attributes - { - }; - id=5409; - type="B_UAV_AI"; - atlOffset=0.011617661; - }; - }; - class Attributes - { - }; - class CrewLinks - { - class LinkIDProvider - { - nextID=1; - }; - class Links - { - items=1; - class Item0 - { - linkID=0; - item0=5409; - item1=5408; - class CustomData - { - role=2; - turretPath[]={0}; - }; - }; - }; - }; - id=5407; - atlOffset=0.011617661; - }; - class Item1299 - { - dataType="Object"; - class PositionInfo - { - position[]={14815.129,21.625813,14728.33}; - angles[]={0,3.2250369,0}; - }; - side="West"; - flags=6; - class Attributes - { - init="call{this setAutonomous false;}"; - reportRemoteTargets=1; - receiveRemoteTargets=1; - reportOwnPosition=1; - aiRadarUsage=1; - }; - id=5408; - type="B_AAA_System_01_F"; - atlOffset=0.011617661; - }; - class Item1300 - { - dataType="Group"; - side="West"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={14822.027,15.10476,14812.226}; - angles[]={0,0.08693485,0}; - }; - side="West"; - flags=6; - class Attributes - { - }; - id=5412; - type="B_UAV_AI"; - atlOffset=0.11215496; - }; - }; - class Attributes - { - }; - class CrewLinks - { - class LinkIDProvider - { - nextID=1; - }; - class Links - { - items=1; - class Item0 - { - linkID=0; - item0=5412; - item1=5411; - class CustomData - { - role=2; - turretPath[]={0}; - }; - }; - }; - }; - id=5410; - atlOffset=0.11215496; - }; - class Item1301 - { - dataType="Object"; - class PositionInfo - { - position[]={14822.185,16.747993,14811.579}; - angles[]={0,0.08693485,0}; - }; - side="West"; - flags=6; - class Attributes - { - init="call{this setAutonomous false;}"; - reportRemoteTargets=1; - receiveRemoteTargets=1; - reportOwnPosition=1; - aiRadarUsage=1; - }; - id=5411; - type="B_SAM_System_01_F"; - atlOffset=0.11215496; - }; - class Item1302 - { - dataType="Group"; - side="West"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={15098.26,18.259398,16735.816}; - angles[]={0.050614551,5.6595964,6.2338972}; - }; - side="West"; - flags=6; - class Attributes - { - }; - id=5418; - type="B_UAV_AI"; - atlOffset=-0.038999557; - }; - }; - class Attributes - { - }; - class CrewLinks - { - class LinkIDProvider - { - nextID=1; - }; - class Links - { - items=1; - class Item0 - { - linkID=0; - item0=5418; - item1=5417; - class CustomData - { - role=2; - turretPath[]={0}; - }; - }; - }; - }; - id=5416; - atlOffset=-0.089197159; - }; - class Item1303 - { - dataType="Object"; - class PositionInfo - { - position[]={15098.401,21.129705,16735.91}; - angles[]={0.050614551,5.6595964,6.2338972}; - }; - side="West"; - flags=6; - class Attributes - { - init="call{this setAutonomous true;}"; - reportRemoteTargets=1; - receiveRemoteTargets=1; - reportOwnPosition=1; - aiRadarUsage=1; - }; - id=5417; - type="B_Radar_System_01_F"; - atlOffset=-0.089197159; - }; - class Item1304 - { - dataType="Group"; - side="West"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={15011.179,17.582794,16656.053}; - angles[]={6.2765183,3.919992,0.0093200579}; - }; - side="West"; - flags=6; - class Attributes - { - }; - id=5421; - type="B_UAV_AI"; - atlOffset=-0.0030002594; - }; - }; - class Attributes - { - }; - class CrewLinks - { - class LinkIDProvider - { - nextID=1; - }; - class Links - { - items=1; - class Item0 - { - linkID=0; - item0=5421; - item1=5420; - class CustomData - { - role=2; - turretPath[]={0}; - }; - }; - }; - }; - id=5419; - atlOffset=-0.052995682; - }; - class Item1305 - { - dataType="Object"; - class PositionInfo - { - position[]={15011.143,21.405148,16655.977}; - angles[]={6.2765183,3.919992,0.0093200579}; - }; - side="West"; - flags=6; - class Attributes - { - init="call{this setAutonomous false;}"; - reportRemoteTargets=1; - receiveRemoteTargets=1; - reportOwnPosition=1; - aiRadarUsage=1; - }; - id=5420; - type="B_SAM_System_03_F"; - atlOffset=-0.052995682; - }; - class Item1306 - { - dataType="Group"; - side="West"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={15055.127,11.278764,14816.719}; - angles[]={0,3.3241014,0}; - }; - side="West"; - flags=6; - class Attributes - { - }; - id=5424; - type="B_UAV_AI"; - }; - }; - class Attributes - { - }; - class CrewLinks - { - class LinkIDProvider - { - nextID=1; - }; - class Links - { - items=1; - class Item0 - { - linkID=0; - item0=5424; - item1=5423; - class CustomData - { - role=2; - turretPath[]={0}; - }; - }; - }; - }; - id=5422; - atlOffset=72.662811; - }; - class Item1307 - { - dataType="Object"; - class PositionInfo - { - position[]={15054.927,13.774036,14816.596}; - angles[]={0,3.3241014,0}; - }; - side="West"; - flags=2; - class Attributes - { - init="call{this setAutonomous false;}"; - reportRemoteTargets=1; - receiveRemoteTargets=1; - reportOwnPosition=1; - aiRadarUsage=1; - }; - id=5423; - type="B_AAA_System_01_F"; - atlOffset=72.662811; - }; - class Item1308 - { - dataType="Group"; - side="West"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={15079.317,19.990227,14822.496}; - angles[]={0,2.5891161,0}; - }; - side="West"; - flags=6; - class Attributes - { - }; - id=5427; - type="B_UAV_AI"; - }; - }; - class Attributes - { - }; - class CrewLinks - { - class LinkIDProvider - { - nextID=1; - }; - class Links - { - items=1; - class Item0 - { - linkID=0; - item0=5427; - item1=5426; - class CustomData - { - role=2; - turretPath[]={0}; - }; - }; - }; - }; - id=5425; - atlOffset=79.347641; - }; - class Item1309 - { - dataType="Object"; - class PositionInfo - { - position[]={15079.101,21.947388,14822.426}; - angles[]={0,2.5891161,0}; - }; - side="West"; - flags=2; - class Attributes - { - init="call{this setAutonomous false;}"; - reportRemoteTargets=1; - receiveRemoteTargets=1; - reportOwnPosition=1; - aiRadarUsage=1; - }; - id=5426; - type="B_SAM_System_02_F"; - atlOffset=79.347641; - }; - class Item1310 - { - dataType="Group"; - side="West"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={15028.418,18.113277,15014.843}; - angles[]={0,4.9156079,0}; - }; - side="West"; - flags=2; - class Attributes - { - }; - id=5430; - type="B_UAV_AI"; - atlOffset=69.24408; - }; - }; - class Attributes - { - }; - class CrewLinks - { - class LinkIDProvider - { - nextID=1; - }; - class Links - { - items=1; - class Item0 - { - linkID=0; - item0=5430; - item1=5429; - class CustomData - { - role=2; - turretPath[]={0}; - }; - }; - }; - }; - id=5428; - atlOffset=69.24408; - }; - class Item1311 - { - dataType="Object"; - class PositionInfo - { - position[]={15028.554,20.603668,15014.567}; - angles[]={0,4.9156079,0}; - }; - side="West"; - flags=2; - class Attributes - { - init="call{this setAutonomous false;}"; - reportRemoteTargets=1; - receiveRemoteTargets=1; - reportOwnPosition=1; - aiRadarUsage=1; - }; - id=5429; - type="B_AAA_System_01_F"; - atlOffset=69.24408; - }; - class Item1312 - { - dataType="Group"; - side="West"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={15073.354,16.736938,15123.004}; - angles[]={0,4.8961835,0}; - }; - side="West"; - flags=2; - class Attributes - { - }; - id=5433; - type="B_UAV_AI"; - atlOffset=71.195724; - }; - }; - class Attributes - { - }; - class CrewLinks - { - class LinkIDProvider - { - nextID=1; - }; - class Links - { - items=1; - class Item0 - { - linkID=0; - item0=5433; - item1=5432; - class CustomData - { - role=2; - turretPath[]={0}; - }; - }; - }; - }; - id=5431; - atlOffset=0.003030777; - }; - class Item1313 - { - dataType="Object"; - class PositionInfo - { - position[]={15073.288,18.490486,15122.924}; - angles[]={0,4.8961835,0}; - }; - side="West"; - flags=6; - class Attributes - { - init="call{this setAutonomous false;}"; - reportRemoteTargets=1; - receiveRemoteTargets=1; - reportOwnPosition=1; - aiRadarUsage=1; - }; - id=5432; - type="B_SAM_System_01_F"; - atlOffset=0.003030777; - }; - class Item1314 - { - dataType="Group"; - side="West"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={15125.227,17.642605,15102.83}; - angles[]={0,1.788357,0}; - }; - side="West"; - flags=6; - class Attributes - { - }; - id=5436; - type="B_UAV_AI"; - }; - }; - class Attributes - { - }; - class CrewLinks - { - class LinkIDProvider - { - nextID=1; - }; - class Links - { - items=1; - class Item0 - { - linkID=0; - item0=5436; - item1=5435; - class CustomData - { - role=2; - turretPath[]={0}; - }; - }; - }; - }; - id=5434; - atlOffset=0.018615723; - }; - class Item1315 - { - dataType="Object"; - class PositionInfo - { - position[]={15125.227,20.146923,15102.78}; - angles[]={0,1.788357,0}; - }; - side="West"; - flags=6; - class Attributes - { - init="call{this setAutonomous false;}"; - reportRemoteTargets=1; - receiveRemoteTargets=1; - reportOwnPosition=1; - aiRadarUsage=1; - }; - id=5435; - type="B_AAA_System_01_F"; - atlOffset=0.018615723; - }; - class Item1316 - { - dataType="Group"; - side="West"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={15123.737,19.401348,15098.408}; - angles[]={0,1.7471794,0}; - }; - side="West"; - flags=6; - class Attributes - { - }; - id=5439; - type="B_UAV_AI"; - }; - }; - class Attributes - { - }; - class CrewLinks - { - class LinkIDProvider - { - nextID=1; - }; - class Links - { - items=1; - class Item0 - { - linkID=0; - item0=5439; - item1=5438; - class CustomData - { - role=2; - turretPath[]={0}; - }; - }; - }; - }; - id=5437; - atlOffset=0.004611969; - }; - class Item1317 - { - dataType="Object"; - class PositionInfo - { - position[]={15123.737,21.156384,15098.358}; - angles[]={0,1.7471794,0}; - }; - side="West"; - flags=6; - class Attributes - { - init="call{this setAutonomous false;}"; - reportRemoteTargets=1; - receiveRemoteTargets=1; - reportOwnPosition=1; - aiRadarUsage=1; - }; - id=5438; - type="B_SAM_System_01_F"; - atlOffset=0.004611969; - }; - class Item1318 - { - dataType="Group"; - side="West"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={15011.547,19.726254,14839.855}; - angles[]={0.00034526698,4.0580387,6.2825875}; - }; - side="West"; - flags=6; - class Attributes - { - }; - id=5442; - type="B_UAV_AI"; - }; - }; - class Attributes - { - }; - class CrewLinks - { - class LinkIDProvider - { - nextID=1; - }; - class Links - { - items=1; - class Item0 - { - linkID=0; - item0=5442; - item1=5441; - class CustomData - { - role=2; - turretPath[]={0}; - }; - }; - }; - }; - id=5440; - atlOffset=0.036287308; - }; - class Item1319 - { - dataType="Object"; - class PositionInfo - { - position[]={15011.548,21.695482,14839.807}; - angles[]={0.00034526698,4.0580387,6.2825875}; - }; - side="West"; - flags=6; - class Attributes - { - init="call{this setAutonomous false;}"; - reportRemoteTargets=1; - receiveRemoteTargets=1; - reportOwnPosition=1; - aiRadarUsage=1; - }; - id=5441; - type="B_SAM_System_02_F"; - atlOffset=0.036287308; - }; - class Item1320 - { - dataType="Group"; - side="West"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={12809.745,87.674225,16658.211}; - angles[]={6.2805333,4.4755816,6.2791886}; - }; - side="West"; - flags=6; - class Attributes - { - }; - id=5444; - type="B_UAV_AI"; - atlOffset=7.6293945e-006; - }; - }; - class Attributes - { - }; - class CrewLinks - { - class LinkIDProvider - { - nextID=1; - }; - class Links - { - items=1; - class Item0 - { - linkID=0; - item0=5444; - item1=5445; - class CustomData - { - role=2; - turretPath[]={0}; - }; - }; - }; - }; - id=5443; - atlOffset=-0.056610107; - }; - class Item1321 - { - dataType="Object"; - class PositionInfo - { - position[]={12809.891,90.544144,16658.012}; - angles[]={6.2805333,4.4755816,6.2791886}; - }; - side="West"; - flags=6; - class Attributes - { - init="call{this setAutonomous true;}"; - reportRemoteTargets=1; - receiveRemoteTargets=1; - reportOwnPosition=1; - aiRadarUsage=1; - }; - id=5445; - type="B_Radar_System_01_F"; - atlOffset=-0.056610107; - }; - class Item1322 - { - dataType="Group"; - side="West"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={15398.824,77.653671,19227.01}; - angles[]={0.034652505,4.9166145,6.272521}; - }; - side="West"; - flags=6; - class Attributes - { - }; - id=5447; - type="B_UAV_AI"; - atlOffset=-0.039001465; - }; - }; - class Attributes - { - }; - class CrewLinks - { - class LinkIDProvider - { - nextID=1; - }; - class Links - { - items=1; - class Item0 - { - linkID=0; - item0=5447; - item1=5448; - class CustomData - { - role=2; - turretPath[]={0}; - }; - }; - }; - }; - id=5446; - atlOffset=-0.089050293; - }; - class Item1323 - { - dataType="Object"; - class PositionInfo - { - position[]={15398.854,80.529259,19227.059}; - angles[]={0.034652505,4.9166145,6.272521}; - }; - side="West"; - flags=6; - class Attributes - { - init="call{this setAutonomous true;}"; - reportRemoteTargets=1; - receiveRemoteTargets=1; - reportOwnPosition=1; - aiRadarUsage=1; - }; - id=5448; - type="B_Radar_System_01_F"; - atlOffset=-0.089050293; - }; - class Item1324 - { - dataType="Group"; - side="West"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={18068.113,79.655937,16645.221}; - angles[]={0.019996032,0.51890677,6.247201}; - }; - side="West"; - flags=6; - class Attributes - { - }; - id=5450; - type="B_UAV_AI"; - }; - }; - class Attributes - { - }; - class CrewLinks - { - class LinkIDProvider - { - nextID=1; - }; - class Links - { - items=1; - class Item0 - { - linkID=0; - item0=5450; - item1=5451; - class CustomData - { - role=2; - turretPath[]={0}; - }; - }; - }; - }; - id=5449; - atlOffset=-0.070465088; - }; - class Item1325 - { - dataType="Object"; - class PositionInfo - { - position[]={18068.07,82.522026,16644.918}; - angles[]={0.019996032,0.51890677,6.247201}; - }; - side="West"; - flags=6; - class Attributes - { - init="call{this setAutonomous true;}"; - reportRemoteTargets=1; - receiveRemoteTargets=1; - reportOwnPosition=1; - aiRadarUsage=1; - }; - id=5451; - type="B_Radar_System_01_F"; - atlOffset=-0.070465088; - }; - class Item1326 - { - dataType="Object"; - class PositionInfo - { - position[]={14346.779,19.806551,16273.42}; - angles[]={0.021328852,0.1904508,6.2791886}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5453; - type="Land_HelipadCircle_F"; - }; - class Item1327 - { - dataType="Object"; - class PositionInfo - { - position[]={14323.967,19.334982,16275.196}; - angles[]={6.256525,0.028631145,0.029324362}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5454; - type="Land_HelipadCircle_F"; - }; - class Item1328 - { - dataType="Object"; - class PositionInfo - { - position[]={14300.01,19.450958,16273.226}; - angles[]={0.021331646,6.1145544,6.2618537}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5455; - type="Land_HelipadCircle_F"; - }; - class Item1329 - { - dataType="Object"; - class PositionInfo - { - position[]={14338.341,19.864174,16286.678}; - angles[]={0.031988446,0.071523204,6.2818484}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5457; - type="Land_CncBarrier_stripes_F"; - }; - class Item1330 - { - dataType="Object"; - class PositionInfo - { - position[]={14335.388,19.86038,16286.892}; - angles[]={0.027993103,0.071523204,0.0026744273}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5458; - type="Land_CncBarrier_stripes_F"; - }; - class Item1331 - { - dataType="Object"; - class PositionInfo - { - position[]={14336.737,19.919556,16284.907}; - angles[]={0.027993103,4.7866945,0.0026744273}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5459; - type="Land_CncBarrier_stripes_F"; - }; - class Item1332 - { - dataType="Object"; - class PositionInfo - { - position[]={14333.569,20.123642,16261.626}; - angles[]={0.029326396,3.1947703,0.042640556}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5460; - type="Land_CncBarrier_stripes_F"; - }; - class Item1333 - { - dataType="Object"; - class PositionInfo - { - position[]={14336.525,20.254395,16261.467}; - angles[]={0.029326396,3.1947703,0.042640556}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5461; - type="Land_CncBarrier_stripes_F"; - }; - class Item1334 - { - dataType="Object"; - class PositionInfo - { - position[]={14335.14,20.137836,16263.426}; - angles[]={0.029326396,1.6267563,0.042640556}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5462; - type="Land_CncBarrier_stripes_F"; - }; - class Item1335 - { - dataType="Object"; - class PositionInfo - { - position[]={14311.719,19.895761,16261.711}; - angles[]={0.017332481,3.0640078,6.2365522}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5463; - type="Land_CncBarrier_stripes_F"; - }; - class Item1336 - { - dataType="Object"; - class PositionInfo - { - position[]={14314.671,19.75404,16261.938}; - angles[]={0.017332481,3.0640078,6.2365522}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5464; - type="Land_CncBarrier_stripes_F"; - }; - class Item1337 - { - dataType="Object"; - class PositionInfo - { - position[]={14313.041,19.799599,16263.7}; - angles[]={0.017332481,1.4959934,6.2365522}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5465; - type="Land_CncBarrier_stripes_F"; - }; - class Item1338 - { - dataType="Object"; - class PositionInfo - { - position[]={14312.876,19.727148,16286.219}; - angles[]={6.2711902,6.2190475,0.0093286335}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5466; - type="Land_CncBarrier_stripes_F"; - }; - class Item1339 - { - dataType="Object"; - class PositionInfo - { - position[]={14309.921,19.698374,16286.031}; - angles[]={6.2711854,6.2190475,6.2791886}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5467; - type="Land_CncBarrier_stripes_F"; - }; - class Item1340 - { - dataType="Object"; - class PositionInfo - { - position[]={14311.526,19.690912,16284.248}; - angles[]={6.2711902,4.6510334,0.0093286335}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5468; - type="Land_CncBarrier_stripes_F"; - }; - class Item1341 - { - dataType="Object"; - class PositionInfo - { - position[]={14285.953,19.780279,16280.682}; - angles[]={0.014664836,5.9468708,0.0013372133}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5469; - type="Land_CncBarrier_stripes_F"; - }; - class Item1342 - { - dataType="Object"; - class PositionInfo - { - position[]={14285.184,19.81242,16278.42}; - angles[]={0.014664836,4.3788567,0.0013372133}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5471; - type="Land_CncBarrier_stripes_F"; - }; - class Item1343 - { - dataType="Object"; - class PositionInfo - { - position[]={14292.875,20.193142,16258.509}; - angles[]={0.0039967569,2.8521633,0.0039967569}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5473; - type="Land_CncBarrier_stripes_F"; - atlOffset=1.9073486e-006; - }; - class Item1344 - { - dataType="Object"; - class PositionInfo - { - position[]={14290.911,20.179762,16259.889}; - angles[]={0.0039967569,1.2841491,0.0039967569}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5474; - type="Land_CncBarrier_stripes_F"; - }; - class Item1345 - { - dataType="Object"; - class PositionInfo - { - position[]={14360.833,19.958515,16283.176}; - angles[]={0.025327841,0.31975079,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5476; - type="Land_CncBarrier_stripes_F"; - atlOffset=3.8146973e-006; - }; - class Item1346 - { - dataType="Object"; - class PositionInfo - { - position[]={14361.653,20.003033,16280.921}; - angles[]={0.017329043,5.0349221,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5477; - type="Land_CncBarrier_stripes_F"; - }; - class Item1347 - { - dataType="Object"; - class PositionInfo - { - position[]={14354.679,20.446321,16258.68}; - angles[]={0.014664836,3.3021889,6.2791886}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5478; - type="Land_CncBarrier_stripes_F"; - atlOffset=1.9073486e-006; - }; - class Item1348 - { - dataType="Object"; - class PositionInfo - { - position[]={14356.434,20.405134,16260.301}; - angles[]={0.017332481,1.7341747,6.272521}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5480; - type="Land_CncBarrier_stripes_F"; - }; - class Item1349 - { - dataType="Object"; - class PositionInfo - { - position[]={14358.538,20.213882,16270.274}; - angles[]={0.022662206,5.0054817,6.2778587}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5481; - type="Land_CncBarrier_stripes_F"; - }; - class Item1350 - { - dataType="Object"; - class PositionInfo - { - position[]={14335.604,20.017153,16274.295}; - angles[]={0.018663859,1.7341747,0.041309625}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5482; - type="Land_CncBarrier_stripes_F"; - }; - class Item1351 - { - dataType="Object"; - class PositionInfo - { - position[]={14312.144,19.704519,16273.903}; - angles[]={0.013332055,4.7035971,6.2525272}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5483; - type="Land_CncBarrier_stripes_F"; - }; - class Item1352 - { - dataType="Object"; - class PositionInfo - { - position[]={14287.919,19.968487,16269.915}; - angles[]={0.019996032,4.4588985,0.0026744273}; - }; - side="Empty"; - flags=4; - class Attributes - { - }; - id=5484; - type="Land_CncBarrier_stripes_F"; - }; - class Item1353 - { - dataType="Trigger"; - position[]={15016.553,26.663002,14892.14}; - angle=1.7525895; - class Attributes - { - name="carrierSpawnerTrigger1"; - sizeA=5; - sizeB=5; - sizeC=3; - activationBy="ANY"; - isRectangle=1; - }; - id=5499; - type="EmptyDetectorAreaR50"; - atlOffset=3.1345558; - }; - class Item1354 - { - dataType="Trigger"; - position[]={15094.166,26.747227,14926.67}; - angle=1.7525895; - class Attributes - { - name="carrierSpawnerTrigger2"; - sizeA=5; - sizeB=5; - sizeC=3; - activationBy="ANY"; - isRectangle=1; - }; - id=5504; - type="EmptyDetectorAreaR50"; - atlOffset=3.2187805; - }; - class Item1355 - { - dataType="Trigger"; - position[]={15110.53,26.724743,15009.966}; - angle=-1.4178222; - class Attributes - { - name="carrierSpawnerTrigger3"; - sizeA=5; - sizeB=5; - sizeC=3; - activationBy="ANY"; - isRectangle=1; - }; - id=5505; - type="EmptyDetectorAreaR50"; - atlOffset=3.1861534; - }; - }; - class Connections - { - class LinkIDProvider - { - nextID=39; - }; - class Links - { - items=39; - class Item0 - { - linkID=0; - item0=4834; - item1=4829; - class CustomData - { - type="Sync"; - }; - }; - class Item1 - { - linkID=1; - item0=4835; - item1=4833; - class CustomData - { - type="Sync"; - }; - }; - class Item2 - { - linkID=2; - item0=4836; - item1=4912; - class CustomData - { - type="Sync"; - }; - }; - class Item3 - { - linkID=3; - item0=171; - item1=4936; - class CustomData - { - type="Sync"; - }; - }; - class Item4 - { - linkID=4; - item0=173; - item1=4936; - class CustomData - { - type="Sync"; - }; - }; - class Item5 - { - linkID=5; - item0=175; - item1=4936; - class CustomData - { - type="Sync"; - }; - }; - class Item6 - { - linkID=6; - item0=177; - item1=4936; - class CustomData - { - type="Sync"; - }; - }; - class Item7 - { - linkID=7; - item0=179; - item1=4936; - class CustomData - { - type="Sync"; - }; - }; - class Item8 - { - linkID=8; - item0=181; - item1=4936; - class CustomData - { - type="Sync"; - }; - }; - class Item9 - { - linkID=9; - item0=183; - item1=4936; - class CustomData - { - type="Sync"; - }; - }; - class Item10 - { - linkID=10; - item0=185; - item1=4936; - class CustomData - { - type="Sync"; - }; - }; - class Item11 - { - linkID=11; - item0=187; - item1=4936; - class CustomData - { - type="Sync"; - }; - }; - class Item12 - { - linkID=12; - item0=189; - item1=4936; - class CustomData - { - type="Sync"; - }; - }; - class Item13 - { - linkID=13; - item0=191; - item1=4936; - class CustomData - { - type="Sync"; - }; - }; - class Item14 - { - linkID=14; - item0=193; - item1=4936; - class CustomData - { - type="Sync"; - }; - }; - class Item15 - { - linkID=15; - item0=195; - item1=4936; - class CustomData - { - type="Sync"; - }; - }; - class Item16 - { - linkID=16; - item0=197; - item1=4936; - class CustomData - { - type="Sync"; - }; - }; - class Item17 - { - linkID=17; - item0=199; - item1=4936; - class CustomData - { - type="Sync"; - }; - }; - class Item18 - { - linkID=18; - item0=473; - item1=4936; - class CustomData - { - type="Sync"; - }; - }; - class Item19 - { - linkID=19; - item0=475; - item1=4936; - class CustomData - { - type="Sync"; - }; - }; - class Item20 - { - linkID=20; - item0=477; - item1=4936; - class CustomData - { - type="Sync"; - }; - }; - class Item21 - { - linkID=21; - item0=479; - item1=4936; - class CustomData - { - type="Sync"; - }; - }; - class Item22 - { - linkID=22; - item0=481; - item1=4936; - class CustomData - { - type="Sync"; - }; - }; - class Item23 - { - linkID=23; - item0=483; - item1=4936; - class CustomData - { - type="Sync"; - }; - }; - class Item24 - { - linkID=24; - item0=485; - item1=4936; - class CustomData - { - type="Sync"; - }; - }; - class Item25 - { - linkID=25; - item0=487; - item1=4936; - class CustomData - { - type="Sync"; - }; - }; - class Item26 - { - linkID=26; - item0=489; - item1=4936; - class CustomData - { - type="Sync"; - }; - }; - class Item27 - { - linkID=27; - item0=491; - item1=4936; - class CustomData - { - type="Sync"; - }; - }; - class Item28 - { - linkID=28; - item0=493; - item1=4936; - class CustomData - { - type="Sync"; - }; - }; - class Item29 - { - linkID=29; - item0=495; - item1=4936; - class CustomData - { - type="Sync"; - }; - }; - class Item30 - { - linkID=30; - item0=497; - item1=4936; - class CustomData - { - type="Sync"; - }; - }; - class Item31 - { - linkID=31; - item0=499; - item1=4936; - class CustomData - { - type="Sync"; - }; - }; - class Item32 - { - linkID=32; - item0=501; - item1=4936; - class CustomData - { - type="Sync"; - }; - }; - class Item33 - { - linkID=33; - item0=503; - item1=4936; - class CustomData - { - type="Sync"; - }; - }; - class Item34 - { - linkID=34; - item0=505; - item1=4936; - class CustomData - { - type="Sync"; - }; - }; - class Item35 - { - linkID=35; - item0=507; - item1=4936; - class CustomData - { - type="Sync"; - }; - }; - class Item36 - { - linkID=36; - item0=4829; - item1=4936; - class CustomData - { - type="Sync"; - }; - }; - class Item37 - { - linkID=37; - item0=4833; - item1=4936; - class CustomData - { - type="Sync"; - }; - }; - class Item38 - { - linkID=38; - item0=4912; - item1=4936; - class CustomData - { - type="Sync"; - }; - }; - }; - }; -}; diff --git a/tests/test-data/rap_in/roadslib_lzss.cfg b/tests/test-data/rap_in/roadslib_lzss.cfg deleted file mode 100644 index 31ec36b..0000000 Binary files a/tests/test-data/rap_in/roadslib_lzss.cfg and /dev/null differ diff --git a/tests/test-data/rap_in/roadslib_weird.cfg b/tests/test-data/rap_in/roadslib_weird.cfg deleted file mode 100644 index 2957f89..0000000 --- a/tests/test-data/rap_in/roadslib_weird.cfg +++ /dev/null @@ -1,104 +0,0 @@ -class RoadTypesLibrary -{ - class Road0001 - { - width = 10; - mainStrTex = "a3\structures_f_exp\data\roads\surf_exp_roadtarmac_road_ca.paa"; // lowercase! - mainTerTex = "a3\structures_f_exp\data\roads\surf_exp_roadtarmac_road_end_ca.paa"; - mainMat = "a3\structures_f_exp\data\roads\surf_exp_roadtarmac_road.rvmat"; - map = "road"; - AIpathOffset = 1.5; - color[] = {1.0,0.0,1.0,1.0}; //"FF00FF"; alpha channel ignored // road color in costmap TGA - }; - class Road0002 - { - width = 10; - mainStrTex = "a3\structures_f_exp\data\roads\surf_exp_roaddirt_road_ca.paa"; // lowercase! - mainTerTex = "a3\structures_f_exp\data\roads\surf_exp_roaddirt_road_end_ca.paa"; - mainMat = "a3\structures_f_exp\data\roads\surf_exp_roaddirt_road.rvmat"; - map = "track"; - AIpathOffset = 2.5; - color[] = {1.0,0.5,0.0,1.0}; //"FF8000"; - }; - class Road0003 - { - width = 7; - mainStrTex = "a3\structures_f_exp\data\roads\surf_exp_roaddirt_path_ca.paa"; // lowercase! - mainTerTex = "a3\structures_f_exp\data\roads\surf_exp_roaddirt_path_end_ca.paa"; - mainMat = "a3\structures_f_exp\data\roads\surf_exp_roaddirt_path.rvmat"; - map = "track"; - AIpathOffset = 2.5; - color[] = {1.0,1.0,0.0,1.0}; //"FFFF00"; - }; - class Road0004 - { - width = 16; - mainStrTex = "a3\structures_f_exp\data\roads\surf_exp_roadtarmac_city_ca.paa"; // lowercase! - mainTerTex = "a3\structures_f_exp\data\roads\surf_exp_roadtarmac_city_end_ca.paa"; - mainMat = "a3\structures_f_exp\data\roads\surf_exp_roadtarmac_city.rvmat"; - map = "main road"; - AIpathOffset = 1; - color[] = {0.0,0.5,1.0,1.0}; //"0080FF"; - }; - class Road0005 - { - width = 16; - mainStrTex = "a3\structures_f_exp\data\roads\surf_exp_roadtarmac_cityparking_ca.paa"; // lowercase! - mainTerTex = "a3\structures_f_exp\data\roads\surf_exp_roadtarmac_cityparking_end_ca.paa"; - mainMat = "a3\structures_f_exp\data\roads\surf_exp_roadtarmac_cityparking.rvmat"; - map = "main road"; - AIpathOffset = 2.5; - color[] = {0.0,0.5,1.0,1.0}; //"0080FF"; - }; - class Road0006 - { - width = 10; - mainStrTex = "a3\structures_f_exp\data\roads\surf_exp_roadtarmac_main_road_ca.paa"; // lowercase! - mainTerTex = "a3\structures_f_exp\data\roads\surf_exp_roadtarmac_main_road_end_ca.paa"; - mainMat = "a3\structures_f_exp\data\roads\surf_exp_roadtarmac_main_road.rvmat"; - map = "road"; - AIpathOffset = 1.5; - color[] = {0.0,1.0,1.0,1.0}; //"FF00FF"; - }; - class Road0007 - { - width = 10; - mainStrTex = "a3\structures_f_exp\data\roads\surf_exp_roadtarmac_harbour_ca.paa"; // lowercase! - mainTerTex = "a3\structures_f_exp\data\roads\surf_exp_roadtarmac_harbour_end_ca.paa"; - mainMat = "a3\structures_f_exp\data\roads\surf_exp_roadtarmac_harbour.rvmat"; - map = "road"; - AIpathOffset = 1.5; - color[] = {1.0,1.0,1.0,1.0}; //"FF00FF"; - }; - class Road0008 - { - width = 10; - mainStrTex = "a3\structures_f_exp\data\roads\surf_exp_roaddirt_mine_ca.paa"; // lowercase! - mainTerTex = "a3\structures_f_exp\data\roads\surf_exp_roaddirt_mine_end_ca.paa"; - mainMat = "a3\structures_f_exp\data\roads\surf_exp_roaddirt_mine.rvmat"; - map = "track"; - AIpathOffset = 3.5; - color[] = {1.0,0.0,0.0,1.0}; //"FF0000"; - }; - class Road0009 - { - width = 1.6; - mainStrTex = "a3\structures_f_exp\data\roads\surf_exp_traildirt_trail_ca.paa"; // lowercase! - mainTerTex = "a3\structures_f_exp\data\roads\surf_exp_traildirt_trail_end_ca.paa"; - mainMat = "a3\structures_f_exp\data\roads\surf_exp_traildirt_trail.rvmat"; - map = "trail"; // new map style; for disabling entirely use "hide" - AIpathOffset = 0; - color[] = {1.0,1.0,1.0,1.0}; - pedestriansOnly = true; - }; - class Road0010 // DO NOT DELETE - main road variant of tarmac road for 2D map - { - width = 10; - mainStrTex = "a3\structures_f_exp\data\roads\surf_exp_roadtarmac_main_road_ca.paa"; // lowercase! - mainTerTex = "a3\structures_f_exp\data\roads\surf_exp_roadtarmac_main_road_end_ca.paa"; - mainMat = "a3\structures_f_exp\data\roads\surf_exp_roadtarmac_main_road.rvmat"; - map = "main road"; - AIpathOffset = 1.5; - color[] = {0.0,1.0,1.0,1.0}; //"FF00FF"; - }; -}; \ No newline at end of file diff --git a/tests/test-data/rap_in/test.rvmat b/tests/test-data/rap_in/test.rvmat deleted file mode 100644 index 0223f12..0000000 --- a/tests/test-data/rap_in/test.rvmat +++ /dev/null @@ -1,113 +0,0 @@ -ambient[]={1,1,1,1}; -diffuse[]={1,1,1,1}; -forcedDiffuse[]={0,0,0,0}; -emmisive[]={0,0,0,0}; -specular[]={0,0,0,0}; -specularPower=0; -class Stage0 -{ - texture="a3\map_stratis\data\layers\s_000_000_lco.paa"; - texGen=3; -}; -class Stage1 -{ - texture="a3\map_stratis\data\layers\m_000_000_lca.paa"; - texGen=4; -}; -class TexGen3 -{ - uvSource="worldPos"; - class uvTransform - { - aside[]={0.00094604492,0,0}; - up[]={0,0,0.00094604492}; - dir[]={0,-0.00094604492,0}; - pos[]={0.015625,7.765625,0}; - }; -}; -class TexGen4 -{ - uvSource="worldPos"; - class uvTransform - { - aside[]={0.00094604492,0,0}; - up[]={0,0,0.00094604492}; - dir[]={0,-0.00094604492,0}; - pos[]={0.015625,7.765625,0}; - }; -}; -class TexGen0 -{ - uvSource="tex"; - class uvTransform - { - aside[]={1,0,0}; - up[]={0,1,0}; - dir[]={0,0,1}; - pos[]={0,0,0}; - }; -}; -class TexGen1 -{ - uvSource="tex"; - class uvTransform - { - aside[]={6,0,0}; - up[]={0,6,0}; - dir[]={0,0,0}; - pos[]={0,0,0}; - }; -}; -class TexGen2 -{ - uvSource="tex"; - class uvTransform - { - aside[]={6,0,0}; - up[]={0,6,0}; - dir[]={0,0,0}; - pos[]={0,0,0}; - }; -}; -PixelShaderID="TerrainSNX"; -VertexShaderID="Terrain"; -class Stage2 -{ - texture="#(rgb,1,1,1)color(0.5,0.5,0.5,1,cdt)"; - texGen=0; -}; -class Stage3 -{ - texture="a3\map_data\gdt_strbeach_nopx.paa"; - texGen=1; -}; -class Stage4 -{ - texture="a3\map_data\gdt_strbeach_co.paa"; - texGen=2; -}; -class Stage5 -{ - texture="a3\map_data\gdt_strseabed_nopx.paa"; - texGen=1; -}; -class Stage6 -{ - texture="a3\map_data\gdt_strseabed_co.paa"; - texGen=2; -}; -class Stage7 -{ - texture="a3\map_data\gdt_strdeepsea_nopx.paa"; - texGen=1; -}; -class Stage8 -{ - texture="a3\map_data\gdt_strdeepsea_co.paa"; - texGen=2; -}; -class Stage14 -{ - texture="a3\map_stratis\data\layers\n_000_000_no.paa"; - texGen=3; -}; diff --git a/tests/test-data/util_in/roads_lzss.shp b/tests/test-data/util_in/roads_lzss.shp deleted file mode 100644 index 23bea5c..0000000 Binary files a/tests/test-data/util_in/roads_lzss.shp and /dev/null differ