Bone error in skeleton properties build dictionary for rust

Library for dynamically generating skeleton loader drawables for Layouts and Views - GitHub - EudyContreras/Skeleton-Bones: Library for dynamically generating skeleton loader drawables for Layouts ...

Banner Demo

Issues
platform
API
License: ISC
Release
contributions welcome
Dev-Nation

News!

  • New Demo-3 branch contains a non-data-binding example
  • Improvements to general API

Bones

Library for dynamically generating and animating skeleton drawables. This library can generate a drawable skeleton loader for any View or ViewGroup. Simply define the desired properties and the skeleton drawable will be generated for the ViewGroup and its children. It is that simple! Below you’ll find information on how to use this library. Medium Article

Banner Demo

Table of Content

  • Features
  • Glossary
  • Getting Started
  • Functional Demos
  • How can I use in my project?
    • Step 1
    • Step 2
    • Example Usage 1
    • Example Usage 2
  • ViewGroup Skeleton Attributes
    • Skeleton
    • Bones
    • Shimmer Rays
  • View Bone Attributes
    • Bones
    • Bone Shimmer Rays
  • Using a Property Holder
    • Property Bones
    • Property Shimmer Rays
  • Resources
  • How does it work?
  • Caveats, limitations and notes?
  • Future plans
  • Contribute
  • Contact
  • Disclaimers
  • License

Header Banner

Resources

For a more thorough guides and descriptions please look at the following links:

Skeleton Contains information about skeletons and their properties

Skeleton Bones Contains information about bones and their properties

Shimmer Rays Contains information about shimmer rays and their properties

Shimmer Rays Contains information about shimmer rays and their properties

Examples Contains examples and technical and technical guides

Header Banner

Glossary

Skeleton: A drawable loader representation of a ViewGroup. The skeleton is the wrapper around the generated bones where each bone represents a view within the ViewGroup. The skeleton is in charge of managing and rendering each of the bones generated for each non-ignored view within the owner layout. Skeleton drawables are recommended over single Bone Drawables when possible since the a single drawable is used for representing a complex layout. The skeleton drawable is created and overlaid over the layout in order to render the bones and the visible shimmers. See Shimmer Rays, See Skeleton

Skeleton Bone: A bone drawable loader representation of a View. Bones are typically contained within a skeleton, but bones can also be on their own. When a bone is contained within a parent that is a SkeletonDrawable, the parent drawable is in charge of the rendering of said bone. Every detail of the bone can be customized in order to provide the best look. When a bone is not contained within a Skeleton, the bone is then an independent bone and has similar but limited functionality. The bone can have its own state and can display an overlay shimmer. Below you’ll find a list of properties that can be customized. Independent bones can share properties through a BonePropertyHolder, See Skeleton Bones

Shimmer Ray: The effect that overlays a skeleton or bone in order to communicate to the user that the View or ViewGroup is currently loading. Shimmer rays can be applied to both Skeletons and individual bones. Most aspects of the shimmer rays can be customized. See Shimmer Rays

Banner Demo

Features

  • Lightweight and easy to use
  • Non-invasive, No changes to existing code required.
  • No layout nor view wrapping which creates complex hierarchies
  • No mock layouts needed
  • Pixel perfect skeleton bone placing
  • Disposed when no longer needed
  • No boilerplate
  • Uses data binding
  • Highly performant
  • Extremely customizable
  • Code-free use

Header Banner

Getting started

Bones is highly customizable and provides you the freedom of creating concise skeletons that will fit your apps design seamlessly. Although the recommended way of using bones is to apply it and modify it using data-binding, it is possible to customize Bones by directly accessing its properties through an instance. Bones can be customized by creating an instance of a SkeletonDrawable or BoneDrawable and directly applying the desired properties to it. The properties can be modified using both builder and property accessors patterns. It can also be use with data-binding.

Examples and demos

Check out the demo branches in this project for demos. New demo-3 added which showcases skeleton drawables without data-binding

How can I use in my project?

Step 1

Add it in your root build.gradle at the end of repositories:

allprojects {
  repositories {
    maven { url 'https://jitpack.io' }
  }
}

Add as a dependency in you applications build.gradle.

dependencies {
  implementation 'com.github.EudyContreras:Skeleton-Bones:${lib_version}'
}

Step 2

Refer to a skeleton from any ViewGroup in order to apply a Skeleton effect to it and its child views

Example Usage 1:

<androidx.constraintlayout.widget.ConstraintLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@drawable/background"
    android:elevation="4dp"
    app:skeletonAnimateRestoredBounds="@{true}"
    app:skeletonAllowSavedState="@{true}"
    app:skeletonBoneColor="@{@color/bone_color}"
    app:skeletonBoneCornerRadius="@{Utils.getDp(10)}"
    app:skeletonBoneMaxThickness="@{Utils.getDp(12)}"
    app:skeletonBoneMinThickness="@{Utils.getDp(10)}"
    app:skeletonDissectLargeBones="@{false}"
    app:skeletonEnabled="@{viewModel.loading}"
    app:skeletonGenerateBones="@{true}"
    app:skeletonShimmerRayColor="@{@color/bone_ray_color}"
    app:skeletonShimmerRayCount="@{4}"
    app:skeletonShimmerRayInterpolator="@{@android:interpolator/accelerate_quad}"
    app:skeletonShimmerRaySharedInterpolator="@{true}"
    app:skeletonShimmerRaySpeedMultiplier="@{1f}"
    app:skeletonShimmerRayThickness="@{Utils.getDp(120)}"
    app:skeletonShimmerRayTilt="@{-0.2f}"
    app:skeletonTransitionDuration="@{200L}"
    app:skeletonUseStateTransition="@{true}"
    tools:background="@color/white">
</androidx.constraintlayout.widget.ConstraintLayout>

Example Usage 2:

You can use the available extension function

val viewGroup: ViewGroup = getSomeContainer()
   
viewGroup.applySkeletonDrawable().apply {  }

Use the builder pattern by calling build on the instance of the drawable

val viewGroup: ViewGroup = getSomeContainer()
   
SkeletonDrawable.create(viewGroup)
  .build()
  .setEnabled(true)
  .setAllowSavedState(true)
  .withShimmerBuilder { 
      setThickness(10.dp)
      setTilt(0.3f)
  }
  .setCornerRadius(10f)

You can use accessor patterns

val viewGroup: ViewGroup = getSomeContainer()

SkeletonDrawable.create(viewGroup).apply { 
    this.getProps().apply {
        this.enabled = true
        this.allowSavedState = true
        this.shimmerRayProperties.apply { 
            this.shimmerRayThickness = 10.dp
            this.shimmerRayTilt = 0.3f
        }
    }
}

The recommended way of applying a skeleton drawable is by using Bone’s data-binding properties/attributes. Here are the lists of the main properties that can be applied in order to achieve a desirable effect.

Header Banner

ViewGroup Skeleton Attributes

These are the properties that can be access through any ViewGroup. Although, some of the following properties will also work when set from a View, the behaviour will be different.

  • Properties that start with skeleton are applied to the actual skeleton ViewGroup which generates the bones.
  • Properties that start with skeletonBone are applied to the children bone (Views) of the skeleton.
  • Properties that start with skeletonShimmerRay are applied to the shimmer ray of the skeleton ViewGroup

Skeleton

Property Description
app:skeletonEnabled Determines whether the skeleton loading drawable should be shown.
app:skeletonBackgroundColor Determines the background color of the drawable.
app:skeletonCornerRadius Sets the corner radius for this skeleton.
app:skeletonLayoutIgnored Determines if the target layout’s children should be ignored
app:skeletonGenerateBones When false bones are not generated. Useful to show shimmer rays only.
app:skeletonAllowSavedState Preserves the internal state of the skeleton representation.
app:skeletonAllowWeakSavedState Weakly preserves the internal state of the skeleton representation.
app:skeletonDissectLargeBones Dissects bones which exceed max set thickness
app:skeletonUseStateTransition Determines the state transition duration for the skeleton drawable.
app:skeletonTransitionDuration Determines the transition duration for changing the drawable state.
app:skeletonAnimateRestoredBounds               Animates bounds restoration for tempered bounds.

Skeleton Bones

Property Description
app:skeletonBoneColor Determines the color of the bones.
app:skeletonBoneMinThickness Sets the min thickness for the bones
app:skeletonBoneMaxThickness Sets the max thickness for the bones
app:skeletonBoneCornerRadius                           Determines the corner radius for rectangular bones.                                       
app:skeletonBoneToggleView When true, bone owner views are hidden while loading.

Skeleton Shimmer Rays

Property Description
app:skeletonShimmerRayColor Determines the color of the shimmer ray.
app:skeletonShimmerRayTilt sets the tilt or skew used for the shimmer rays. Range -1f to 1f
app:skeletonShimmerRayCount Sets the amount of shimmer rays that are rendered on the Skeleton.
app:skeletonShimmerRayThickness Sets the shimmer ray thickness in pixels.
app:skeletonShimmerRayThicknessRatio Sets the shimmer ray thickness in parent skeleton percentage. 1f is full
app:skeletonShimmerRaySpeedMultiplier Sets the relative speed at which the rays should shimmer.
app:skeletonShimmerRayInterpolator Sets the interpolator that should be use for the shimmer rays
app:skeletonShimmerRaySharedInterpolator         When true it shares a set interpolator among the shimmer rays

Each of the above attributes has documentation. Please consult the xml docs by hovering over the attribute in order to get a more detailed description of the attribute. If you rather read more in detail about the properties and about skeletons, please check out this link: Skeleton

Header Banner

View Bone Attributes

The following are bone properties that can be access through any View. Some of these will not work when set from an independent BoneDrawable since they are meant only for virtually dependent bones within a Skeleton ViewGroup. For more information feel free to consult the Bone document. See Skeleton Bones

Bone

Property Description
app:skeletonBoneProps A reference to a BoneProperties object
app:skeletonBoneEnabled Enables/Disables the loading state for the bone
app:skeletonBoneStateOwner Marks the target view as an independent state owner
app:skeletonBoneColor Determines the color of the bone generated for this view
app:skeletonBoneToggleView When true, the bone owner view is hidden while loading.
app:skeletonBoneShadeMultiplier Sets a shade multiplier use for lightening or darkening the bone color
app:skeletonBoneTranslationX Sets a X translation to the generated bone.
app:skeletonBoneTranslationY Sets a Y translation to the generated bone.
app:skeletonBoneMinThickness Sets the min thickness/height the bone should be clamped at
app:skeletonBoneMaxThickness sets the max thickness/height the bone should be clamped at
app:skeletonBoneMatchBounds Flags the bone’s dimensions to be computed with the owner view’s exact bounds.
app:skeletonBoneMinWidth Temporally sets the min width of the bone and the owner view 
app:skeletonBoneMinHeight Temporally sets the min width of the bone and the owner view 
app:skeletonBoneWidth Determines the width of the bone generated for this view
app:skeletonBoneHeight Determines the height of the bone generated for this view
app:skeletonBoneSize Determines the width and height of the bone generated for this view
app:skeletonBoneCornerRadius Determines the corner radius of the bone generated for this view
app:skeletonBoneShapeType Sets the shape type for the generated bone(Rectangular, Circular)
app:skeletonBoneIgnored Determines if the view should be ignored during bone generation.
app:skeletonBoneAllowSavedState Preserves the internal state of the bone representation.
app:skeletonBoneAllowWeakSavedState Weakly preserves the internal state of the skeleton representation.
app:skeletonBoneDissectLargeBones When true, bones which exceed the max thickness/height are dissected
app:skeletonBoneTransitionDuration Determines the transition duration for changing the drawable state

Bone Shimmer Rays

Property Description
app:skeletonBoneShimmerRayTilt sets the tilt or skew used for the shimmer rays.
app:skeletonBoneShimmerRayCount Sets the amount of shimmer rays that are rendered on the Skeleton.
app:skeletonBoneShimmerRayThickness Sets the shimmer ray thickness in pixels.
app:skeletonBoneShimmerRayThicknessRatio Sets the shimmer ray thickness in parent skeleton percentage.
app:skeletonBoneShimmerRaySpeedMultiplier Sets the relative speed at which the rays should shimmer.
app:skeletonBoneShimmerRayInterpolator Sets the interpolator that should be use for the shimmer rays
app:skeletonBoneShimmerRaySharedInterpolator When true it shares a set interpolator among the shimmer rays

Each of the above attributes has documentation. Please consult the xml docs by hovering over the attribute in order to get a more detailed description of the attribute

Header Banner

Using a Property Holder

BonePropertyHolder This is a fake View that can be added anywhere within the view hierarchy. It has the sole purpose of acting as a property holder that can later be referenced by any View (Bone). The bone created for that view will then clone the properties of the BonePropertyHolder in order to define its own properties. This is usually done when multiple views share a same independent style or behaviour.

The BoneProperty holder can make use of the following properties. For a detailed description of the properties and their effects please refer to the property guide.

Property Bone

Property Description Default
app:bonePropId The id of the property holder. Needed for referencing this holder. null
app:bonePropColor Sets the bone color property. null
app:boneToggleView When true, the bone owner view is hidden while loading true
app:bonePropCornerRadius Sets the corner radius property. null
app:bonePropDissectLargeBones Sets the dissect large bones property. null
app:bonePropTransitionDuration Sets state change animation duration property. null
app:bonePropAllowSavedState Sets the internal state preservation state flag. null
app:bonePropAllowWeakSavedState            Sets the internal state weak preservation state flag. null

Property Shimmer Rays

Property Description Default
app:bonePropShimmerRayColor Sets the shimmer ray color property. White
app:bonePropShimmerRayTilt sets the shimmer ray tilt/skew property -0.3f
app:bonePropShimmerRayCount sets the shimmer ray count property 0
app:bonePropShimmerRayThickness sets the shimmer ray thickness property null
app:bonePropShimmerRayThicknessRatio sets the shimmer ray thickness ratio property 0.45f
app:bonePropShimmerRaySpeedMultiplier sets the shimmer ray animation speed multiplier null
app:bonePropShimmerRayInterpolator sets the interpolator property FOSI
app:bonePropShimmerRaySharedInterpolator           sets the shared interpolator property                                    null

A view can refer to a BonePropertyHolder using its id through the app:skeletonBonePropId attribute. In order to override the properties set in the referenced property holder, the attributes must be prepended with prop_. Example: app:prop_skeletonBoneColor

Header Banner

How does it work?

The library works by creating a drawable based on some View or ViewGroup. The drawable can listen to a state using data-binding. When the state is true the skeleton loader drawable is shown and animated if it has any shimmers added to it. Each skeleton drawable has a skeleton object and a skeleton manager which is in charge for manipulating the skeleton, the bones and the shimmer rays. Same applies to BoneDrawables. The skeleton is visually created based on the ViewGroup/View that the drawable was bound to and then added as an overlay. The skeleton loader drawables are added as temporary foreground drawables. Once the state of the loader changes to false, the skeleton or bone drawable is removed and the original foreground is restored given that one was previously present.

Header Banner

Caveats, Limitations and Notes

BEWARE In order for the skeleton and bone drawables to be properly generated, there must be some pre-determined minimum set dimensions (Width and Height) for the none ignored children. This is needed in order to know how to visually build the bone representations of said children views.

Setting dimensions using the android:minWidth and/or the android:minHeight should suffice. Otherwise if the minWidth and/or minHeight are set using the skeleton binding properties app:skeletonBoneMinWidth and app:skeletonBoneMinHeight, the dimensions will then be applied to the view and restored once the loading state is set to false. (The content has loaded). Additionally restoring the bounds of the view once the content was loaded can be done using layout animations in order to provide a smoother user experience. This is optional and can be done by setting this to true skeletonAnimateRestoredBounds.

When the state of a bone is true (Loading) and if the skeletonBoneToggleView is set to true, the view which the bone represents is hidden. When this is the case, if the owner view of the bone has an elevation, fake shadows are generated under the bone. This is done to preserve the look and feel.

If the owner view of a bone does not have valid drawable bounds, meaning its height is less than bone’s set minimum height skeletonBoneMinThickness or if not set, the default minimum thickness which is 10dp, no bone will be generated for it. This is done to avoid generating bones that are too thin or barely visible.

Header Banner

Future plans

  • Facilitate use with Glide and other popular Image Loaders
  • Allow defining styles for both the Skeleton and Bone drawables
  • Bones should be able to have a set of enter/exit animations
    • Ex: Rectangular bones collapse to the left
    • Ex: Rectangular bones collapse to the center
    • Ex: Circular bones collapse to the center

Contribute

Please read Contributing for details about how to contribute, and the process for submitting pull requests to Bones

Authors

Eudy Contreras

Contact

If you wish to contact me, you can reach me through my LinkedIn or my Email

Disclaimer

The avatar images are not created by me. They are amazing and I wanted to use them. If you are the author please contact me.

License

This project is licensed under the MIT License — see the Licence file for details

Trying to compile for linux from a mac throws this error, I have openssl and pkg-config installed from brew.

And in the file ~/.cargo/config I have this configuration.

[target.x86_64-unknown-linux-musl]
linker = "x86_64-linux-musl-gcc"

Error:

error: failed to run custom build command for `openssl-sys v0.9.72`

Caused by:
  process didn't exit successfully: `/Users/Proyect/cvm/target/release/build/openssl-sys-66182f9fe15cdddc/build-script-main` (exit status: 101)
  run pkg_config fail: "`"pkg-config" "--libs" "--cflags" "openssl"` did not exit successfully: exit status: 1nerror: could not find system library 'openssl' required by the 'openssl-sys' cratenn--- stderrnPackage openssl was not found in the pkg-config search path.nPerhaps you should add the directory containing `openssl.pc'nto the PKG_CONFIG_PATH environment variablenNo package 'openssl' foundn"

  --- stderr
  thread 'main' panicked at '

  Could not find directory of OpenSSL installation, and this `-sys` crate cannot
  proceed without this knowledge. If OpenSSL is installed and this crate had
  trouble finding it,  you can set the `OPENSSL_DIR` environment variable for the
  compilation process.

  Make sure you also have the development packages of openssl installed.
  For example, `libssl-dev` on Ubuntu or `openssl-devel` on Fedora.

  If you're in a situation where you think the directory *should* be found
  automatically, please open a bug at https://github.com/sfackler/rust-openssl
  and include information about your system as well as this message.

  $HOST = x86_64-apple-darwin
  $TARGET = x86_64-unknown-linux-gnu
  openssl-sys = 0.9.72

  ', /Users/user/.cargo/registry/src/github.com-1ecc6299db9ec823/openssl-sys-0.9.72/build/find_normal.rs:180:5
  note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
warning: build failed, waiting for other jobs to finish...
error: build failed

asked Mar 2, 2022 at 3:55

Orelvis Lago's user avatar

5

The error message contains three possible solutions:

First make sure it is really installed including for development (which is what you need if you want to compile code against openssl):

Make sure you also have the development packages of openssl installed.
For example, libssl-dev on Ubuntu or openssl-devel on Fedora.

If it is already really installed, then it could not be found. This can be fixed by adding the directory containing `openssl.pc’ to the PKG_CONFIG_PATH environment variable:

Package openssl was not found in the pkg-config search path. Perhaps
you should add the directory containing `openssl.pc’ to the
PKG_CONFIG_PATH environment variable.

Or by setting the OPENSSL_DIR to point to where the openssl code is on your system:

Could not find directory of OpenSSL installation, and this -sys
crate cannot proceed without this knowledge. If OpenSSL is installed
and this crate had trouble finding it, you can set the OPENSSL_DIR
environment variable for the compilation process.

answered Mar 2, 2022 at 17:53

hkBst's user avatar

hkBsthkBst

2,66611 silver badges25 bronze badges

2

After a lot of trying and trying I found this script that compiles for linux from mac.

You just have to copy it to the root folder of the project and run it.

answered Mar 3, 2022 at 14:15

Orelvis Lago's user avatar

try add

[target.x86_64-unknown-linux-musl]
linker = "x86_64-linux-musl-gcc"

to your Cargo.toml

answered Sep 14, 2022 at 5:23

RyanWilson's user avatar

Go Back   UnKnoWnCheaTs — Multiplayer Game Hacking and Cheats

  • First-Person Shooters


  • Rust

  • Reload this Page

    [Help] Rust Bones

    Rust Bones
    Rust Bones

    Save

    Authenticator Code

    Reply

    Thread Tools

    Rust Bones

    Old
    26th August 2020, 12:02 PM

     
    #1

    beepboop5

    1337 H4x0!2

    beepboop5's Avatar

    Join Date: Oct 2019


    Posts: 120

    Reputation: 1225

    Rep Power: 83

    beepboop5 -- Punk buster made a most wanted list for mebeepboop5 -- Punk buster made a most wanted list for mebeepboop5 -- Punk buster made a most wanted list for mebeepboop5 -- Punk buster made a most wanted list for mebeepboop5 -- Punk buster made a most wanted list for mebeepboop5 -- Punk buster made a most wanted list for mebeepboop5 -- Punk buster made a most wanted list for mebeepboop5 -- Punk buster made a most wanted list for mebeepboop5 -- Punk buster made a most wanted list for me

    Points: 3,179, Level: 5

    Points: 3,179, Level: 5 Points: 3,179, Level: 5 Points: 3,179, Level: 5

    Level up: 48%, 421 Points needed

    Level up: 48% Level up: 48% Level up: 48%

    Activity: 8.3%

    Activity: 8.3% Activity: 8.3% Activity: 8.3%

    Last Achievements
    Rust Bones

    Rust Bones


    I have done some searching and found some old posts saying you can get the BoneDictionary from SkinnedMultiMesh->Skeleton? but when I check in DnSpy the only thing that references BoneDictionary is Model (Which is exposed by BaseEntity which is exposed in BasePlayer but only for some functions). I was wondering if anyone would be able to help me get bones or atleast point me in the right direction to reverse them for myself.


    beepboop5 is offline

    Reply With Quote

    Old
    26th August 2020, 02:26 PM

     
    #2

    Orange Doggo

    Super H4x0r

    Orange Doggo's Avatar

    Join Date: Dec 2018


    Posts: 339

    Reputation: 6025

    Rep Power: 110

    Orange Doggo DEFINES UNKNOWNCHEATSOrange Doggo DEFINES UNKNOWNCHEATSOrange Doggo DEFINES UNKNOWNCHEATSOrange Doggo DEFINES UNKNOWNCHEATSOrange Doggo DEFINES UNKNOWNCHEATSOrange Doggo DEFINES UNKNOWNCHEATSOrange Doggo DEFINES UNKNOWNCHEATSOrange Doggo DEFINES UNKNOWNCHEATSOrange Doggo DEFINES UNKNOWNCHEATSOrange Doggo DEFINES UNKNOWNCHEATSOrange Doggo DEFINES UNKNOWNCHEATS

    Points: 11,576, Level: 13

    Points: 11,576, Level: 13 Points: 11,576, Level: 13 Points: 11,576, Level: 13

    Level up: 45%, 724 Points needed

    Level up: 45% Level up: 45% Level up: 45%

    Activity: 4.7%

    Activity: 4.7% Activity: 4.7% Activity: 4.7%

    Last Achievements
    Rust BonesRust Bones

    Quote:

    Originally Posted by beepboop5
    View Post

    I have done some searching and found some old posts saying you can get the BoneDictionary from SkinnedMultiMesh->Skeleton? but when I check in DnSpy the only thing that references BoneDictionary is Model (Which is exposed by BaseEntity which is exposed in BasePlayer but only for some functions). I was wondering if anyone would be able to help me get bones or atleast point me in the right direction to reverse them for myself.

    model->boneTransforms and model->boneNames


    Orange Doggo is offline

    Reply With Quote

    Old
    26th August 2020, 03:02 PM

     
    #3

    beepboop5

    1337 H4x0!2

    beepboop5's Avatar


    Threadstarter

    Join Date: Oct 2019


    Posts: 120

    Reputation: 1225

    Rep Power: 83

    beepboop5 -- Punk buster made a most wanted list for mebeepboop5 -- Punk buster made a most wanted list for mebeepboop5 -- Punk buster made a most wanted list for mebeepboop5 -- Punk buster made a most wanted list for mebeepboop5 -- Punk buster made a most wanted list for mebeepboop5 -- Punk buster made a most wanted list for mebeepboop5 -- Punk buster made a most wanted list for mebeepboop5 -- Punk buster made a most wanted list for mebeepboop5 -- Punk buster made a most wanted list for me

    Points: 3,179, Level: 5

    Points: 3,179, Level: 5 Points: 3,179, Level: 5 Points: 3,179, Level: 5

    Level up: 48%, 421 Points needed

    Level up: 48% Level up: 48% Level up: 48%

    Activity: 8.3%

    Activity: 8.3% Activity: 8.3% Activity: 8.3%

    Last Achievements
    Rust Bones

    How would I get to this from BasePlayer? because when I look at it in dnspy Model is referenced in BaseEntity and BaseEntity is only referenced in BasePlayer for certain functions as parameters.


    beepboop5 is offline

    Reply With Quote

    Old
    26th August 2020, 03:20 PM

     
    #4

    Orange Doggo

    Super H4x0r

    Orange Doggo's Avatar

    Join Date: Dec 2018


    Posts: 339

    Reputation: 6025

    Rep Power: 110

    Orange Doggo DEFINES UNKNOWNCHEATSOrange Doggo DEFINES UNKNOWNCHEATSOrange Doggo DEFINES UNKNOWNCHEATSOrange Doggo DEFINES UNKNOWNCHEATSOrange Doggo DEFINES UNKNOWNCHEATSOrange Doggo DEFINES UNKNOWNCHEATSOrange Doggo DEFINES UNKNOWNCHEATSOrange Doggo DEFINES UNKNOWNCHEATSOrange Doggo DEFINES UNKNOWNCHEATSOrange Doggo DEFINES UNKNOWNCHEATSOrange Doggo DEFINES UNKNOWNCHEATS

    Points: 11,576, Level: 13

    Points: 11,576, Level: 13 Points: 11,576, Level: 13 Points: 11,576, Level: 13

    Level up: 45%, 724 Points needed

    Level up: 45% Level up: 45% Level up: 45%

    Activity: 4.7%

    Activity: 4.7% Activity: 4.7% Activity: 4.7%

    Last Achievements
    Rust BonesRust Bones

    Quote:

    Originally Posted by beepboop5
    View Post

    How would I get to this from BasePlayer? because when I look at it in dnspy Model is referenced in BaseEntity and BaseEntity is only referenced in BasePlayer for certain functions as parameters.

    BasePlayer inherits BaseCombatEntity which inherits BaseEntity, meaning you can get model from BaseEntity by doing BasePlayer + modeloffset


    Orange Doggo is offline

    Reply With Quote

    Old
    26th August 2020, 03:29 PM

     
    #5

    beepboop5

    1337 H4x0!2

    beepboop5's Avatar


    Threadstarter

    Join Date: Oct 2019


    Posts: 120

    Reputation: 1225

    Rep Power: 83

    beepboop5 -- Punk buster made a most wanted list for mebeepboop5 -- Punk buster made a most wanted list for mebeepboop5 -- Punk buster made a most wanted list for mebeepboop5 -- Punk buster made a most wanted list for mebeepboop5 -- Punk buster made a most wanted list for mebeepboop5 -- Punk buster made a most wanted list for mebeepboop5 -- Punk buster made a most wanted list for mebeepboop5 -- Punk buster made a most wanted list for mebeepboop5 -- Punk buster made a most wanted list for me

    Points: 3,179, Level: 5

    Points: 3,179, Level: 5 Points: 3,179, Level: 5 Points: 3,179, Level: 5

    Level up: 48%, 421 Points needed

    Level up: 48% Level up: 48% Level up: 48%

    Activity: 8.3%

    Activity: 8.3% Activity: 8.3% Activity: 8.3%

    Last Achievements
    Rust Bones

    So after I have got boneDict can I use it like so:

    Code:

    auto BoneInfo = Read<uintptr_t>(pBoneDictionary + 0x18); 
    
    int Bone = Bones::Head;
    auto Bone = Read<uintptr_t>(BoneInfo + 0x30 + ((Bone - 1) * 0x18));
    auto Transform = Read<uintptr_t>(Bone + 0x10);
    
    auto Pos = ParseBone(Transform);

    to get the transforms and then parse them into a Vec3?


    beepboop5 is offline

    Reply With Quote

    Reply


    Similar Threads
    Thread Thread Starter Forum Replies Last Post
    Bones.ini Monkrage Renegade 20 2nd January 2008 04:24 PM
    Here is Renegade Bones.ini cheat SpankyBlah Renegade 1 1st June 2004 10:19 AM
    Bones latata Renegade 4 19th May 2004 12:02 AM
    Here it is Bones.ini timewiz22 Renegade 6 5th April 2004 01:46 PM
    Bones.ini Monkrage Renegade 0 6th March 2004 05:38 AM

    Tags

    exposed, bones, reverse, functions, wondering, direction, atleast, baseplayer, [help], references

    «
    Previous Thread
    |
    Next Thread
    »

    Forum Jump

    All times are GMT. The time now is 05:54 PM.

    Contact Us —
    Toggle Dark Theme

    Terms of Use Information Privacy Policy Information
    Copyright ©2000-2023, Unknowncheats� UKCS #312436

    Rust Bones Rust Bones

    no new posts

    Запускаю сервер. Запускается без проблем, в РПТ все хорошо, ошибок нет. Но спавн персонажа не проходит, спавнится от первого лица, безоружен в положении лежа в траве. Не предлагает точки спавна. В чем может быть проблема? Карта — Чернорашка. (Пробовал на алтисе — та же проблема).

    =====================================================================

    == D:SteamsteamappscommonArma 3 Serverarma3server.exe

    == arma3server.exe  -noPause -enableHT -autoinit -nosplash -high -port=2302 «-config=@ExileServerconfig.cfg» «-cfg=@ExileServerbasic.cfg» «-profiles=@ExileServer» «-name=@ExileServer» «-servermod=@ExileServer» «-mod=@Exile» «-mod=@CupCore» «-mod=@CupMaps» -name=Exile -loadMissionToMemory

    Original output filename: Arma3Retail_Server

    Exe timestamp: 2016/12/07 10:50:01

    Current time:  2017/02/09 17:49:44

    Type: Public

    Build: Stable

    Version: 1.66.139586

    Allocator: D:SteamsteamappscommonArma 3 Serverdlltbb4malloc_bi.dll

    =====================================================================

    17:49:44 Cannot register unknown string STR_USRACT_ACTIVESENSORSTOGGLE

    17:49:44 Cannot register unknown string STR_CONTROLS_TOOLTIPS_SENSORS

    17:49:44 Cannot register unknown string STR_CLIENT_IS_HOST

    17:49:44 Cannot register unknown string STR_CLIENT_IS_DS_ADMIN

    17:49:44 Initializing stats manager.

    17:49:44 Stats config disabled.

    17:49:44 sessionID: d0285aa9b1ea01198c4a2c003445a72692a7d9ae

    17:51:49 Unsupported language English in stringtable

    17:51:54 Updating base class ->NonStrategic, by a3data_fconfig.bin/CfgVehicles/HouseBase/

    17:51:54 Updating base class ->DestructionEffects, by a3data_fconfig.bin/CfgVehicles/House/DestructionEffects/

    17:51:54 Updating base class ->Wreck, by a3data_fconfig.bin/CfgVehicles/PlaneWreck/

    17:51:55 Updating base class RscShortcutButton->RscButton, by a3editor_fconfig.bin/RscDisplayEditObject/Controls/B_OK/

    17:51:55 Updating base class RscSliderH->RscXSliderH, by a3editor_fconfig.bin/RscDisplayEditObject/Slider/

    17:51:55 Updating base class RscText->RscPicture, by a3editor_fconfig.bin/RscDisplayEditObject/Preview/

    17:51:55 Updating base class RscShortcutButton->RscButton, by a3editor_fconfig.bin/RscDisplayMissionLoad/Controls/B_OK/

    17:51:55 Updating base class RscShortcutButton->RscButton, by a3editor_fconfig.bin/RscDisplayMissionSave/Controls/B_OK/

    17:51:55 Updating base class ->EtelkaMonospacePro, by a3uifonts_fconfig.bin/CfgFontFamilies/EtelkaMonospaceProBold/

    17:51:55 Updating base class BlendAnims->, by a3anims_fconfigsdrweaponswitchingconfig.bin/CfgMovesMaleSdr/BlendAnims/

    17:51:55 Updating base class ->RscControlsGroup, by a3ui_fconfig.bin/RscControlsGroupNoScrollbars/

    17:51:55 Updating base class ->RscControlsGroup, by a3ui_fconfig.bin/RscControlsGroupNoHScrollbars/

    17:51:55 Updating base class ->RscControlsGroup, by a3ui_fconfig.bin/RscControlsGroupNoVScrollbars/

    17:51:55 Updating base class ->RscText, by a3ui_fconfig.bin/RscLine/

    17:51:55 Updating base class ->RscActiveText, by a3ui_fconfig.bin/RscActivePicture/

    17:51:55 Updating base class ->RscButton, by a3ui_fconfig.bin/RscButtonTextOnly/

    17:51:55 Updating base class ->RscShortcutButton, by a3ui_fconfig.bin/RscShortcutButtonMain/

    17:51:55 Updating base class ->RscShortcutButton, by a3ui_fconfig.bin/RscButtonEditor/

    17:51:55 Updating base class ->RscShortcutButton, by a3ui_fconfig.bin/RscIGUIShortcutButton/

    17:51:55 Updating base class ->RscShortcutButton, by a3ui_fconfig.bin/RscGearShortcutButton/

    17:51:55 Updating base class ->RscShortcutButton, by a3ui_fconfig.bin/RscButtonMenu/

    17:51:55 Updating base class ->RscButtonMenu, by a3ui_fconfig.bin/RscButtonMenuOK/

    17:51:55 Updating base class ->RscButtonMenu, by a3ui_fconfig.bin/RscButtonMenuCancel/

    17:51:55 Updating base class ->RscButtonMenu, by a3ui_fconfig.bin/RscButtonMenuSteam/

    17:51:55 Updating base class ->RscText, by a3ui_fconfig.bin/RscLoadingText/

    17:51:55 Updating base class ->RscListBox, by a3ui_fconfig.bin/RscIGUIListBox/

    17:51:55 Updating base class ->RscListNBox, by a3ui_fconfig.bin/RscIGUIListNBox/

    17:51:55 Updating base class ->RscText, by a3ui_fconfig.bin/RscBackground/

    17:51:55 Updating base class ->RscText, by a3ui_fconfig.bin/RscBackgroundGUI/

    17:51:55 Updating base class ->RscPicture, by a3ui_fconfig.bin/RscBackgroundGUILeft/

    17:51:55 Updating base class ->RscPicture, by a3ui_fconfig.bin/RscBackgroundGUIRight/

    17:51:55 Updating base class ->RscPicture, by a3ui_fconfig.bin/RscBackgroundGUIBottom/

    17:51:55 Updating base class ->RscText, by a3ui_fconfig.bin/RscBackgroundGUITop/

    17:51:55 Updating base class ->RscText, by a3ui_fconfig.bin/RscBackgroundGUIDark/

    17:51:55 Updating base class ->RscPictureKeepAspect, by a3ui_fconfig.bin/RscBackgroundLogo/

    17:51:55 Updating base class ->RscMapControl, by a3ui_fconfig.bin/RscMapControlEmpty/

    17:51:55 Updating base class ->RscPicture, by a3ui_fconfig.bin/CA_Mainback/

    17:51:55 Updating base class ->CA_Mainback, by a3ui_fconfig.bin/CA_Back/

    17:51:55 Updating base class ->CA_Mainback, by a3ui_fconfig.bin/CA_Title_Back/

    17:51:55 Updating base class ->CA_Mainback, by a3ui_fconfig.bin/CA_Black_Back/

    17:51:55 Updating base class ->RscTitle, by a3ui_fconfig.bin/CA_Title/

    17:51:55 Updating base class ->RscPictureKeepAspect, by a3ui_fconfig.bin/CA_Logo/

    17:51:55 Updating base class ->CA_Logo, by a3ui_fconfig.bin/CA_Logo_Small/

    17:51:55 Updating base class ->RscButton, by a3ui_fconfig.bin/CA_RscButton/

    17:51:55 Updating base class ->CA_RscButton, by a3ui_fconfig.bin/CA_RscButton_dialog/

    17:51:55 Updating base class ->RscActiveText, by a3ui_fconfig.bin/CA_Ok/

    17:51:55 Updating base class ->RscText, by a3ui_fconfig.bin/CA_Ok_image/

    17:51:55 Updating base class ->RscText, by a3ui_fconfig.bin/CA_Ok_image2/

    17:51:55 Updating base class ->RscText, by a3ui_fconfig.bin/CA_Ok_text/

    17:51:55 Updating base class ->RscPicture, by a3ui_fconfig.bin/RscVignette/

    17:51:55 Updating base class ->RscControlsGroupNoScrollbars, by a3ui_fconfig.bin/RscMapControlTooltip/

    17:51:55 Updating base class RscUnitInfo->RscUnitInfoAirNoWeapon, by a3ui_fconfig.bin/RscInGameUI/RscUnitInfoAir/

    17:51:55 Updating base class RscControlsGroup->RscControlsGroupNoScrollbars, by a3ui_fconfig.bin/RscInGameUI/RscTaskOverview/controls/TaskOverviewAssigned/

    17:51:55 Updating base class RscShortcutButton->RscButtonMenu, by a3ui_fconfig.bin/RscDisplayDebug/Controls/B_OK/

    17:51:55 Updating base class RscShortcutButton->RscButtonMenu, by a3ui_fconfig.bin/RscDisplayDebug/Controls/B_Cancel/

    17:51:55 Updating base class RscShortcutButton->RscButtonMenu, by a3ui_fconfig.bin/RscDisplayDebug/Controls/B_Clear/

    17:51:55 Updating base class ->RscText, by a3ui_fconfig.bin/RscDisplayCapture/controls/TimeLines/

    17:51:55 Updating base class RscShortcutButton->RscButtonMenu, by a3ui_fconfig.bin/RscDisplayCapture/controls/ButtonAverages/

    17:51:55 Updating base class RscShortcutButton->RscButtonMenu, by a3ui_fconfig.bin/RscDisplayCapture/controls/ButtonSavePreviousData/

    17:51:55 Updating base class RscShortcutButton->RscButtonMenu, by a3ui_fconfig.bin/RscDisplayCapture/controls/ButtonPreviousData/

    17:51:55 Updating base class RscPicture->RscPictureKeepAspect, by a3ui_fconfig.bin/RscDisplayMain/IconPicture/

    17:51:55 Updating base class IconPicture->RscPictureKeepAspect, by a3ui_fconfig.bin/RscDisplayMain/DlcOwnedIconPicture/

    17:51:55 Updating base class IconPicture->RscPictureKeepAspect, by a3ui_fconfig.bin/RscDisplayMain/DlcIconPicture/

    17:51:55 Updating base class RscControlsGroup->RscControlsGroupNoScrollbars, by a3ui_fconfig.bin/RscDisplayCampaignLoad/controls/OverviewGroup/

    17:51:55 Updating base class RscButton->RscButtonSearch, by a3ui_fconfig.bin/RscDisplayCampaignLoad/controls/SearchButton/

    17:51:55 Updating base class RscShortcutButton->RscButtonMenuCancel, by a3ui_fconfig.bin/RscDisplayCampaignLoad/controls/ButtonCancel/

    17:51:55 Updating base class RscShortcutButton->RscButtonMenu, by a3ui_fconfig.bin/RscDisplayCampaignLoad/controls/ButtonGameOptions/

    17:51:55 Updating base class RscShortcutButton->RscButtonMenuSteam, by a3ui_fconfig.bin/RscDisplayCampaignLoad/controls/ButtonBuyDLC/

    17:51:55 Updating base class RscShortcutButton->RscButtonMenu, by a3ui_fconfig.bin/RscDisplayCampaignLoad/controls/ButtonRevert/

    17:51:55 Updating base class RscShortcutButton->RscButtonMenuOK, by a3ui_fconfig.bin/RscDisplayCampaignLoad/controls/ButtonOK/

    17:51:55 Updating base class RscListBox->RscCombo, by a3ui_fconfig.bin/RscDisplayCustomizeController/Steepness/

    17:51:55 Updating base class ->RscStandardDisplay, by a3ui_fconfig.bin/RscDisplayControlSchemes/

    17:51:55 Updating base class ButtonOK->RscButtonMenuCancel, by a3ui_fconfig.bin/RscDisplayControlSchemes/controls/ButtonCancel/

    17:51:55 Updating base class RscButton->RscButtonMenuOK, by a3ui_fconfig.bin/RscDisplayControlSchemes/controls/ButtonOK/

    17:51:55 Updating base class RscPicture->RscPictureKeepAspect, by a3ui_fconfig.bin/RscDisplayFileSelectImage/controls/OverviewPicture/

    17:51:55 Updating base class RscShortcutButton->RscButtonMenuCancel, by a3ui_fconfig.bin/RscDisplayFieldManual/controls/ButtonCancel/

    17:51:55 Cannot delete class B_KickOff, it is referenced somewhere (used as a base class probably).

    17:51:55 Updating base class RscButton->RscButtonMenuCancel, by a3ui_fconfig.bin/RscDisplayPublishMission/controls/ButtonCancel/

    17:51:55 Updating base class RscShortcutButton->RscButtonMenuOK, by a3ui_fconfig.bin/RscDisplayPublishMissionSelectTags/controls/ButtonOK/

    17:51:55 Updating base class ButtonOK->RscButtonMenuCancel, by a3ui_fconfig.bin/RscDisplayPublishMissionSelectTags/controls/ButtonCancel/

    17:51:55 Updating base class ->RscSubmenu, by a3ui_fconfig.bin/RscMainMenu/

    17:51:55 Cannot update non class from class a3ui_fconfig.bin/RscCallSupport/Items/

    17:51:55 Cannot update non class from class a3ui_fconfig.bin/RscRadio/Items/

    17:51:55 Updating base class ->DistanceClose, by a3ui_fconfig.bin/CfgSimpleTasks/Icon3D/DistanceMid/

    17:51:55 Updating base class ->DistanceClose, by a3ui_fconfig.bin/CfgSimpleTasks/Icon3D/DistanceLong/

    17:51:55 Updating base class ->VehicleMagazine, by a3weapons_fconfig.bin/CfgMagazines/24Rnd_missiles/

    17:51:55 Updating base class ->RocketPods, by a3weapons_fconfig.bin/CfgWeapons/missiles_DAR/

    17:51:55 Updating base class ->All, by a3sounds_fconfig.bin/CfgVehicles/Sound/

    17:51:56 Updating base class ->BlendAnims, by a3soft_f_kartkart_01config.bin/CfgMovesMaleSdr/BlendAnims/

    17:51:56 Updating base class RscText->ctrlStaticBackgroundDisable, by a33denconfig.bin/RscDisplayOptionsAudio/ControlsBackground/BackgroundDisable/

    17:51:56 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a33denconfig.bin/RscDisplayOptionsAudio/ControlsBackground/BackgroundDisableTiles/

    17:51:56 Updating base class RscText->ctrlStaticBackgroundDisable, by a33denconfig.bin/RscDisplayConfigure/ControlsBackground/BackgroundDisable/

    17:51:56 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a33denconfig.bin/RscDisplayConfigure/ControlsBackground/BackgroundDisableTiles/

    17:51:56 Updating base class RscText->ctrlStaticBackgroundDisable, by a33denconfig.bin/RscDisplayConfigureAction/ControlsBackground/BackgroundDisable/

    17:51:56 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a33denconfig.bin/RscDisplayConfigureAction/ControlsBackground/BackgroundDisableTiles/

    17:51:56 Updating base class RscText->ctrlStaticBackgroundDisable, by a33denconfig.bin/RscDisplayConfigureControllers/ControlsBackground/BackgroundDisable/

    17:51:56 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a33denconfig.bin/RscDisplayConfigureControllers/ControlsBackground/BackgroundDisableTiles/

    17:51:56 Updating base class RscText->ctrlStaticBackgroundDisable, by a33denconfig.bin/RscDisplayGameOptions/ControlsBackground/BackgroundDisable/

    17:51:56 Updating base class RscText->ctrlStaticBackgroundDisableTiles, by a33denconfig.bin/RscDisplayGameOptions/ControlsBackground/BackgroundDisableTiles/

    17:51:56 Updating base class controls->, by a33denconfig.bin/RscDisplayArcadeMap_Layout_2/Controls/

    17:51:56 Updating base class controls->, by a33denconfig.bin/RscDisplayArcadeMap_Layout_6/Controls/

    17:51:56 Updating base class B_Soldier_02_f->B_Soldier_base_F, by exile_clientconfig.bin/CfgVehicles/B_Story_SF_Captain_F/

    17:51:56 Updating base class RscStructuredText->RscText, by exile_clientconfig.bin/RscMPSetupMessage/Controls/DownloadText/

    17:51:56 Cannot delete class BackgroundSlotPrimary, it is referenced somewhere (used as a base class probably).

    17:51:56 Updating base class RscStandardDisplay->, by exile_clientconfig.bin/RscDisplayMain/

    17:51:56 Updating base class RscPicture->RscText, by exile_clientconfig.bin/RscDisplayVoiceChat/controls/Picture/

    17:51:56 Updating base class ->Plane, by Exile_psycho_An2config.bin/CfgVehicles/an2_base/

    17:51:56 Updating base class ->BRDM2_HQ_Base, by exile_psycho_brdmconfig.bin/CfgVehicles/BRDM2_HQ_CHDKZ/

    17:51:56 Updating base class ->Car_F, by exile_psycho_btr40config.bin/CfgVehicles/BTR40_MG_base_EP1/

    17:51:56 Updating base class ->BTR40_MG_base_EP1, by exile_psycho_btr40config.bin/CfgVehicles/BTR40_base_EP1/

    17:51:56 Updating base class ->Car_F, by Exile_psycho_Gaz_volhaconfig.bin/CfgVehicles/volha_Base/

    17:51:56 Updating base class Car->Car_F, by Exile_psycho_hmmwconfig.bin/CfgVehicles/HMMWV_Base/

    17:51:56 Updating base class ->HMMWV_Base, by Exile_psycho_hmmwconfig.bin/CfgVehicles/HMMWV_M2/

    17:51:56 Updating base class ->HMMWV_Base, by Exile_psycho_hmmwconfig.bin/CfgVehicles/HMMWV_M134/

    17:51:56 Updating base class ->HMMWV_Base, by Exile_psycho_hmmwconfig.bin/CfgVehicles/HMMWV_UNA/

    17:51:56 Updating base class ->HMMWV_UNA, by Exile_psycho_hmmwconfig.bin/CfgVehicles/HMMWV_MEV/

    17:51:56 Updating base class ->Ikarus_Civ_Base, by Exile_psycho_Ikarusconfig.bin/CfgVehicles/Ikarus_Civ_01/

    17:51:56 Updating base class ->Car_F, by Exile_psycho_ladaconfig.bin/CfgVehicles/Lada_Base/

    17:51:56 Updating base class ->Landrover_civ, by Exile_psycho_LRCconfig.bin/CfgVehicles/Landrover_Civ_02/

    17:51:56 Updating base class ->Landrover_civ, by Exile_psycho_LRCconfig.bin/CfgVehicles/LR_Ambulance_Base/

    17:51:56 Updating base class ->Octavia_Base, by Exile_psycho_Octaviaconfig.bin/CfgVehicles/Octavia_Civ_01/

    17:51:56 Updating base class ->Car_F, by Exile_psycho_SUV_a3config.bin/CfgVehicles/SUV_Base/

    17:51:56 Updating base class ->Car_F, by Exile_psycho_SuvArm_a3config.bin/cfgVehicles/SUV_armored_Base/

    17:51:56 Updating base class ->Car_F, by exile_psycho_tractorconfig.bin/CfgVehicles/Tractor_Base/

    17:51:56 Updating base class ->Tractor_Base, by exile_psycho_tractorconfig.bin/CfgVehicles/tractorOld/

    17:51:56 Updating base class ->Offroad_01_base_F, by Exile_Psycho_UAZconfig.bin/CfgVehicles/UAZ_Base/

    17:51:56 Updating base class ->UAZ_Base, by Exile_Psycho_UAZconfig.bin/CfgVehicles/UAZ_Open_Base/

    17:51:56 Updating base class ->UH1H_Closed, by Exile_psycho_UH1Hconfig.bin/CfgVehicles/UH1H_Clo/

    17:51:56 Updating base class ->UH1HL_base, by Exile_psycho_UH1Hconfig.bin/CfgVehicles/UH1H_M240/

    17:51:56 Updating base class ->Ural_Base, by Exile_psycho_Uralconfig.bin/CfgVehicles/Ural_RU/

    17:51:56 Updating base class ->Ural_Open_Base, by Exile_psycho_Uralconfig.bin/CfgVehicles/Ural_Open_RU/

    17:51:56 Updating base class ->Truck_F, by Exile_psycho_V3Sconfig.bin/CfgVehicles/V3S_base/

    17:51:56 Updating base class ->V3S_base, by Exile_psycho_V3Sconfig.bin/CfgVehicles/V3S_Base_EP1/

    17:51:56 Updating base class KIA_Golf_Driver->DefaultDie, by Exile_Psycho_VWGOLFconfig.bin/CfgMovesMaleSdr/States/KIA_Golf_Cargo01/

    17:51:56 Updating base class KIA_Golf_Driver->DefaultDie, by Exile_Psycho_VWGOLFconfig.bin/CfgMovesMaleSdr/States/KIA_Golf_Cargo02/

    17:51:56 Updating base class KIA_Golf_Driver->DefaultDie, by Exile_Psycho_VWGOLFconfig.bin/CfgMovesMaleSdr/States/KIA_Golf_Cargo03/

    17:51:56 Updating base class ->Golf_Base, by Exile_Psycho_VWGOLFconfig.bin/CfgVehicles/Golf_Civ_Base/

    17:51:56 Updating base class ->CA_Magazine, by exile_psycho_weaponsarifleakconfig.bin/cfgmagazines/75Rnd_Green_Tracer_545x39_RPK/

    17:51:56 Updating base class ->75Rnd_Green_Tracer_545x39_RPK, by exile_psycho_weaponsarifleakconfig.bin/cfgmagazines/45Rnd_Green_Tracer_545x39_RPK/

    17:51:56 Updating base class ->CA_Magazine, by exile_psycho_weaponsarifleakconfig.bin/cfgmagazines/30Rnd_545x39_AK/

    17:51:56 Updating base class ->30Rnd_545x39_AK, by exile_psycho_weaponsarifleakconfig.bin/cfgmagazines/30Rnd_Green_Tracer_545x39_AK/

    17:51:56 Updating base class ->30Rnd_545x39_AK, by exile_psycho_weaponsarifleakconfig.bin/cfgmagazines/30Rnd_Red_Tracer_545x39_AK/

    17:51:56 Updating base class ->30Rnd_545x39_AK, by exile_psycho_weaponsarifleakconfig.bin/cfgmagazines/30Rnd_White_Tracer_545x39_AK/

    17:51:56 Updating base class ->30Rnd_545x39_AK, by exile_psycho_weaponsarifleakconfig.bin/cfgmagazines/30Rnd_Yellow_Tracer_545x39_AK/

    17:51:57 Updating base class ->CA_Magazine, by exile_psycho_weaponsarifleakconfig.bin/cfgmagazines/30Rnd_762x39_AK47_M/

    17:51:57 Updating base class ->arifle_AK_Base, by exile_psycho_weaponsarifleakconfig.bin/CfgWeapons/arifle_AK47/

    17:51:57 Updating base class ->arifle_AK_Base, by exile_psycho_weaponsarifleakconfig.bin/CfgWeapons/arifle_AK74/

    17:51:57 Updating base class ->arifle_AK107_Base, by exile_psycho_weaponsarifleakconfig.bin/CfgWeapons/arifle_AK107/

    17:51:57 Updating base class ->arifle_AK107_Base, by exile_psycho_weaponsarifleakconfig.bin/CfgWeapons/arifle_AK107_GL/

    17:51:57 Updating base class ->arifle_AK_Base, by exile_psycho_weaponsarifleakconfig.bin/CfgWeapons/arifle_AK74_GL/

    17:51:57 Updating base class ->arifle_AK_Base, by exile_psycho_weaponsarifleakconfig.bin/CfgWeapons/arifle_AKM/

    17:51:57 Updating base class ->arifle_AKM, by exile_psycho_weaponsarifleakconfig.bin/CfgWeapons/arifle_AKS/

    17:51:57 Updating base class ->arifle_AKS, by exile_psycho_weaponsarifleakconfig.bin/CfgWeapons/arifle_AKS_Gold/

    17:51:57 Updating base class ->arifle_AK74, by exile_psycho_weaponsarifleakconfig.bin/CfgWeapons/arifle_RPK74/

    17:51:57 Updating base class ->CA_Magazine, by exile_psycho_weaponsmgunpkconfig.bin/CfgMagazines/100Rnd_762x54_PK_Tracer_Green/

    17:51:57 Updating base class ->Rifle_Long_Base_F, by exile_psycho_weaponsmgunpkconfig.bin/CfgWeapons/PKP/

    17:51:57 Updating base class ->PKP, by exile_psycho_weaponsmgunpkconfig.bin/CfgWeapons/Pecheneg/

    17:51:57 Updating base class ShotgunBase->BulletBase, by exile_psycho_weaponsotherm1014config.bin/CfgAmmo/B_12Gauge_Pellets/

    17:51:57 Updating base class ->CA_Magazine, by exile_psycho_weaponsotherm1014config.bin/CfgMagazines/8Rnd_B_Beneli_74Slug/

    17:51:57 Updating base class ->CA_Magazine, by exile_psycho_weaponsotherm1014config.bin/CfgMagazines/8Rnd_B_Beneli_74Pellets/

    17:51:57 Updating base class ->Rifle_Base_F, by exile_psycho_weaponsotherm1014config.bin/CfgWeapons/M1014/

    17:51:57 Updating base class ->CA_Magazine, by exile_psycho_weaponspistolcolt1911config.bin/CfgMagazines/7Rnd_45ACP_1911/

    17:51:57 Updating base class ->Pistol_Base_F, by exile_psycho_weaponspistolcolt1911config.bin/CfgWeapons/Colt1911/

    17:51:57 Updating base class ->CA_Magazine, by exile_psycho_weaponspistolmakarovconfig.bin/CfgMagazines/8Rnd_9x18_Makarov/

    17:51:57 Updating base class ->Pistol_Base_F, by exile_psycho_weaponspistolmakarovconfig.bin/CfgWeapons/Makarov/

    17:51:57 Updating base class ->CA_Magazine, by exile_psycho_weaponspistolrevolverconfig.bin/CfgMagazines/6Rnd_45ACP/

    17:51:57 Updating base class ->Pistol_Base_F, by exile_psycho_weaponspistolrevolverconfig.bin/CfgWeapons/TaurusTracker455/

    17:51:57 Updating base class ->TaurusTracker455, by exile_psycho_weaponspistolrevolverconfig.bin/CfgWeapons/TaurusTracker455_gold/

    17:51:57 Updating base class ->CA_Magazine, by exile_psycho_weaponssrifledmrconfig.bin/CfgMagazines/20Rnd_762x51_DMR/

    17:51:57 Updating base class ->20Rnd_762x51_DMR, by exile_psycho_weaponssrifledmrconfig.bin/CfgMagazines/20Rnd_Yellow_Tracer_762x51_DMR/

    17:51:57 Updating base class ->20Rnd_762x51_DMR, by exile_psycho_weaponssrifledmrconfig.bin/CfgMagazines/20Rnd_Red_Tracer_762x51_DMR/

    17:51:57 Updating base class ->20Rnd_762x51_DMR, by exile_psycho_weaponssrifledmrconfig.bin/CfgMagazines/20Rnd_Green_Tracer_762x51_DMR/

    17:51:57 Updating base class ->Rifle_Base_F, by exile_psycho_weaponssrifledmrconfig.bin/CfgWeapons/srifle_DMR/

    17:51:57 Updating base class ->CA_Magazine, by exile_psycho_weaponssriflehuntingrifleconfig.bin/CfgMagazines/5x_22_LR_17_HMR_M/

    17:51:57 Updating base class ->Rifle_Base_F, by exile_psycho_weaponssriflehuntingrifleconfig.bin/CfgWeapons/srifle_CZ550_base/

    17:51:57 Updating base class ->CA_Magazine, by exile_psycho_weaponssrifleleeenfieldconfig.bin/CfgMagazines/10x_303_M/

    17:51:57 Updating base class ->Rifle_Base_F, by exile_psycho_weaponssrifleleeenfieldconfig.bin/CfgWeapons/srifle_LeeEnfield/

    17:51:57 Updating base class ->CA_Magazine, by exile_psycho_weaponssriflesvdconfig.bin/CfgMagazines/10Rnd_762x54_SVD/

    17:51:57 Updating base class ->Rifle_Base_F, by exile_psycho_weaponssriflesvdconfig.bin/CfgWeapons/srifle_SVD/

    17:51:57 Updating base class ->srifle_SVD, by exile_psycho_weaponssriflesvdconfig.bin/CfgWeapons/srifle_SVD_des/

    17:51:57 Updating base class ->CA_Magazine, by exile_psycho_weaponssriflevssconfig.bin/CfgMagazines/10Rnd_9x39_VSS/

    17:51:57 Updating base class ->CA_Magazine, by exile_psycho_weaponssriflevssconfig.bin/CfgMagazines/20Rnd_9x39_VSS/

    17:51:57 Updating base class ->Rifle_Base_F, by exile_psycho_weaponssriflevssconfig.bin/CfgWeapons/srifle_VSSVintorez/

    17:51:57 Updating base class ->LSV_01_light_base_F, by a3soft_f_explsv_01config.bin/CfgVehicles/B_CTRG_LSV_01_light_F/

    17:51:57 Updating base class ->B_T_LSV_01_unarmed_F, by a3soft_f_explsv_01config.bin/CfgVehicles/B_T_LSV_01_unarmed_black_F/

    17:51:57 Updating base class ->O_T_LSV_02_unarmed_F, by a3soft_f_explsv_02config.bin/CfgVehicles/O_T_LSV_02_unarmed_black_F/

    17:51:57 Updating base class ->C_Offroad_02_unarmed_F, by a3soft_f_expoffroad_02config.bin/CfgVehicles/C_Offroad_02_unarmed_orange_F/

    17:51:57 Updating base class ->Offroad_02_unarmed_base_F, by a3soft_f_expoffroad_02config.bin/CfgVehicles/I_C_Offroad_02_unarmed_F/

    17:51:57 Updating base class ->Rifle_Base_F, by a3weapons_f_expriflesspar_02config.bin/CfgWeapons/arifle_SPAR_02_base_F/

    17:51:58 Updating base class ->Plane_Civil_01_base_F, by a3air_f_expplane_civil_01config.bin/CfgVehicles/C_Plane_Civil_01_F/

    17:51:58 Updating base class ->VTOL_01_infantry_base_F, by a3air_f_expvtol_01config.bin/CfgVehicles/B_T_VTOL_01_infantry_F/

    17:51:58 Updating base class ->VTOL_01_vehicle_base_F, by a3air_f_expvtol_01config.bin/CfgVehicles/B_T_VTOL_01_vehicle_F/

    17:51:58 Updating base class ->Boat_Transport_02_base_F, by a3boat_f_expboat_transport_02config.bin/CfgVehicles/B_G_Boat_Transport_02_F/

    17:51:58 Updating base class ->Scooter_Transport_01_base_F, by a3boat_f_expscooter_transport_01config.bin/CfgVehicles/C_Scooter_Transport_01_F/

    17:52:00 Initializing Steam Manager

    17:52:00 Starting initial content check.

    17:52:00 Steam Manager initialized.

    17:52:00 

    17:52:00 ==== Loaded addons ====

    17:52:00 

    17:52:00 dtabin.pbo — 139586

    17:52:00 dtacore.pbo — 108474

    17:52:00 dtalanguagecore_f.pbo — 108412

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupMapsaddonscup_terrains_maps_afghan.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupMapsaddonscup_terrains_maps_afghan_c.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupMapsaddonscup_terrains_maps_bohemia.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupMapsaddonscup_terrains_maps_bohemia_c.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupMapsaddonscup_terrains_maps_bootcamp_acr.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupMapsaddonscup_terrains_maps_bootcamp_acr_c.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupMapsaddonscup_terrains_maps_chernarus.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupMapsaddonscup_terrains_maps_chernarus_c.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupMapsaddonscup_terrains_maps_chernarus_summer.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupMapsaddonscup_terrains_maps_chernarus_summer_c.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupMapsaddonscup_terrains_maps_desert.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupMapsaddonscup_terrains_maps_desert2.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupMapsaddonscup_terrains_maps_desert2_c.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupMapsaddonscup_terrains_maps_desert_c.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupMapsaddonscup_terrains_maps_desert_e.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupMapsaddonscup_terrains_maps_desert_e_c.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupMapsaddonscup_terrains_maps_provinggrounds_pmc.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupMapsaddonscup_terrains_maps_provinggrounds_pmc_c.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupMapsaddonscup_terrains_maps_sara.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupMapsaddonscup_terrains_maps_saralite.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupMapsaddonscup_terrains_maps_saralite_c.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupMapsaddonscup_terrains_maps_sara_c.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupMapsaddonscup_terrains_maps_sara_dbe1.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupMapsaddonscup_terrains_maps_sara_dbe1_c.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupMapsaddonscup_terrains_maps_shapur_baf.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupMapsaddonscup_terrains_maps_shapur_baf_c.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupMapsaddonscup_terrains_maps_takistan.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupMapsaddonscup_terrains_maps_takistan_c.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupMapsaddonscup_terrains_maps_utes.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupMapsaddonscup_terrains_maps_utes_c.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupMapsaddonscup_terrains_maps_zargabad.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupMapsaddonscup_terrains_maps_zargabad_c.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_a1always_dummy.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_a1_editorobjects.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_a2_editorobjects.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_aia_compat.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_baseconfig_f.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_buildings.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_a10_dummy.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_air2_dummy.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_air3_dummy.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_air_dummy.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_air_d_baf_dummy.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_air_e_dummy.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_air_pmc_dummy.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_animals2_dummy.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_animations_dummy.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_buildings.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_buildings2.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_buildings2_c.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_buildings_c.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_ca_acr.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_ca_c.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_ca_e.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_ca_pmc.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_characters2_dummy.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_cti_buildings.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_data.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_data_baf.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_data_baf_c.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_hotfix.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_hotfix_c.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_l39_dummy.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_language.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_languagemissions.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_languagemissions_baf.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_languagemissions_e.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_languagemissions_pmc.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_language_acr.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_language_baf.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_language_e.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_language_pmc.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_misc.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_misc2.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_misc3.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_misc3_c.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_misc_acr.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_misc_acr_c.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_misc_baf.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_misc_e.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_misc_e_c.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_mp_armory_dummy.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_plants.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_plants2.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_plants_e.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_plants_e2.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_plants_pmc.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_roads.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_roads2.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_roads_e.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_roads_pmc.pbo — unknown

    17:52:00 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_rocks.pbo — unknown

    17:52:01 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_rocks2.pbo — unknown

    17:52:01 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_rocks_e.pbo — unknown

    17:52:01 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_signs.pbo — unknown

    17:52:01 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_signs2.pbo — unknown

    17:52:01 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_signs_e.pbo — unknown

    17:52:01 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_sounds_c_dummy.pbo — unknown

    17:52:01 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_sounds_dummy.pbo — unknown

    17:52:01 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_sounds_e_dummy.pbo — unknown

    17:52:01 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_structures.pbo — unknown

    17:52:01 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_structures_c.pbo — unknown

    17:52:01 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_structures_e.pbo — unknown

    17:52:01 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_structures_e_c.pbo — unknown

    17:52:01 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_structures_pmc.pbo — unknown

    17:52:01 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_structures_pmc_c.pbo — unknown

    17:52:01 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_tracked2_dummy.pbo — unknown

    17:52:01 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_tracked_dummy.pbo — unknown

    17:52:01 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_tracked_e_dummy.pbo — unknown

    17:52:01 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_uifonts.pbo — unknown

    17:52:01 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_ui_dummy.pbo — unknown

    17:52:01 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_water2_dummy.pbo — unknown

    17:52:01 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_water_dummy.pbo — unknown

    17:52:01 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_weapons2_dummy.pbo — unknown

    17:52:01 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_weapons_dummy.pbo — unknown

    17:52:01 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_weapons_e_dummy.pbo — unknown

    17:52:01 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_weapons_pmc_dummy.pbo — unknown

    17:52:01 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_wheeled2_dummy.pbo — unknown

    17:52:01 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_wheeled_dummy.pbo — unknown

    17:52:01 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ca_wheeled_e_dummy.pbo — unknown

    17:52:01 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_core.pbo — unknown

    17:52:01 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_dbe1_dummy.pbo — unknown

    17:52:01 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_dbe1_models_dbe1.pbo — unknown

    17:52:01 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_dbe1_models_dbe1_c.pbo — unknown

    17:52:01 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_dummy.pbo — unknown

    17:52:01 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_editor_c.pbo — unknown

    17:52:01 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_hsim_data_h_dummy.pbo — unknown

    17:52:01 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_hsim_languagemissions_h.pbo — unknown

    17:52:01 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_hsim_language_h.pbo — unknown

    17:52:01 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_ibr_plants.pbo — unknown

    17:52:01 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_plants.pbo — unknown

    17:52:01 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_terrains_core.pbo — unknown

    17:52:01 D:SteamsteamappscommonArma 3 Server@CupCoreaddonscup_terrains_worlds.pbo — unknown

    17:52:01 D:SteamsteamappscommonArma 3 Server@Exileaddonsdbo_old_bike.pbo — unknown

    17:52:01 D:SteamsteamappscommonArma 3 Server@Exileaddonsexile_assets.pbo — unknown

    17:52:01 D:SteamsteamappscommonArma 3 Server@Exileaddonsexile_client.pbo — unknown

    17:52:01 D:SteamsteamappscommonArma 3 Server@Exileaddonsexile_psycho_an2.pbo — unknown

    17:52:01 D:SteamsteamappscommonArma 3 Server@Exileaddonsexile_psycho_brdm.pbo — unknown

    17:52:01 D:SteamsteamappscommonArma 3 Server@Exileaddonsexile_psycho_btr40.pbo — unknown

    17:52:01 D:SteamsteamappscommonArma 3 Server@Exileaddonsexile_psycho_gaz_volha.pbo — unknown

    17:52:01 D:SteamsteamappscommonArma 3 Server@Exileaddonsexile_psycho_hmmw.pbo — unknown

    17:52:01 D:SteamsteamappscommonArma 3 Server@Exileaddonsexile_psycho_ikarus.pbo — unknown

    17:52:01 D:SteamsteamappscommonArma 3 Server@Exileaddonsexile_psycho_lada.pbo — unknown

    17:52:01 D:SteamsteamappscommonArma 3 Server@Exileaddonsexile_psycho_lrc.pbo — unknown

    17:52:01 D:SteamsteamappscommonArma 3 Server@Exileaddonsexile_psycho_octavia.pbo — unknown

    17:52:01 D:SteamsteamappscommonArma 3 Server@Exileaddonsexile_psycho_suvarm_a3.pbo — unknown

    17:52:01 D:SteamsteamappscommonArma 3 Server@Exileaddonsexile_psycho_suv_a3.pbo — unknown

    17:52:01 D:SteamsteamappscommonArma 3 Server@Exileaddonsexile_psycho_towtractor.pbo — unknown

    17:52:01 D:SteamsteamappscommonArma 3 Server@Exileaddonsexile_psycho_tractor.pbo — unknown

    17:52:01 D:SteamsteamappscommonArma 3 Server@Exileaddonsexile_psycho_uaz.pbo — unknown

    17:52:01 D:SteamsteamappscommonArma 3 Server@Exileaddonsexile_psycho_uh1h.pbo — unknown

    17:52:01 D:SteamsteamappscommonArma 3 Server@Exileaddonsexile_psycho_ural.pbo — unknown

    17:52:01 D:SteamsteamappscommonArma 3 Server@Exileaddonsexile_psycho_v3s.pbo — unknown

    17:52:01 D:SteamsteamappscommonArma 3 Server@Exileaddonsexile_psycho_vwgolf.pbo — unknown

    17:52:01 D:SteamsteamappscommonArma 3 Server@Exileaddonsexile_psycho_weapons.pbo — unknown

    17:52:01 D:SteamsteamappscommonArma 3 Server@Exileaddonsgnt_c185.pbo — unknown

    17:52:01 D:SteamsteamappscommonArma 3 Serverexpansionaddonsair_f_exp.ebo — 107468

    17:52:01 D:SteamsteamappscommonArma 3 Serverexpansionaddonsanims_f_exp.ebo — 107365

    17:52:01 D:SteamsteamappscommonArma 3 Serverexpansionaddonsarmor_f_exp.ebo — 107282

    17:52:01 D:SteamsteamappscommonArma 3 Serverexpansionaddonsboat_f_exp.ebo — 107282

    17:52:01 D:SteamsteamappscommonArma 3 Serverexpansionaddonscargoposes_f_exp.ebo — 107282

    17:52:01 D:SteamsteamappscommonArma 3 Serverexpansionaddonscharacters_f_exp.ebo — 108363

    17:52:01 D:SteamsteamappscommonArma 3 Serverexpansionaddonsdata_f_exp.ebo — 108301

    17:52:01 D:SteamsteamappscommonArma 3 Serverexpansionaddonsdubbing_f_exp.ebo — 107941

    17:52:01 D:SteamsteamappscommonArma 3 Serverexpansionaddonsdubbing_radio_f_exp.ebo — 107282

    17:52:01 D:SteamsteamappscommonArma 3 Serverexpansionaddonsdubbing_radio_f_exp_data_chi.ebo — 107282

    17:52:01 D:SteamsteamappscommonArma 3 Serverexpansionaddonsdubbing_radio_f_exp_data_engfre.ebo — 107282

    17:52:01 D:SteamsteamappscommonArma 3 Serverexpansionaddonsdubbing_radio_f_exp_data_fre.ebo — 107282

    17:52:01 D:SteamsteamappscommonArma 3 Serverexpansionaddonseditorpreviews_f_exp.ebo — 107282

    17:52:01 D:SteamsteamappscommonArma 3 Serverexpansionaddonsfunctions_f_exp.ebo — 107286

    17:52:01 D:SteamsteamappscommonArma 3 Serverexpansionaddonslanguagemissions_f_exp.ebo — 108412

    17:52:01 D:SteamsteamappscommonArma 3 Serverexpansionaddonslanguage_f_exp.ebo — 108412

    17:52:01 D:SteamsteamappscommonArma 3 Serverexpansionaddonsmap_data_exp.ebo — 107347

    17:52:01 D:SteamsteamappscommonArma 3 Serverexpansionaddonsmap_tanoabuka.ebo — 107523

    17:52:01 D:SteamsteamappscommonArma 3 Serverexpansionaddonsmap_tanoabuka_data.ebo — 107664

    17:52:01 D:SteamsteamappscommonArma 3 Serverexpansionaddonsmap_tanoabuka_data_layers.ebo — 102461

    17:52:01 D:SteamsteamappscommonArma 3 Serverexpansionaddonsmap_tanoabuka_data_layers_00_00.ebo — 102461

    17:52:01 D:SteamsteamappscommonArma 3 Serverexpansionaddonsmap_tanoa_scenes_f.ebo — 108093

    17:52:01 D:SteamsteamappscommonArma 3 Serverexpansionaddonsmissions_f_exp.ebo — 108540

    17:52:01 D:SteamsteamappscommonArma 3 Serverexpansionaddonsmissions_f_exp_data.ebo — 107312

    17:52:01 D:SteamsteamappscommonArma 3 Serverexpansionaddonsmissions_f_exp_video.ebo — 107312

    17:52:01 D:SteamsteamappscommonArma 3 Serverexpansionaddonsmodules_f_exp.ebo — 107313

    17:52:01 D:SteamsteamappscommonArma 3 Serverexpansionaddonsmusic_f_exp.ebo — 107313

    17:52:01 D:SteamsteamappscommonArma 3 Serverexpansionaddonsmusic_f_exp_music.ebo — 107313

    17:52:01 D:SteamsteamappscommonArma 3 Serverexpansionaddonsprops_f_exp.ebo — 107345

    17:52:01 D:SteamsteamappscommonArma 3 Serverexpansionaddonsrocks_f_exp.ebo — 107345

    17:52:01 D:SteamsteamappscommonArma 3 Serverexpansionaddonssoft_f_exp.ebo — 107317

    17:52:01 D:SteamsteamappscommonArma 3 Serverexpansionaddonssounds_f_exp.ebo — 108279

    17:52:01 D:SteamsteamappscommonArma 3 Serverexpansionaddonsstatic_f_exp.ebo — 107319

    17:52:01 D:SteamsteamappscommonArma 3 Serverexpansionaddonsstructures_f_exp.ebo — 108329

    17:52:01 D:SteamsteamappscommonArma 3 Serverexpansionaddonsstructures_f_exp_civilian.ebo — 108280

    17:52:01 D:SteamsteamappscommonArma 3 Serverexpansionaddonsstructures_f_exp_commercial.ebo — 108280

    17:52:01 D:SteamsteamappscommonArma 3 Serverexpansionaddonsstructures_f_exp_cultural.ebo — 108280

    17:52:01 D:SteamsteamappscommonArma 3 Serverexpansionaddonsstructures_f_exp_data.ebo — 108281

    17:52:01 D:SteamsteamappscommonArma 3 Serverexpansionaddonsstructures_f_exp_industrial.ebo — 108281

    17:52:01 D:SteamsteamappscommonArma 3 Serverexpansionaddonsstructures_f_exp_infrastructure.ebo — 108281

    17:52:01 D:SteamsteamappscommonArma 3 Serverexpansionaddonssupplies_f_exp.ebo — 107340

    17:52:01 D:SteamsteamappscommonArma 3 Serverexpansionaddonsui_f_exp.ebo — 107323

    17:52:01 D:SteamsteamappscommonArma 3 Serverexpansionaddonsvegetation_f_exp.ebo — 107836

    17:52:01 D:SteamsteamappscommonArma 3 Serverexpansionaddonsweapons_f_exp.ebo — 108316

    17:52:01 D:SteamsteamappscommonArma 3 Servermarkaddonsanims_f_mark.pbo — 107808

    17:52:01 D:SteamsteamappscommonArma 3 Servermarkaddonscharacters_f_mark.pbo — 107709

    17:52:01 D:SteamsteamappscommonArma 3 Servermarkaddonsdata_f_mark.pbo — 107282

    17:52:01 D:SteamsteamappscommonArma 3 Servermarkaddonsdubbing_f_mark.pbo — 107282

    17:52:01 D:SteamsteamappscommonArma 3 Servermarkaddonsdubbing_f_mp_mark.pbo — 107282

    17:52:01 D:SteamsteamappscommonArma 3 Servermarkaddonsfunctions_f_mark.pbo — 107941

    17:52:01 D:SteamsteamappscommonArma 3 Servermarkaddonsfunctions_f_mp_mark.pbo — 107463

    17:52:01 D:SteamsteamappscommonArma 3 Servermarkaddonslanguagemissions_f_mark.pbo — 108412

    17:52:01 D:SteamsteamappscommonArma 3 Servermarkaddonslanguagemissions_f_mp_mark.pbo — 108412

    17:52:01 D:SteamsteamappscommonArma 3 Servermarkaddonslanguage_f_mark.pbo — 108412

    17:52:01 D:SteamsteamappscommonArma 3 Servermarkaddonslanguage_f_mp_mark.pbo — 108412

    17:52:01 D:SteamsteamappscommonArma 3 Servermarkaddonsmissions_f_mark.pbo — 108474

    17:52:01 D:SteamsteamappscommonArma 3 Servermarkaddonsmissions_f_mark_data.pbo — 107313

    17:52:01 D:SteamsteamappscommonArma 3 Servermarkaddonsmissions_f_mark_video.pbo — 107313

    17:52:01 D:SteamsteamappscommonArma 3 Servermarkaddonsmissions_f_mp_mark.pbo — 107336

    17:52:01 D:SteamsteamappscommonArma 3 Servermarkaddonsmissions_f_mp_mark_data.pbo — 107313

    17:52:01 D:SteamsteamappscommonArma 3 Servermarkaddonsmodules_f_mark.pbo — 107313

    17:52:01 D:SteamsteamappscommonArma 3 Servermarkaddonsmodules_f_mp_mark.pbo — 107313

    17:52:01 D:SteamsteamappscommonArma 3 Servermarkaddonsmusic_f_mark.pbo — 107313

    17:52:01 D:SteamsteamappscommonArma 3 Servermarkaddonsmusic_f_mark_music.pbo — 107313

    17:52:01 D:SteamsteamappscommonArma 3 Servermarkaddonssounds_f_mark.pbo — 107319

    17:52:01 D:SteamsteamappscommonArma 3 Servermarkaddonsstatic_f_mark.pbo — 107319

    17:52:01 D:SteamsteamappscommonArma 3 Servermarkaddonsstructures_f_mark.pbo — 107742

    17:52:01 D:SteamsteamappscommonArma 3 Servermarkaddonssupplies_f_mark.pbo — 107320

    17:52:01 D:SteamsteamappscommonArma 3 Servermarkaddonsui_f_mark.pbo — 107323

    17:52:01 D:SteamsteamappscommonArma 3 Servermarkaddonsui_f_mp_mark.pbo — 107323

    17:52:01 D:SteamsteamappscommonArma 3 Servermarkaddonsweapons_f_mark.pbo — 107324

    17:52:01 D:SteamsteamappscommonArma 3 Serverheliaddonsair_f_heli.pbo — 107282

    17:52:01 D:SteamsteamappscommonArma 3 Serverheliaddonsanims_f_heli.pbo — 107282

    17:52:01 D:SteamsteamappscommonArma 3 Serverheliaddonsboat_f_heli.pbo — 107282

    17:52:01 D:SteamsteamappscommonArma 3 Serverheliaddonscargoposes_f_heli.pbo — 107282

    17:52:01 D:SteamsteamappscommonArma 3 Serverheliaddonsdata_f_heli.pbo — 107282

    17:52:01 D:SteamsteamappscommonArma 3 Serverheliaddonsdubbing_f_heli.pbo — 107282

    17:52:01 D:SteamsteamappscommonArma 3 Serverheliaddonsfunctions_f_heli.pbo — 108304

    17:52:01 D:SteamsteamappscommonArma 3 Serverheliaddonslanguagemissions_f_heli.pbo — 108412

    17:52:01 D:SteamsteamappscommonArma 3 Serverheliaddonslanguage_f_heli.pbo — 108412

    17:52:01 D:SteamsteamappscommonArma 3 Serverheliaddonsmissions_f_heli.pbo — 108304

    17:52:01 D:SteamsteamappscommonArma 3 Serverheliaddonsmissions_f_heli_data.pbo — 107312

    17:52:01 D:SteamsteamappscommonArma 3 Serverheliaddonsmissions_f_heli_video.pbo — 107312

    17:52:01 D:SteamsteamappscommonArma 3 Serverheliaddonsmodules_f_heli.pbo — 107386

    17:52:01 D:SteamsteamappscommonArma 3 Serverheliaddonsmusic_f_heli.pbo — 107313

    17:52:01 D:SteamsteamappscommonArma 3 Serverheliaddonsmusic_f_heli_music.pbo — 107313

    17:52:01 D:SteamsteamappscommonArma 3 Serverheliaddonssoft_f_heli.pbo — 107319

    17:52:01 D:SteamsteamappscommonArma 3 Serverheliaddonssounds_f_heli.pbo — 107319

    17:52:01 D:SteamsteamappscommonArma 3 Serverheliaddonsstructures_f_heli.pbo — 107302

    17:52:01 D:SteamsteamappscommonArma 3 Serverheliaddonssupplies_f_heli.pbo — 107319

    17:52:01 D:SteamsteamappscommonArma 3 Serverheliaddonsui_f_heli.pbo — 107323

    17:52:01 D:SteamsteamappscommonArma 3 Serverkartaddonsanims_f_kart.pbo — 107282

    17:52:01 D:SteamsteamappscommonArma 3 Serverkartaddonscharacters_f_kart.pbo — 107282

    17:52:01 D:SteamsteamappscommonArma 3 Serverkartaddonsdata_f_kart.pbo — 107282

    17:52:01 D:SteamsteamappscommonArma 3 Serverkartaddonslanguagemissions_f_kart.pbo — 108412

    17:52:01 D:SteamsteamappscommonArma 3 Serverkartaddonslanguage_f_kart.pbo — 108412

    17:52:01 D:SteamsteamappscommonArma 3 Serverkartaddonsmissions_f_kart.pbo — 107312

    17:52:01 D:SteamsteamappscommonArma 3 Serverkartaddonsmissions_f_kart_data.pbo — 107313

    17:52:01 D:SteamsteamappscommonArma 3 Serverkartaddonsmodules_f_kart.pbo — 107824

    17:52:01 D:SteamsteamappscommonArma 3 Serverkartaddonsmodules_f_kart_data.pbo — 107725

    17:52:01 D:SteamsteamappscommonArma 3 Serverkartaddonssoft_f_kart.pbo — 107319

    17:52:01 D:SteamsteamappscommonArma 3 Serverkartaddonssounds_f_kart.pbo — 107319

    17:52:01 D:SteamsteamappscommonArma 3 Serverkartaddonsstructures_f_kart.pbo — 107301

    17:52:01 D:SteamsteamappscommonArma 3 Serverkartaddonsui_f_kart.pbo — 107323

    17:52:01 D:SteamsteamappscommonArma 3 Serverkartaddonsweapons_f_kart.pbo — 107323

    17:52:01 D:SteamsteamappscommonArma 3 Servercuratoraddonsdata_f_curator.pbo — 107282

    17:52:01 D:SteamsteamappscommonArma 3 Servercuratoraddonsdata_f_curator_music.pbo — 107282

    17:52:01 D:SteamsteamappscommonArma 3 Servercuratoraddonsfunctions_f_curator.pbo — 107463

    17:52:01 D:SteamsteamappscommonArma 3 Servercuratoraddonslanguage_f_curator.pbo — 108412

    17:52:01 D:SteamsteamappscommonArma 3 Servercuratoraddonsmissions_f_curator.pbo — 108031

    17:52:01 D:SteamsteamappscommonArma 3 Servercuratoraddonsmodules_f_curator.pbo — 107711

    17:52:01 D:SteamsteamappscommonArma 3 Servercuratoraddonsui_f_curator.pbo — 108279

    17:52:01 D:SteamsteamappscommonArma 3 Server@ExileServeraddonsexile_server.pbo — unknown

    17:52:01 D:SteamsteamappscommonArma 3 Server@ExileServeraddonsexile_server_config.pbo — unknown

    17:52:01 addons3den.pbo — 108458

    17:52:01 addons3den_language.pbo — 108412

    17:52:01 addonsa3.pbo — unknown

    17:52:01 addonsair_f.pbo — 107282

    17:52:01 addonsair_f_beta.pbo — 108458

    17:52:01 addonsair_f_epb.pbo — 107282

    17:52:01 addonsair_f_epc.pbo — 103749

    17:52:01 addonsair_f_gamma.pbo — 103749

    17:52:01 addonsanimals_f.pbo — 107282

    17:52:01 addonsanimals_f_beta.pbo — 107282

    17:52:01 addonsanims_f.pbo — 108093

    17:52:01 addonsanims_f_bootcamp.pbo — 107282

    17:52:01 addonsanims_f_data.pbo — 107355

    17:52:01 addonsanims_f_epa.pbo — 107809

    17:52:01 addonsanims_f_epc.pbo — 107809

    17:52:01 addonsanims_f_exp_a.pbo — 107376

    17:52:01 addonsarmor_f.pbo — 107282

    17:52:01 addonsarmor_f_beta.pbo — 107282

    17:52:01 addonsarmor_f_epb.pbo — 107282

    17:52:01 addonsarmor_f_epc.pbo — 107282

    17:52:01 addonsarmor_f_gamma.pbo — 107282

    17:52:01 addonsbaseconfig_f.pbo — 107282

    17:52:01 addonsboat_f.pbo — 107282

    17:52:01 addonsboat_f_beta.pbo — 107282

    17:52:01 addonsboat_f_epc.pbo — 107282

    17:52:01 addonsboat_f_gamma.pbo — 107282

    17:52:01 addonscargoposes_f.pbo — 108093

    17:52:01 addonscharacters_f.pbo — 107558

    17:52:01 addonscharacters_f_beta.pbo — 107282

    17:52:01 addonscharacters_f_bootcamp.pbo — 107282

    17:52:01 addonscharacters_f_epa.pbo — 107282

    17:52:01 addonscharacters_f_epb.pbo — 107282

    17:52:01 addonscharacters_f_epc.pbo — 107282

    17:52:01 addonscharacters_f_gamma.pbo — 107282

    17:52:01 addonsdata_f.pbo — 107354

    17:52:01 addonsdata_f_bootcamp.pbo — 107382

    17:52:01 addonsdata_f_exp_a.pbo — 107282

    17:52:01 addonsdata_f_exp_b.pbo — 107282

    17:52:01 addonsdrones_f.pbo — 107282

    17:52:01 addonsdubbing_f.pbo — 107282

    17:52:01 addonsdubbing_f_beta.pbo — 107941

    17:52:01 addonsdubbing_f_bootcamp.pbo — 107282

    17:52:01 addonsdubbing_f_epa.pbo — 107290

    17:52:01 addonsdubbing_f_epb.pbo — 107290

    17:52:01 addonsdubbing_f_epc.pbo — 107282

    17:52:01 addonsdubbing_f_gamma.pbo — 107458

    17:52:01 addonsdubbing_radio_f.pbo — 107282

    17:52:01 addonsdubbing_radio_f_data_eng.pbo — 99078

    17:52:01 addonsdubbing_radio_f_data_engb.pbo — 99078

    17:52:01 addonsdubbing_radio_f_data_gre.pbo — 99078

    17:52:01 addonsdubbing_radio_f_data_per.pbo — 99078

    17:52:01 addonsdubbing_radio_f_data_vr.pbo — 99078

    17:52:01 addonseditorpreviews_f.pbo — 107285

    17:52:01 addonseditor_f.pbo — 107285

    17:52:01 addonsfunctions_f.pbo — 108329

    17:52:01 addonsfunctions_f_bootcamp.pbo — 107941

    17:52:01 addonsfunctions_f_epa.pbo — 107287

    17:52:01 addonsfunctions_f_epc.pbo — 107287

    17:52:01 addonsfunctions_f_exp_a.pbo — 107985

    17:52:01 addonslanguagemissions_f.pbo — 108412

    17:52:01 addonslanguagemissions_f_beta.pbo — 108412

    17:52:01 addonslanguagemissions_f_bootcamp.pbo — 108412

    17:52:01 addonslanguagemissions_f_epa.pbo — 108412

    17:52:01 addonslanguagemissions_f_epb.pbo — 108412

    17:52:01 addonslanguagemissions_f_epc.pbo — 108412

    17:52:01 addonslanguagemissions_f_exp_a.pbo — 108412

    17:52:01 addonslanguagemissions_f_gamma.pbo — 108412

    17:52:01 addonslanguage_f.pbo — 108423

    17:52:01 addonslanguage_f_beta.pbo — 108412

    17:52:01 addonslanguage_f_bootcamp.pbo — 108412

    17:52:01 addonslanguage_f_epa.pbo — 108412

    17:52:01 addonslanguage_f_epb.pbo — 108412

    17:52:01 addonslanguage_f_epc.pbo — 108412

    17:52:01 addonslanguage_f_exp_a.pbo — 108412

    17:52:01 addonslanguage_f_exp_b.pbo — 108412

    17:52:01 addonslanguage_f_gamma.pbo — 108412

    17:52:01 addonsmap_altis.pbo — 107512

    17:52:01 addonsmap_altis_data.pbo — 107292

    17:52:01 addonsmap_altis_data_layers.pbo — 99901

    17:52:01 addonsmap_altis_data_layers_00_00.pbo — 99901

    17:52:01 addonsmap_altis_data_layers_00_01.pbo — 99901

    17:52:01 addonsmap_altis_data_layers_01_00.pbo — 99901

    17:52:01 addonsmap_altis_data_layers_01_01.pbo — 99901

    17:52:01 addonsmap_altis_scenes_f.pbo — 107292

    17:52:01 addonsmap_data.pbo — 107292

    17:52:01 addonsmap_stratis.pbo — 107508

    17:52:01 addonsmap_stratis_data.pbo — 107294

    17:52:01 addonsmap_stratis_data_layers.pbo — 99082

    17:52:01 addonsmap_stratis_scenes_f.pbo — 107294

    17:52:01 addonsmap_vr.pbo — 105264

    17:52:01 addonsmap_vr_scenes_f.pbo — 107298

    17:52:01 addonsmisc_f.pbo — 107296

    17:52:01 addonsmissions_f.pbo — 107769

    17:52:01 addonsmissions_f_beta.pbo — 107694

    17:52:01 addonsmissions_f_beta_data.pbo — 107310

    17:52:01 addonsmissions_f_beta_video.pbo — 107310

    17:52:01 addonsmissions_f_bootcamp.pbo — 107941

    17:52:01 addonsmissions_f_bootcamp_data.pbo — 107310

    17:52:01 addonsmissions_f_bootcamp_video.pbo — 107310

    17:52:01 addonsmissions_f_data.pbo — 107310

    17:52:01 addonsmissions_f_epa.pbo — 108279

    17:52:01 addonsmissions_f_epa_data.pbo — 107312

    17:52:01 addonsmissions_f_epa_video.pbo — 107312

    17:52:01 addonsmissions_f_epb.pbo — 107312

    17:52:01 addonsmissions_f_epc.pbo — 107312

    17:52:01 addonsmissions_f_exp_a.pbo — 107336

    17:52:01 addonsmissions_f_exp_a_data.pbo — 107312

    17:52:01 addonsmissions_f_gamma.pbo — 108551

    17:52:01 addonsmissions_f_gamma_data.pbo — 107312

    17:52:01 addonsmissions_f_gamma_video.pbo — 107312

    17:52:01 addonsmissions_f_video.pbo — 107313

    17:52:01 addonsmodules_f.pbo — 108152

    17:52:01 addonsmodules_f_beta.pbo — 107313

    17:52:01 addonsmodules_f_beta_data.pbo — 107313

    17:52:01 addonsmodules_f_bootcamp.pbo — 107313

    17:52:01 addonsmodules_f_data.pbo — 107485

    17:52:01 addonsmodules_f_epb.pbo — 107313

    17:52:01 addonsmodules_f_exp_a.pbo — 107313

    17:52:01 addonsmusic_f.pbo — 107313

    17:52:01 addonsmusic_f_bootcamp.pbo — 107313

    17:52:01 addonsmusic_f_bootcamp_music.pbo — 107313

    17:52:01 addonsmusic_f_epa.pbo — 107313

    17:52:01 addonsmusic_f_epa_music.pbo — 107313

    17:52:01 addonsmusic_f_epb.pbo — 107313

    17:52:01 addonsmusic_f_epb_music.pbo — 107313

    17:52:01 addonsmusic_f_epc.pbo — 107313

    17:52:01 addonsmusic_f_epc_music.pbo — 107313

    17:52:01 addonsmusic_f_music.pbo — 107313

    17:52:01 addonsplants_f.pbo — 107313

    17:52:01 addonsprops_f_exp_a.pbo — 107314

    17:52:01 addonsroads_f.pbo — 107314

    17:52:01 addonsrocks_f.pbo — 107314

    17:52:01 addonssigns_f.pbo — 107315

    17:52:01 addonssoft_f.pbo — 107315

    17:52:01 addonssoft_f_beta.pbo — 108019

    17:52:01 addonssoft_f_bootcamp.pbo — 107316

    17:52:01 addonssoft_f_epc.pbo — 107316

    17:52:01 addonssoft_f_gamma.pbo — 108108

    17:52:01 addonssounds_f.pbo — 108279

    17:52:01 addonssounds_f_arsenal.pbo — 108392

    17:52:01 addonssounds_f_bootcamp.pbo — 107319

    17:52:01 addonssounds_f_characters.pbo — 108111

    17:52:01 addonssounds_f_environment.pbo — 107319

    17:52:01 addonssounds_f_epb.pbo — 107319

    17:52:01 addonssounds_f_epc.pbo — 107319

    17:52:01 addonssounds_f_exp_a.pbo — 107319

    17:52:01 addonssounds_f_sfx.pbo — 108279

    17:52:01 addonssounds_f_vehicles.pbo — 107319

    17:52:01 addonsstatic_f.pbo — 107319

    17:52:01 addonsstatic_f_beta.pbo — 107319

    17:52:01 addonsstatic_f_gamma.pbo — 108113

    17:52:01 addonsstructures_f.pbo — 108826

    17:52:01 addonsstructures_f_bootcamp.pbo — 107306

    17:52:01 addonsstructures_f_data.pbo — 107788

    17:52:01 addonsstructures_f_epa.pbo — 107742

    17:52:01 addonsstructures_f_epb.pbo — 107725

    17:52:01 addonsstructures_f_epc.pbo — 107725

    17:52:01 addonsstructures_f_exp_a.pbo — 107301

    17:52:01 addonsstructures_f_households.pbo — 107946

    17:52:01 addonsstructures_f_ind.pbo — 107760

    17:52:01 addonsstructures_f_mil.pbo — 108280

    17:52:01 addonsstructures_f_wrecks.pbo — 107301

    17:52:01 addonsuifonts_f.pbo — 107323

    17:52:01 addonsuifonts_f_data.pbo — 107323

    17:52:01 addonsui_f.pbo — 108456

    17:52:01 addonsui_f_bootcamp.pbo — 107323

    17:52:01 addonsui_f_data.pbo — 108279

    17:52:01 addonsui_f_exp_a.pbo — 107323

    17:52:01 addonsweapons_f.pbo — 108316

    17:52:01 addonsweapons_f_beta.pbo — 108113

    17:52:01 addonsweapons_f_bootcamp.pbo — 107323

    17:52:01 addonsweapons_f_epa.pbo — 107323

    17:52:01 addonsweapons_f_epb.pbo — 107323

    17:52:01 addonsweapons_f_epc.pbo — 107323

    17:52:01 addonsweapons_f_gamma.pbo — 107323

    17:52:01 

    17:52:01 =======================

    17:52:01 

    17:52:01 ============================================================================================= List of mods ===============================================================================================

    17:52:01 modsReadOnly = true

    17:52:01 safeModsActivated = false

    17:52:01 customMods = true

    17:52:01 hash = ‘E49A47DD20FAB390388D516719C59013D3227302’

    17:52:01 hashShort = ‘a43a4921’

    17:52:01                                               name |               modDir |    default |               origin |                                     hash | hashShort | fullPath

    17:52:01 ———————————————————————————————————————————————————————————————————-

    17:52:01                          CUP Terrains — Maps 1.3.0 |             @CupMaps |      false |             GAME DIR | 86e1917c44863c25b6c5209aa489989bb47f3bcf |  917b8b3a | D:SteamsteamappscommonArma 3 Server@CupMaps

    17:52:01                          CUP Terrains — Core 1.3.0 |             @CupCore |      false |             GAME DIR | ca3d60bae5866bda3a7a96855e78e75596958ec2 |  b16873f1 | D:SteamsteamappscommonArma 3 Server@CupCore

    17:52:01                                          Exile Mod |               @Exile |      false |             GAME DIR | 26ccfa84adad060158d785e4b25ef410c85f9c6f |  62008bc7 | D:SteamsteamappscommonArma 3 Server@Exile

    17:52:01                                  Arma 3 DLC Bundle |            dlcbundle |       true |            NOT FOUND |                                          |           | 

    17:52:01                                        Arma 3 Apex |            expansion |       true |             GAME DIR | 889deca7b67b3edca0b2da51a5318a40167757dd |  c794d30d | D:SteamsteamappscommonArma 3 Serverexpansion

    17:52:01                                    Arma 3 Marksmen |                 mark |       true |             GAME DIR | 7129193541b9133ea1bea45441e244eb180cbfe7 |  58644447 | D:SteamsteamappscommonArma 3 Servermark

    17:52:01                                 Arma 3 Helicopters |                 heli |       true |             GAME DIR | 037b8a52dea414a8999d947ae74a01089ef1178e |  6b140d2c | D:SteamsteamappscommonArma 3 Serverheli

    17:52:01                                       Arma 3 Karts |                 kart |       true |             GAME DIR | 9b8fdc1c10171397e45e8a671074d3b570c758a9 |  a5c8c24c | D:SteamsteamappscommonArma 3 Serverkart

    17:52:01                                        Arma 3 Zeus |              curator |       true |             GAME DIR | e3578d1509f22cc901180ed73925c9d766cdc84c |  e6c7fc7b | D:SteamsteamappscommonArma 3 Servercurator

    17:52:01                                             Arma 3 |                   A3 |       true |            NOT FOUND |                                          |           | 

    17:52:01                                       @ExileServer |         @ExileServer |      false |             GAME DIR | da39a3ee5e6b4b0d3255bfef95601890afd80709 |  11fdd19c | D:SteamsteamappscommonArma 3 Server@ExileServer

    17:52:01 ==========================================================================================================================================================================================================

    17:52:01 InitSound …

    17:52:01 InitSound — complete

    17:52:01 PhysX3 SDK Init started …

    17:52:01 PhysX3 SDK Init ended.

    17:52:04 Attempt to override final function — rscminimap_script

    17:52:04 Attempt to override final function — rscdisplayloading_script

    17:52:04 Attempt to override final function — rscdiary_script

    17:52:04 Attempt to override final function — rscdiary_script

    17:52:05 Attempt to override final function — rscdisplayremotemissions_script

    17:52:05 Attempt to override final function — rscdiary_script

    17:52:05 Attempt to override final function — rscdiary_script

    17:52:05 Attempt to override final function — rscdisplaystrategicmap_script

    17:52:05 Attempt to override final function — rscdisplaycommon_script

    17:52:05 Attempt to override final function — rscdisplaygarage_script

    17:52:05 Attempt to override final function — rscdisplayhostsettings_script

    17:52:05 Attempt to override final function — rscdisplayloading_script

    17:52:06 Attempt to override final function — rscdisplaycurator_script

    17:52:06 Attempt to override final function — display3deneditcomposition_script

    17:52:06 Attempt to override final function — display3deneditattributes_script

    17:52:06 Attempt to override final function — display3deneditattributes_script

    17:52:06 Attempt to override final function — rscdisplayhostsettings_script

    17:52:06 Attempt to override final function — rscdisplaycommon_script

    17:52:06 Attempt to override final function — rscdisplaydebriefing_script

    17:52:06 Attempt to override final function — rscunitinfo_script

    17:52:06 Attempt to override final function — rscunitinfo_script

    17:52:06 Attempt to override final function — rscunitinfo_script

    17:52:06 Attempt to override final function — rscunitinfo_script

    17:52:06 Attempt to override final function — rscunitinfo_script

    17:52:06 Attempt to override final function — rscunitinfo_script

    17:52:06 Attempt to override final function — rscunitinfo_script

    17:52:06 Attempt to override final function — rscunitinfo_script

    17:52:06 Attempt to override final function — rscunitinfo_script

    17:52:06 Attempt to override final function — rscunitinfo_script

    17:52:06 Attempt to override final function — rscunitinfo_script

    17:52:06 Attempt to override final function — rscunitinfo_script

    17:52:06 Attempt to override final function — rscunitinfo_script

    17:52:06 Attempt to override final function — rscunitinfo_script

    17:52:06 Attempt to override final function — rscunitinfo_script

    17:52:06 Attempt to override final function — rscunitinfo_script

    17:52:06 Attempt to override final function — rscunitinfo_script

    17:52:06 Attempt to override final function — rscunitinfo_script

    17:52:06 Attempt to override final function — rscunitinfo_script

    17:52:06 Attempt to override final function — rscunitinfo_script

    17:52:06 Attempt to override final function — rscunitinfo_script

    17:52:06 Attempt to override final function — rscunitinfo_script

    17:52:06 Attempt to override final function — rscunitinfo_script

    17:52:06 Attempt to override final function — rscunitinfo_script

    17:52:06 Attempt to override final function — rscunitinfo_script

    17:52:06 Attempt to override final function — rscunitinfo_script

    17:52:06 Attempt to override final function — rscunitinfo_script

    17:52:06 Attempt to override final function — rscunitinfo_script

    17:52:06 Attempt to override final function — rscunitinfo_script

    17:52:06 Attempt to override final function — rscunitinfo_script

    17:52:06 Attempt to override final function — rscunitinfo_script

    17:52:06 Attempt to override final function — rscunitinfo_script

    17:52:06 Attempt to override final function — rscunitinfo_script

    17:52:06 Attempt to override final function — rscunitinfo_script

    17:52:06 Attempt to override final function — rscunitinfo_script

    17:52:06 Attempt to override final function — rscunitinfo_script

    17:52:06 Attempt to override final function — rscunitinfo_script

    17:52:06 Attempt to override final function — rscunitinfo_script

    17:52:06 Attempt to override final function — rscunitinfo_script

    17:52:06 Attempt to override final function — rscunitinfo_script

    17:52:06 Attempt to override final function — rscunitinfo_script

    17:52:06 Attempt to override final function — rscunitinfo_script

    17:52:06 Attempt to override final function — rscunitinfo_script

    17:52:06 Attempt to override final function — rscunitinfo_script

    17:52:06 Attempt to override final function — rscunitinfo_script

    17:52:06 Attempt to override final function — rscunitinfo_script

    17:52:06 Attempt to override final function — rscunitinfo_script

    17:52:06 Attempt to override final function — rscunitinfo_script

    17:52:06 Attempt to override final function — rscunitinfo_script

    17:52:06 Attempt to override final function — rscunitinfo_script

    17:52:06 Attempt to override final function — rscunitinfo_script

    17:52:06 Attempt to override final function — rscunitinfo_script

    17:52:06 Attempt to override final function — rscunitinfo_script

    17:52:06 Attempt to override final function — rscunitinfo_script

    17:52:06 Attempt to override final function — rscunitinfo_script

    17:52:06 Attempt to override final function — rscunitinfo_script

    17:52:06 Attempt to override final function — rscunitinfo_script

    17:52:06 Attempt to override final function — rscunitinfo_script

    17:52:06 Attempt to override final function — rscunitinfo_script

    17:52:06 Attempt to override final function — rscunitinfo_script

    17:52:06 Attempt to override final function — rscunitinfo_script

    17:52:09 Warning Message: You cannot play/edit this mission; it is dependent on downloadable content that has been deleted.

    a3_characters_f

    17:52:09 Loading movesType CfgGesturesMale

    17:52:09 Creating action map cache

    17:52:09 Error: Bone cheek_lf doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone nose_tip doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone lip_uplb doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone jaw_ls doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone lip_uplf doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone lip_lc doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone lip_lwlb doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone lip_lwlf doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone jaw_lm doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone zig_lb doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone lip_lwm doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone lip_upm doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone ear_l doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone corr doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone tongue_m doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone tongue_f doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone eyebrow_lb doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone eyebrow_lf doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone eyebrow_lm doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone zig_lm doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone eye_upl doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone eye_lwl doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone cheek_l doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone cheek_lb doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone zig_lt doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone nose_l doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone cheek_lm doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone nose_r doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone forehead_r doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone forehead_m doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone forehead_l doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone cheek_rb doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone eye_lwr doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone cheek_r doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone zig_rt doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone zig_rm doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone cheek_rf doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone cheek_rm doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone eyebrow_rm doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone eyebrow_rf doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone eye_upr doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone eyebrow_rb doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone tongue_b doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone ear_r doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone neck_l doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone lip_uprf doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone neck_r doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone lip_uprb doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone lip_rc doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone lip_lwrb doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone lip_lwrf doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone neck_b doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone zig_rb doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone neck_t doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone jaw_rf doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone jaw_lf doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone chin doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone jaw_rm doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone jaw_rs doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone jaw doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone headcutscene doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone cheek_lf doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone nose_tip doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone lip_uplb doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone jaw_ls doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone lip_uplf doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone lip_lc doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone lip_lwlb doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone lip_lwlf doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone jaw_lm doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone zig_lb doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone lip_lwm doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone lip_upm doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone ear_l doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone corr doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone tongue_m doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone tongue_f doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone eyebrow_lb doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone eyebrow_lf doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone eyebrow_lm doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone zig_lm doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone eye_upl doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone eye_lwl doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone cheek_l doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone cheek_lb doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone zig_lt doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone nose_l doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone cheek_lm doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone nose_r doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone forehead_r doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone forehead_m doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone forehead_l doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:09 Error: Bone cheek_rb doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:10 Error: Bone eye_lwr doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:10 Error: Bone cheek_r doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:10 Error: Bone zig_rt doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:10 Error: Bone zig_rm doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:10 Error: Bone cheek_rf doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:10 Error: Bone cheek_rm doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:10 Error: Bone eyebrow_rm doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:10 Error: Bone eyebrow_rf doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:10 Error: Bone eye_upr doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:10 Error: Bone eyebrow_rb doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:10 Error: Bone tongue_b doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:10 Error: Bone ear_r doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:10 Error: Bone neck_l doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:10 Error: Bone lip_uprf doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:10 Error: Bone neck_r doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:10 Error: Bone lip_uprb doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:10 Error: Bone lip_rc doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:10 Error: Bone lip_lwrb doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:10 Error: Bone lip_lwrf doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:10 Error: Bone neck_b doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:10 Error: Bone zig_rb doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:10 Error: Bone neck_t doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:10 Error: Bone jaw_rf doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:10 Error: Bone jaw_lf doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:10 Error: Bone chin doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:10 Error: Bone jaw_rm doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:10 Error: Bone jaw_rs doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:10 Error: Bone jaw doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:10 Error: Bone headcutscene doesn’t exist in skeleton OFP2_ManSkeleton

    17:52:10 MovesType CfgGesturesMale load time 425 ms

    17:52:10 Loading movesType CfgMovesMaleSdr

    17:52:10 Reading cached action map data

    17:52:15 Warning: looped for animation: a3anims_f_epadataanimsdrctshubcleanedsittingchairhubsittingchaira_idle1.rtm differs (looped now 1)! MoveName: exile_roulettesitting01

    17:52:16 MovesType CfgMovesMaleSdr load time 6154 ms

    17:52:17 VoteThreshold must be in 0..1 range. Defaulting to 0.5

    17:52:17 Initializing Steam server — Game Port: 2302, Steam Query Port: 2303

    17:52:17 Steam AppId in current environment: 107410

    17:52:18 Starting mission:

    17:52:18  Mission file: Exile (__cur_mp)

    17:52:18  Mission world: Chernarus

    17:52:18  Mission directory: mpmissions__cur_mp.Chernarus

    17:52:58 Attempt to override final function — bis_functions_list

    17:52:58 Attempt to override final function — bis_functions_listpreinit

    17:52:58 Attempt to override final function — bis_functions_listpostinit

    17:52:58 Attempt to override final function — bis_functions_listrecompile

    17:52:58 «Exile/BIS_fnc_log: [bIS_fnc_preload] —— Initializing scripts in Exile ——«

    17:52:58 «Exile/BIS_fnc_log: [recompile] recompile BIS_fnc_missionTasksLocal»

    17:52:58 Attempt to override final function — bis_fnc_missiontaskslocal

    17:52:58 «Exile/BIS_fnc_log: [recompile] recompile BIS_fnc_missionConversationsLocal»

    17:52:58 Attempt to override final function — bis_fnc_missionconversationslocal

    17:52:58 «Exile/BIS_fnc_log: [recompile] recompile BIS_fnc_missionFlow»

    17:52:58 Attempt to override final function — bis_fnc_missionflow

    17:52:58 «Exile/BIS_fnc_log: [preInit] BIS_fnc_feedbackMain (0 ms)»

    17:52:58 «Exile/BIS_fnc_log: [preInit] BIS_fnc_missionHandlers (0 ms)»

    17:52:58 «Exile/BIS_fnc_log: [preInit] BIS_fnc_getServerVariable (0 ms)»

    17:52:59 «Exile/BIS_fnc_log: [preInit] ExileClient_fnc_preInit (326.004 ms)»

    17:52:59 Could not load ‘FixesTraderFixesExileServer_system_trading_network_purchaseVehicleRequest’. Extension not listed in allowedPreprocessFileExtensions

    17:52:59 «ExileServer — Server is loading…»

    17:52:59 Client: Nonnetwork object 33716800.

    17:53:00 «ExileServer — Installed extDB2 version: 70»

    17:53:00 «ExileServer — Connected to database!»

    17:53:00 «ExileServer — Database protocol initialized!»

    17:53:00 «Exile/BIS_fnc_log: [preInit] ExileServer_fnc_preInit (1305.01 ms)»

    17:53:00 Connected to Steam servers

    17:53:00 «Exile/BIS_fnc_log: [script] initServer.sqf»

    17:53:00 «Exile/BIS_fnc_log: [postInit] BIS_fnc_missionFlow (0 ms)»

    17:53:00 «Exile/BIS_fnc_log: [postInit] BIS_fnc_initParams (1.00708 ms)»

    17:53:00 «Exile/BIS_fnc_log: [postInit] BIS_fnc_initRespawn (0 ms)»

    17:53:00 «Exile/BIS_fnc_log: [postInit] CUP_fnc_emissiveLights (0 ms)»

    17:53:00 «Exile/BIS_fnc_log: [postInit] BIS_fnc_reviveInit (0 ms)»

    17:53:00 «Exile/BIS_fnc_log: [postInit] ExileClient_fnc_postInit (0 ms)»

    17:53:00 «ExileServer — Job with handle 10000 added.»

    17:53:00 «ExileServer — Job with handle 10001 added.»

    17:53:00 «ExileServer — Job with handle 10002 added.»

    17:53:00 «ExileServer — Job with handle 10003 added.»

    17:53:00 Weather was forced to change

    17:53:00 «ExileServer — Job with handle 10004 added.»

    17:53:00 «ExileServer — Job with handle 10005 added.»

    17:53:00 «ExileServer — Initializing game world…»

    17:53:00 «ExileServer — Loading families from database…»

    17:53:00 «ExileServer — Database Error: Error Statement Exception»

    17:53:00 Error in expression < to _numberOfClans — 1 do 

    {

    ((_clanIDs select _i) select 0) call ExileServer_sy>

    17:53:00   Error position: <select _i) select 0) call ExileServer_sy>

    17:53:00   Error Generic error in expression

    17:53:00 File exile_servercodeExileServer_world_loadAllClans.sqf, line 25

    17:53:00 c:wstablefuturalibnetworknetworkserver.cpp NetworkServer::OnClientStateChanged:NOT IMPLEMENTED — briefing!

    17:53:00  Mission id: fa9ad4b9a9ccd31953d24be8bcdef10ea210814f

    17:53:05 Warn: Shape ‘???’ contains water texture however it does not carry a special class name. Consider craeting one to speed up the detection!

    17:53:06 Cannot create non-ai vehicle Land_Jbad_Lamp_Street2,

    17:53:06 Cannot create non-ai vehicle Land_Jbad_Lamp_Street2,

    17:53:06 Cannot create non-ai vehicle Land_Jbad_Lamp_Street2,

    17:53:06 Cannot create non-ai vehicle Land_Jbad_Lamp_Street2,

    17:53:06 Cannot create non-ai vehicle Land_Jbad_Lamp_Street2,

    17:53:06 Cannot create non-ai vehicle Land_Jbad_Lamp_Street2,

    17:53:06 Cannot create non-ai vehicle Land_Jbad_Lamp_Street2,

    17:53:06 Cannot create non-ai vehicle Land_Jbad_Lamp_Street2,

    17:53:06 Cannot create non-ai vehicle Land_Jbad_Lamp_Street2,

    17:53:06 Cannot create non-ai vehicle Land_Jbad_Lamp_Street2,

    17:53:06 Warning Message: You cannot play/edit this mission; it is dependent on downloadable content that has been deleted.

    cup_castructures_e_housec

    17:53:08 Cannot create non-ai vehicle Land_Jbad_Lamp_Street2,

    17:53:08 Cannot create non-ai vehicle Land_Jbad_Lamp_Street2,

    17:53:08 Cannot create non-ai vehicle Land_Jbad_Lamp_Street2,

    17:53:08 Cannot create non-ai vehicle Land_Jbad_Lamp_Street2,

    17:53:08 Cannot create non-ai vehicle Land_Jbad_Lamp_Street2,

    17:53:08 Cannot create non-ai vehicle Land_Jbad_Lamp_Street2,

    17:53:08 Cannot create non-ai vehicle Land_Jbad_Lamp_Street2,

    17:53:08 Cannot create non-ai vehicle Land_Jbad_Lamp_Street2,

    17:53:08 Cannot create non-ai vehicle Land_Jbad_Lamp_Street2,

    17:53:08 Cannot create non-ai vehicle Land_Jbad_Lamp_Street2,

    17:53:11 Cannot create non-ai vehicle Land_Jbad_Lamp_Street1,

    17:53:11 Cannot create non-ai vehicle Land_Jbad_Lamp_Street1,

    17:53:11 Cannot create non-ai vehicle Land_Jbad_Lamp_Street2,

    17:53:11 Cannot create non-ai vehicle Land_Jbad_Lamp_Street2,

    17:53:11 Cannot create non-ai vehicle Land_Jbad_Lamp_Street2,

    17:53:11 Cannot create non-ai vehicle Land_Jbad_Lamp_Street2,

    17:53:11 Warning Message: You cannot play/edit this mission; it is dependent on downloadable content that has been deleted.

    cup_cabuildings2_misc_cargo

    17:53:11 Cannot create non-ai vehicle Land_Jbad_Lamp_Street1,

    17:53:11 Cannot create non-ai vehicle Land_Jbad_Lamp_Street1,

    17:53:11 Cannot create non-ai vehicle Land_Jbad_Lamp_Street1,

    17:53:11 Cannot create non-ai vehicle Land_Jbad_Lamp_Street1,

    17:53:11 Cannot create non-ai vehicle Land_Jbad_Lamp_Street1,

    17:53:11 Cannot create non-ai vehicle Land_Jbad_Lamp_Street1,

    17:53:11 Cannot create non-ai vehicle Land_Jbad_Lamp_Street1,

    17:53:11 Cannot create non-ai vehicle Land_Jbad_Lamp_Street1,

    17:53:11 Cannot create non-ai vehicle Land_Jbad_Lamp_Street1,

    17:53:11 Cannot create non-ai vehicle Land_Jbad_Lamp_Street1,

    17:53:11 Cannot create non-ai vehicle Land_Jbad_Lamp_Street2,

    17:53:11 Cannot create non-ai vehicle Land_Jbad_Lamp_Street2,

    17:53:11 Cannot create non-ai vehicle Land_Jbad_Lamp_Street2,

    17:53:11 Cannot create non-ai vehicle Land_Jbad_Lamp_Street2,

    17:53:11 Cannot create non-ai vehicle Land_Jbad_Lamp_Street2,

    17:53:11 Cannot create non-ai vehicle Land_Jbad_Lamp_Street2,

    17:53:12 Warning Message: You cannot play/edit this mission; it is dependent on downloadable content that has been deleted.

    cup_buildings_config

    17:53:12 Warning Message: You cannot play/edit this mission; it is dependent on downloadable content that has been deleted.

    cup_buildings_config

    17:53:14 Warning Message: You cannot play/edit this mission; it is dependent on downloadable content that has been deleted.

    cup_buildings_config

    17:53:15 Warning Message: You cannot play/edit this mission; it is dependent on downloadable content that has been deleted.

    cup_buildings_config

    17:53:15 Warning Message: You cannot play/edit this mission; it is dependent on downloadable content that has been deleted.

    cup_ind_silovelke

    17:53:16 Warning Message: You cannot play/edit this mission; it is dependent on downloadable content that has been deleted.

    cup_ind_silovelke

    17:53:16 Warning Message: You cannot play/edit this mission; it is dependent on downloadable content that has been deleted.

    cup_ind_silovelke

    17:53:16 Warning Message: You cannot play/edit this mission; it is dependent on downloadable content that has been deleted.

    cup_ind_silovelke

    17:53:16 Warning Message: You cannot play/edit this mission; it is dependent on downloadable content that has been deleted.

    cup_buildings_config

    17:53:17 Strange convex component01 in a3rocks_fsharpsharprock_wallv.p3d:geometryFire

    17:53:17 Strange convex component02 in a3rocks_fsharpsharprock_wallv.p3d:geometryFire

    17:53:17 Strange convex component13 in a3rocks_fsharpsharprock_wallv.p3d:geometryFire

    17:53:17 Strange convex component32 in a3rocks_fsharpsharprock_wallv.p3d:geometryFire

    17:53:17 Strange convex component33 in a3rocks_fsharpsharprock_wallv.p3d:geometryFire

    17:53:17 Strange convex component35 in a3rocks_fsharpsharprock_wallv.p3d:geometryFire

    17:53:17 Strange convex component37 in a3rocks_fsharpsharprock_wallv.p3d:geometryFire

    17:53:17 Strange convex component40 in a3rocks_fsharpsharprock_wallv.p3d:geometryFire

    17:53:17 Strange convex component45 in a3rocks_fsharpsharprock_wallv.p3d:geometryFire

    17:53:17 Strange convex component53 in a3rocks_fsharpsharprock_wallv.p3d:geometryFire

    17:53:17 Strange convex component61 in a3rocks_fsharpsharprock_wallv.p3d:geometryFire

    17:53:17 Strange convex component71 in a3rocks_fsharpsharprock_wallv.p3d:geometryFire

    17:53:17 Strange convex component91 in a3rocks_fsharpsharprock_wallv.p3d:geometryFire

    17:53:17 Strange convex component92 in a3rocks_fsharpsharprock_wallv.p3d:geometryFire

    17:53:17 Strange convex component93 in a3rocks_fsharpsharprock_wallv.p3d:geometryFire

    17:53:17 Strange convex component103 in a3rocks_fsharpsharprock_wallv.p3d:geometryFire

    17:53:17 Strange convex component111 in a3rocks_fsharpsharprock_wallv.p3d:geometryFire

    17:53:17 Strange convex component129 in a3rocks_fsharpsharprock_wallv.p3d:geometryFire

    17:53:17 Strange convex component131 in a3rocks_fsharpsharprock_wallv.p3d:geometryFire

    17:53:17 Strange convex component135 in a3rocks_fsharpsharprock_wallv.p3d:geometryFire

    17:53:17 Strange convex component141 in a3rocks_fsharpsharprock_wallv.p3d:geometryFire

    17:53:17 Strange convex component160 in a3rocks_fsharpsharprock_wallv.p3d:geometryFire

    17:53:17 Strange convex component204 in a3rocks_fsharpsharprock_wallv.p3d:geometryFire

    17:53:17 Strange convex component217 in a3rocks_fsharpsharprock_wallv.p3d:geometryFire

    17:53:17 Strange convex component254 in a3rocks_fsharpsharprock_wallv.p3d:geometryFire

    17:53:17 Strange convex component260 in a3rocks_fsharpsharprock_wallv.p3d:geometryFire

    17:53:17 Strange convex component295 in a3rocks_fsharpsharprock_wallv.p3d:geometryFire

    17:53:17 Strange convex component309 in a3rocks_fsharpsharprock_wallv.p3d:geometryFire

    17:53:17 Strange convex component315 in a3rocks_fsharpsharprock_wallv.p3d:geometryFire

    17:53:19 Strange convex component05 in a3rocks_fsharpsharprock_spike.p3d:geometryFire

    17:53:19 Strange convex component74 in a3rocks_fsharpsharprock_spike.p3d:geometryFire

    17:53:19 Strange convex component202 in a3rocks_fsharpsharprock_spike.p3d:geometryFire

    17:53:19 Strange convex component391 in a3rocks_fsharpsharprock_spike.p3d:geometryFire

    17:53:20 Strange convex component06 in a3rocks_fsharpsharprock_monolith.p3d:geometryFire

    17:53:20 Strange convex component18 in a3rocks_fsharpsharprock_monolith.p3d:geometryFire

    17:53:20 Strange convex component30 in a3rocks_fsharpsharprock_monolith.p3d:geometryFire

    17:53:20 Strange convex component31 in a3rocks_fsharpsharprock_monolith.p3d:geometryFire

    17:53:20 Strange convex component32 in a3rocks_fsharpsharprock_monolith.p3d:geometryFire

    17:53:20 Strange convex component42 in a3rocks_fsharpsharprock_monolith.p3d:geometryFire

    17:53:20 Strange convex component43 in a3rocks_fsharpsharprock_monolith.p3d:geometryFire

    17:53:20 Strange convex component44 in a3rocks_fsharpsharprock_monolith.p3d:geometryFire

    17:53:20 Strange convex component46 in a3rocks_fsharpsharprock_monolith.p3d:geometryFire

    17:53:20 Strange convex component58 in a3rocks_fsharpsharprock_monolith.p3d:geometryFire

    17:53:20 Strange convex component64 in a3rocks_fsharpsharprock_monolith.p3d:geometryFire

    17:53:20 Strange convex component76 in a3rocks_fsharpsharprock_monolith.p3d:geometryFire

    17:53:20 Strange convex component98 in a3rocks_fsharpsharprock_monolith.p3d:geometryFire

    17:53:20 Strange convex component100 in a3rocks_fsharpsharprock_monolith.p3d:geometryFire

    17:53:20 Strange convex component132 in a3rocks_fsharpsharprock_monolith.p3d:geometryFire

    17:53:20 Strange convex component145 in a3rocks_fsharpsharprock_monolith.p3d:geometryFire

    17:53:20 Strange convex component149 in a3rocks_fsharpsharprock_monolith.p3d:geometryFire

    17:53:20 Strange convex component151 in a3rocks_fsharpsharprock_monolith.p3d:geometryFire

    17:53:20 Strange convex component167 in a3rocks_fsharpsharprock_monolith.p3d:geometryFire

    17:53:20 Strange convex component198 in a3rocks_fsharpsharprock_monolith.p3d:geometryFire

    17:53:20 Strange convex component244 in a3rocks_fsharpsharprock_monolith.p3d:geometryFire

    17:53:20 Strange convex component304 in a3rocks_fsharpsharprock_monolith.p3d:geometryFire

    17:53:20 Strange convex component310 in a3rocks_fsharpsharprock_monolith.p3d:geometryFire

    17:53:20 Strange convex component337 in a3rocks_fsharpsharprock_monolith.p3d:geometryFire

    17:53:20 Strange convex component353 in a3rocks_fsharpsharprock_monolith.p3d:geometryFire

    17:53:20 Strange convex component378 in a3rocks_fsharpsharprock_monolith.p3d:geometryFire

    17:53:21 Strange convex component65 in a3rocks_fsharpsharprock_wallh.p3d:geometryFire

    17:53:23 «Exile/BIS_fnc_log: [bIS_fnc_preload] —— Scripts initialized at 24717 ms ——«

    17:54:25 «ExileServer — Player AndrewJatsyk (UID 76561198347401553) connected!»

    17:54:25 «ExileServer — Database Error: Error Statement Exception»

    17:54:25 Error in expression <se_handleBig;

    };

    };

    ((_result select 1) select 0) select 0>

    17:54:25   Error position: <select 0) select 0>

    17:54:25   Error Generic error in expression

    17:54:25 File exile_servercodeExileServer_system_database_query_selectSingleField.sqf, line 27

    17:54:25 Error in expression <se_handleBig;

    };

    };

    ((_result select 1) select 0) select 0>

    17:54:25   Error position: <select 0) select 0>

    17:54:25   Error Generic error in expression

    17:54:25 File exile_servercodeExileServer_system_database_query_selectSingleField.sqf, line 27

    17:54:29 GlassType: unknown type: milgp_shemagh_rgr

    17:54:36 Error: Object(3 : 19) not found

    17:54:57 Client: Remote object 3:0 not found

    17:55:00 EPE manager release (0|2|0)

    17:55:00 Deinitialized shape [Class: «C_Soldier_VR_F»; Shape: «a3characters_f_bootcampcommonvr_soldier_f.p3d»;]

    17:55:00 Deinitialized shape [Class: «Exile_Unit_GhostPlayer»; Shape: «a3characters_fcommoninvisibleman.p3d»;]

    17:55:01 c:wstablefuturalibnetworknetworkserver.cpp ClearNetServer:NOT IMPLEMENTED — briefing!

    17:55:03 Extensions:

    17:55:03   extDB2 (D:SteamsteamappscommonArma 3 Server@ExileServerextDB2.dll) [70.0.0.0] [70.0.0.0]

    p.s. Файл ExileServer_system_process_noobFilter чистил, на сервере ничего не стоит (чистый), БД нормально залилась

    Понравилась статья? Поделить с друзьями:

    Читайте также:

  • Brc расшифровка кодов ошибок
  • Bobcat s175 коды ошибок
  • Boxberry как изменить адрес доставки
  • Bmw ошибка s0397
  • Bork w501 ошибка е1 микроволновая печь

  • 0 0 голоса
    Рейтинг статьи
    Подписаться
    Уведомить о
    guest

    0 комментариев
    Старые
    Новые Популярные
    Межтекстовые Отзывы
    Посмотреть все комментарии