Jump to content
BeastyBill88

Hose connection issues

Recommended Posts

Hey everyone, been a long time since I posted here. Starting to get back into the game lol. I need some help I am trying to get a fire truck to behave like the water tender (with the cannon on the roof etc), I know there was a topic about being able to use a TLF vehicle and use the GTF hose connections but I couldn't find it in the search. I can get it working but the strange thing is when i first use the command to connect a hose the fire fighter will run to the centre of the map before the hose connections appear on the vehicle then he will run back and connect. I'm stumped as I've edited the attachfirehose script and I've set up the engine to be the same as the LA water tender.

Any help would be appreciated.

Here is my log file and my attachfirehose script

 

Spoiler

//******************************************************************************************
// #Version 1.2#
//
//         Changes: - Modified to combine hose connections with water cannon.
//                 - Watercannon will be disabled.
//
//******************************************************************************************

const char DUMMY_EQUIPMENT[]             = "DummyEquipmentCommands";
const char DUMMY_HOSESON[]             = "DummyHosesAreOn";
const char VO_SQUAD[]                = "fire_station_squad";
const char PROTO_ENGINE01[]            = "mod:Prototypes/Vehicles/02 LA Fire Department/fire_engine1.e4p";
const char PROTO_ENGINE02[]            = "mod:Prototypes/Vehicles/02 LA Fire Department/fire_engine2.e4p";
const char PROTO_WATERTENDER[]            = "mod:Prototypes/Vehicles/02 LA Fire Department/Mutail_Aid_E24.e4p";
const char OBJ_ENGINE_CONN[]             = "mod:Prototypes/Vehicles/06 Objects/fire_engine_hose_connections.e4p";
const char OBJ_WATERTENDER_CONN[]         = "mod:Prototypes/Vehicles/06 Objects/water_tender_hose_connections.e4p";
const char NAME_CONNECTORS[]             = "PumpConnector";
const char HINT_NOTVALID[]             = "This vehicle doesn't support hose connections!";
const char CMD_AUTOSIREN_OFF[]            = "VcmdAutoSirenOff";
const char CMD_STANDBY_ON[]            = "VcmdStandbyOn";
const char CMD_STANDBY_OFF[]            = "VcmdStandbyOff";
const char CMD_WATER_OFF[]        = "VcmdWaterOff";
const char DUMMY_DISABLE[]             = "DummyDisableSiren";
const char DUMMY_HASSIREN[]             = "DummyHasSiren";

int DummyGroup = 29;

object AttachFireHose : CommandScript
{
    AttachFireHose()
    {
        SetValidTargets(ACTOR_OBJECT | ACTOR_VEHICLE);
        SetGroupID(CGROUP_FIREHOSE);
        SetGroupLeader(true);
        SetPossibleCallers(ACTOR_PERSON);
        SetPossibleEquipment(EQUIP_FIREHOSE);
        SetPriority(220);
    }

    //bool CheckPossible(GameObject *Caller)
    //{
    //    if(!Caller->IsValid() || Caller->GetType() != ACTOR_PERSON)
    //        return false;
        //if(Target->GetType() == ACTOR_OBJECT)
        //{
        //    SetPossibleExists(CPE_FREE_HOSE_CONNECTION);
        //    SetNeedsConnectedHose(CFN_FAIL);
        //    SetRestrictions2(RESTRICT2_ISHYDRANT);
        //}
        //if(Target->GetType() == ACTOR_VEHICLE)
        //{
        //}
        //return true;
    //    return Caller->GetFirehoseID() == 0 && Caller->GetEquipment()==EQUIP_FIREHOSE && Game::ExistsFreeHoseConnection();
    //}

    bool CheckGroupVisibility(GameObject *Caller)
    {
        if(!Caller->IsValid() || Caller->GetType() != ACTOR_PERSON)
            return false;

        return Caller->GetFirehoseID() == 0;
    }
    
    bool CheckTarget(GameObject *Caller, Actor *Target, int childID)
    {
        if(!Caller->IsValid() || !Target->IsValid() || (Caller->GetID()==Target->GetID()))
            return false;
            
        if(Caller->GetFirehoseID())
            return false;
            
        if(Caller->GetType()!=ACTOR_PERSON)
            return false;
        Person p(Caller);
        if (p.GetEnteredCarID() != -1)
            return false;
            
        if(Caller->GetEquipment()==EQUIP_FIREHOSE && Target->GetType() == ACTOR_VEHICLE)
        {
             Vehicle v(Target);
            if((StrCompare(v.GetPrototypeFileName(), PROTO_ENGINE01) == 0 || StrCompare(v.GetPrototypeFileName(), PROTO_ENGINE02) == 0 || StrCompare(v.GetPrototypeFileName(), PROTO_WATERTENDER) == 0 || v.GetVehicleType() == VT_FIREFIGHTERS_GTF) && v.GetEnergy() > 0.1f * v.GetMaxEnergy())
                return true;

            if((StrCompare(v.GetPrototypeFileName(), PROTO_ENGINE01) == 0 || StrCompare(v.GetPrototypeFileName(), PROTO_ENGINE02) == 0 || StrCompare(v.GetPrototypeFileName(), PROTO_WATERTENDER) == 0) && v.HasCommand(DUMMY_HOSESON))
            {
                int UnitID = v.GetID();
                VehicleList list(NAME_CONNECTORS);
                for(int i = 0; i < list.GetNumVehicles(); i++)
                {
                    Vehicle *obj = list.GetVehicle(i);
                    if (obj->GetUserData() == UnitID)
                    {
                        if (!obj->IsConnectorFree())
                        {
                            return false;
                        }
                    }
                }
            }
        }
        else if(Caller->GetEquipment()==EQUIP_FIREHOSE && Target->GetType() == ACTOR_OBJECT)
        {
            GameObject obj(Target);
            if(obj.IsHydrant() && !obj.IsHydrantInUse())
                return true;
            return false;
        }

        return false;
    }

    void PushActions(GameObject *Caller, Actor *Target, int childID)
    {
        Person p(Caller);
        Vehicle v(Target);
        if (v.HasCommand(DUMMY_HASSIREN) && v.HasCommand(CMD_AUTOSIREN_OFF))
                Game::ExecuteCommand(DUMMY_DISABLE, &v, &v);
        if (childID == 0) //Initiate command
        {
            if (Target->GetType() == ACTOR_OBJECT)
            {
                p.PushActionMove(ACTION_NEWLIST, Target, TARGET_FREE_CONNECTOR);
                p.PushActionUseEquipment(ACTION_APPEND, Target, childID, 1.0f);
            }
            else if (v.GetVehicleType() == VT_FIREFIGHTERS_GTF && (v.HasCommand("EmptyCar") || v.HasName("wye")))
            {
                p.PushActionMove(ACTION_NEWLIST, Target, TARGET_FREE_CONNECTOR);
                p.PushActionCheckFreeConnector(ACTION_APPEND, Target);
                p.PushActionUseEquipment(ACTION_APPEND, Target, childID, 1.0f);
            }
            else if (v.GetVehicleType() != VT_FIREFIGHTERS_GTF && !v.HasCommand(DUMMY_HOSESON))
            {
                Vector TargetPos = v.GetChildPosition("pump1");
                v.PushActionWait(ACTION_NEWLIST, 0.1f);
                p.PushActionMove(ACTION_NEWLIST, TargetPos);
                p.PushActionExecuteCommand(ACTION_APPEND, "AttachFireHose", Target, 1, false);
            }
            else if (v.GetVehicleType() != VT_FIREFIGHTERS_GTF && v.HasCommand(DUMMY_HOSESON))
            {
                p.PushActionExecuteCommand(ACTION_NEWLIST, "AttachFireHose", Target, 2, false);
            }
        }
        if (childID == 1) //Install hose connections
        {
            if (!v.HasCommand(DUMMY_HOSESON))
            {
                v.PushActionWait(ACTION_NEWLIST, 0.1f);
                Vector CarPos = v.GetPosition();

                           float r[9];
                    v.GetRotation(r[0], r[1], r[2], r[3], r[4], r[5], r[6], r[7], r[8]);

                if (StrCompare(v.GetPrototypeFileName(), PROTO_ENGINE01) == 0 || StrCompare(v.GetPrototypeFileName(), PROTO_ENGINE02) == 0)
                            Vehicle o = Game::CreateVehicle(OBJ_ENGINE_CONN, NAME_CONNECTORS);
                else if (StrCompare(v.GetPrototypeFileName(), PROTO_WATERTENDER) == 0)
                            Vehicle o = Game::CreateVehicle(OBJ_WATERTENDER_CONN, NAME_CONNECTORS);
                else
                {
                    Mission::PlayHint(HINT_NOTVALID);
                    return;
                }
                if (o.IsValid())
                {
                    o.SetPosition(CarPos);
                    o.SetRotation(r[0], r[1], r[2], r[3], r[4], r[5], r[6], r[7], r[8]);
                    o.UpdatePlacement();
                    o.SetSelectable(false);

                    o.SetUserData(v.GetID());
                    v.SetUserData(v.GetID());
                    o.SetPlayerMP(v.GetPlayerMP());

                    o.AssignCommand(DUMMY_HOSESON);
                    v.AssignCommand(DUMMY_HOSESON);
                    v.SetChildEnabled("pump1", false);
                    v.SetChildEnabled("pump2", false);
                    v.SetChildEnabled("pump3", false);
                    v.SetChildEnabled("pump4", false);
                    if (v.HasCommand(CMD_STANDBY_OFF))
                    {
                        v.RemoveCommand(CMD_STANDBY_OFF);
                        v.AssignCommand(CMD_STANDBY_ON);
                    }
                    p.PushActionMove(ACTION_NEWLIST, &o, TARGET_FREE_CONNECTOR);
                    //p.PushActionCheckFreeConnector(ACTION_APPEND, &o);
                    p.PushActionUseEquipment(ACTION_APPEND, &o, childID, 1.0f);
                    
                    //if (v.HasCommand("Extinguish") && v.HasCommand("Cool") && v.HasCommand(CMD_WATER_OFF))
                    //    v.PushActionExecuteCommand(ACTION_APPEND, CMD_WATER_OFF, Caller, 0, false);                    
                }
            } else
                p.PushActionExecuteCommand(ACTION_NEWLIST, "AttachFireHose", Target, 2, false);
        }
        if (childID == 2) //Attach hose to installed hose conncetions
        {
            v.PushActionWait(ACTION_NEWLIST, 0.1f);
            int UnitID = Target->GetID();
            VehicleList list(NAME_CONNECTORS);
            for(int i = 0; i < list.GetNumVehicles(); i++)
            {
                if (list.GetVehicle(i)->GetUserData() == UnitID)
                {
                    Vehicle c = list.GetVehicle(i);
                    p.PushActionMove(ACTION_NEWLIST, &c, TARGET_FREE_CONNECTOR);
                    //p.PushActionCheckFreeConnector(ACTION_APPEND, &c);
                    p.PushActionUseEquipment(ACTION_APPEND, &c, childID, 1.0f);
                }
            }
        }
        if (childID == 3) //A check if the hose connections are being used.
        {
            if(!v.IsInstalled())
            {
                int UnitID = v.GetUserData();
                VehicleList list(VT_FIREFIGHTERS_RW, VT_FIREFIGHTERS_TLF);
                for(int i = 0; i < list.GetNumVehicles(); i++)
                {
                    if (list.GetVehicle(i)->GetUserData() == UnitID)
                    {
                        list.GetVehicle(i)->RemoveCommand(DUMMY_HOSESON);
                        list.GetVehicle(i)->SetChildEnabled("pump1", true);
                        list.GetVehicle(i)->SetChildEnabled("pump2", true);
                        list.GetVehicle(i)->SetChildEnabled("pump3", true);
                        list.GetVehicle(i)->SetChildEnabled("pump4", true);
                    }
                }
                v.PushActionWait(ACTION_NEWLIST, 0.1f);
                v.PushActionDeleteOwner(ACTION_APPEND);
            
            } else
                return;
        }


    }
};

object DummyHosesAreOn : CommandScript
{
    DummyHosesAreOn()
    {
        SetGroupID(DummyGroup);
    }

    bool CheckTarget(GameObject *Caller, Actor *Target, int childID)
    {
        return false;
    }

      void PushActions(GameObject *Caller, Actor *Target, int childID)
    {
    }
};

Spoiler

Init Filesystem...
Registered FS device "local"
Registered FS device "base"
Registered FS device "lang"
Init UpdateChain...
Init Timer...
Init Screen...
Init Scriptscheduler...
!Graphics system: NVIDIA Corporation GeForce GTX 750 Ti/PCIe/SSE2
GL_AMD_multi_draw_indirect GL_AMD_seamless_cubemap_per_texture GL_ARB_arrays_of_arrays GL_ARB_base_instance GL_ARB_bindless_texture GL_ARB_blend_func_extended GL_ARB_buffer_storage GL_ARB_clear_buffer_object GL_ARB_clear_texture GL_ARB_clip_control GL_ARB_color_buffer_float GL_ARB_compatibility GL_ARB_compressed_texture_pixel_storage GL_ARB_conservative_depth GL_ARB_compute_shader GL_ARB_compute_variable_group_size GL_ARB_conditional_render_inverted GL_ARB_copy_buffer GL_ARB_copy_image GL_ARB_cull_distance GL_ARB_debug_output GL_ARB_depth_buffer_float GL_ARB_depth_clamp GL_ARB_depth_texture GL_ARB_derivative_control GL_ARB_direct_state_access GL_ARB_draw_buffers GL_ARB_draw_buffers_blend GL_ARB_draw_indirect GL_ARB_draw_elements_base_vertex GL_ARB_draw_instanced GL_ARB_enhanced_layouts GL_ARB_ES2_compatibility GL_ARB_ES3_compatibility GL_ARB_ES3_1_compatibility GL_ARB_ES3_2_compatibility GL_ARB_explicit_attrib_location GL_ARB_explicit_uniform_location GL_ARB_fragment_coord_conventions GL_ARB_fragment_layer_v
Init GFX...
Init Vision...
|Vision DLL path: C:\Program Files (x86)\WizardWorks\911 - First Responders\vision71.dll
|Vision(TM), Version PC-4, 7, 28, 0
|Loading entity plugins of directory <C:\Program Files (x86)\WizardWorks\911 - First Responders\Data> ...
|List of loaded plug-ins:

|Plug-in named 'CubeMapHandle_cl' loaded statically!

|Plug-in named 'VisionConsoleEntity_cl' loaded statically!

|Plug-in named 'VisBase_cl' loaded statically!

|Plug-in named 'VisBaseEntity_cl' loaded statically!

|Plug-in named 'VisMouseCamera_cl' loaded statically!

|Plug-in named 'VisObject3D_cl' loaded statically!

|Plug-in named 'VisActionHelperEntity_cl' loaded statically!

|Plug-in named 'VarManager_cl' loaded statically!

|Plug-in named 'BaseEntity_cl' loaded statically!

|Plug-in named 'VBaseCameraEntity' loaded statically!

|Plug-in named 'VCamEntity' loaded statically!

|Plug-in named 'GameEntity_cl' loaded statically!

|Plug-in named 'Emitter_cl' loaded statically!

|Plug-in named 'BaseGameEntity_cl' loaded statically!

|Plug-in named 'TargetEntity_cl' loaded statically!

|Registering plug-ins done !

|Initializing Vision Graphics Engine
|Detecting CPU type and features
|CPU:Pentium II/III FPU MMX ISSE 3DNow!
|Vision Core: Allocated 28 kB of memory for Polygon Chunks
|Vision Core: Allocated 9 kB of memory for Entities
|Settings renderer configuration
Initializing post processor 'PerceptionCore'
 * Skipping config file
Initializing post processor 'MotionBlur'
 * Skipping config file
Initializing post processor 'Nightvision'
 * Skipping config file
|Initialising video driver: 0
|Setting screen mode to x:1920 / y:1080 / bpp:32 / refresh:0
|Screen Mode is fullscreen, return value: 0
|Stencil buffer: 0 bit / ZBuffer: 24 bit
|Initializing OpenGL rendering subsystem
|Setting initial Renderer States
|Vendor: NVIDIA Corporation
|Renderer: GeForce GTX 750 Ti/PCIe/SSE2
|Driver Version: 4.5.0 NVIDIA 378.66
|Found Extension GL_EXT_texture_filter_anisotropic
|Found Extension GL_EXT_texture_lod_bias
|Found Extension GL_ARB_multitexture
|Found Extension GL_ARB_texture_env_dot3
|Extension GL_ARB_texture_env_subtract not available
|Found Extension GL_EXT_texture_edge_clamp
|Found Extension GL_EXT_texture_env_add
|Found Extension GL_EXT_texture_env_combine
|Found Extension GL_EXT_texture_cube_map
|Found Extension GL_ARB_texture_compression
|Found Extension GL_EXT_texture_compression_s3tc
|Found Extension GL_EXT_point_parameters
|Extension GL_EXT_clip_volume_hint not available
|Extension GL_EXT_vertex_weighting not available
|Found Extension GL_EXT_separate_specular_color
|Found Extension GL_EXT_stencil_wrap
|Extension GL_EXT_vertex_shader not available
|Found Extension GL_EXT_multi_draw_arrays
|Extension GL_ATI_fragment_shader not available
|Extension GL_ATI_pn_triangles not available
|Extension GL_ATI_map_object_buffer not available
|Found Extension GL_NV_texgen_reflection
|Found Extension GL_NV_fence
|Found Extension GL_NV_blend_square
|Found Extension GL_NV_register_combiners
|Found Extension GL_NV_register_combiners2
|Found Extension GL_NV_texture_env_combine4
|Found Extension GL_NV_texture_shader
|Found Extension GL_NV_vertex_program
|Found Extension GL_NV_vertex_program1_1
|Found Extension GL_NV_occlusion_query
|Extension GL_EXT_paletted_texture not available
|Extension GL_ATI_separate_stencil not available
|Extension GL_EXT_texture_rectangle not available
|Found Extension GL_ARB_depth_texture
|Found Extension GL_ARB_shadow
|Found Extension GL_SGIS_generate_mipmap
|Found Extension GL_ARB_vertex_buffer_object
|Found Extension WGL_ARB_render_texture
|Found Extension WGL_NV_render_depth_texture
|Found Extension WGL_NV_render_texture_rectangle
|Found Extension WGL_ARB_pbuffer
|Found Extension WGL_ARB_pixel_format
|Found Extension WGL_EXT_swap_control
|Found Extension GL_ARB_shader_objects
|Found Extension GL_ARB_fragment_shader
|Found Extension GL_ARB_vertex_shader
|Found Extension GL_ARB_shading_language_100
|Using ARB_vertex_buffer_object for fast geometry memory!
OpenGL vendor: NVIDIA Corporation
OpenGL renderer: GeForce GTX 750 Ti/PCIe/SSE2
renderer-string: NVIDIA;GF;GFN
Init Input...
Registered FS device "save"
Init GameFramework...
Init Audio...
Init XGUI...
Font loaded: base:/Fonts/Tahoma 11.xff
Font loaded: base:/Fonts/Tahoma 11 bold.xff
Font loaded: base:/Fonts/Lucida Console 11.xff
?BLFileSystem::DeviceFromFilename("mod:Textures\Previews\curveview_nos3tc.tga"): unknown device name in URL
EM4 Version 1.3f language us
Registered FS device "mod"
mod found: BFEMP
mod found: Blues And Twos Mod
mod found: Borough Of Fire Brooklyn Modification
mod found: Boston Mod
mod found: BOSTON MOD 2014
mod found: Boston Mod Beta
mod found: Copenhagen Airport Modification 1.0
mod found: Emergency City
mod found: Fairfax County MOD 1.1.5
mod found: Falkenburg FHZ Mod
mod found: Harbor City 4.0 REMAKE
mod found: Harbor City 4.6.1 Public
mod found: Harbor City 5
mod found: London Mod v1.3
mod found: London Multiplayer Mod 1.0
mod found: Los Angeles Mod v2.1 singleplayer
mod found: Manchester Mod v1.1.0
mod found: Manhattan Modification - Midtown
mod found: Mayberry Mod V1.4.1
mod found: Mentor Fire Modification
mod found: Montana Mod 2.0.1
mod found: Northview - South County v2.0.4
mod found: NYC MOD 1.01
mod found: Ocean City Modification V1.3
mod found: Ocean City Modification V1.4
mod found: River Falls V0.5
mod found: RockPort Mod
mod found: The Riverside Modification V1.5
mod found: The Riverside Modification V2.0
mod found: Tri-County Mod
|VisMain_cl::DeInit
|DeInitializing Object Data...
|DeInitializing World Data...
|DeInitializing Surface and Texture Data...
|Initializing Vision Graphics Engine
|Detecting CPU type and features
|CPU:Pentium II/III FPU MMX ISSE 3DNow!
|Vision Core: Allocated 28 kB of memory for Polygon Chunks
|Vision Core: Allocated 9 kB of memory for Entities
|Settings renderer configuration
|Loading World mod:\Maps\empty.v3d
?ERROR: dynlight.vsf Version 3.0.0.0 or higher required!
|Vision Core: Allocated 38 kB of memory for primitive data
|Vision Core: Allocated 5 kB of memory for Patches
|Vision Core: Allocated 1 kB of memory for Patch Edges
|Vision Core: Allocated 75 kB of memory for Heightfields
|Vision Core: Allocated 0 kB of memory for Texture Planes
|Vision Core: Allocated 1 kB of memory for Vis Areas
|Vision Core: Allocated 0 kB of memory for Vis Area Planes
|Vision Core: Allocated 0 kB of memory for Vis Area Portals
|Vision Core: Allocated 3 kB of memory for Lights
|Vision Core: Allocated 8 kB of memory for World Vertices
|Vision Core: Allocated 21 kB of memory for Vertex References
|World contains 289 vertices, 256 polygons, 0 patches, 0 lights
|Vision Core: Resized memory for Patch Edges to  1 kB.
|Loading Font allyouneed.VFN
|Loading Model mod:Models\Persons\Fire Department\firefighternorm.v3o
|[VNUM=1.43]
|Model contains 505 vertices, 590 polygons, 20 bones, 0 muscleanimframes
Scanning units...
Scanning equipment...
Loading equipment mod:Units/Equipment/F010Fire Extinguisher/...
Loading equipment mod:Units/Equipment/F020Fire Hose/...
Loading equipment mod:Units/Equipment/F030Jaws Of Life/...
Loading equipment mod:Units/Equipment/F040Chain Saw/...
Loading equipment mod:Units/Equipment/F050Axe/...
Loading equipment mod:Units/Equipment/F060Jump Pad/...
Loading equipment mod:Units/Equipment/P010Flash Grenade/...
Loading equipment mod:Units/Equipment/P020Road Block/...
Scanning personnel...
Loading personnel mod:Units/Personnel/Fire Department/010Fire Fighter/...
|Loading Model mod:Models\Persons\Fire Department\firefighternorm.v3o
|[VNUM=1.43]
|Model contains 505 vertices, 590 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/Fire Department/firefighternorm.e4p precached
|Loading Model mod:Models\Persons\Fire Department\firefighternorm_upgrade.v3o
|[VNUM=1.43]
|Model contains 822 vertices, 612 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/Fire Department/firefighternorm_upgrade.e4p precached
Prototype mod:Prototypes/Persons/Fire Department/firefighternorm_upgrade2.e4p precached
Loading personnel mod:Units/Personnel/Fire Department/020Fire Fighter Masked/...
|Loading Model mod:Models\Persons\Fire Department\firefightermask.v3o
|[VNUM=1.43]
|Model contains 498 vertices, 561 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/Fire Department/firefightermask.e4p precached
|Loading Model mod:Models\Persons\Fire Department\firefightermask_upgraded.v3o
|[VNUM=1.43]
|Model contains 570 vertices, 615 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/Fire Department/firefightermask_upgraded.e4p precached
Prototype mod:Prototypes/Persons/Fire Department/firefightermask_upgraded2.e4p precached
Loading personnel mod:Units/Personnel/Fire Department/030Fire Fighter ABC/...
|Loading Model mod:Models\Persons\Fire Department\firefighterabc.v3o
|[VNUM=1.43]
|Model contains 664 vertices, 527 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/Fire Department/firefighterabc.e4p precached
|Loading Model mod:Models\Persons\Fire Department\firefighterabc_upgraded.v3o
|[VNUM=1.43]
|Model contains 664 vertices, 527 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/Fire Department/firefighterabc_upgraded.e4p precached
Prototype mod:Prototypes/Persons/Fire Department/firefighterabc_upgraded2.e4p precached
Loading personnel mod:Units/Personnel/Fire Department/040Diver/...
|Loading Model mod:Models\Persons\Fire Department\diver.v3o
|[VNUM=1.43]
|Model contains 668 vertices, 644 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/Fire Department/diver.e4p precached
|Loading Model mod:Models\Persons\Fire Department\diver_upgraded.v3o
|[VNUM=1.43]
|Model contains 743 vertices, 706 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/Fire Department/diver_upgraded.e4p precached
Prototype mod:Prototypes/Persons/Fire Department/diver_upgraded2.e4p precached
Scanning personnel...
Loading personnel mod:Units/Personnel/Ambulance/010Doctor/...
|Loading Model mod:Models\Persons\Ambulance\doctor_m.v3o
|[VNUM=1.43]
|Model contains 573 vertices, 468 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/Ambulance/doctor_m.e4p precached
|Loading Model mod:Models\Persons\Ambulance\doctor_f.v3o
|[VNUM=1.43]
|Model contains 413 vertices, 524 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/Ambulance/doctor_f.e4p precached
|Loading Model mod:Models\Persons\Ambulance\doctor_upgraded_m.v3o
|[VNUM=1.43]
|Model contains 773 vertices, 568 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/Ambulance/doctor_upgraded_m.e4p precached
|Loading Model mod:Models\Persons\Ambulance\doctor_upgraded_f.v3o
|[VNUM=1.43]
|Model contains 506 vertices, 586 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/Ambulance/doctor_upgraded_f.e4p precached
Prototype mod:Prototypes/Persons/Ambulance/doctor_upgraded2_m.e4p precached
Prototype mod:Prototypes/Persons/Ambulance/doctor_upgraded2_f.e4p precached
Loading personnel mod:Units/Personnel/Ambulance/020Paramedics/...
|Loading Model mod:Models\Persons\Ambulance\paramedic.v3o
|[VNUM=1.43]
|Model contains 1446 vertices, 1070 polygons, 42 bones, 0 muscleanimframes
?Cannot add default animation set to P: incompatible bone structure?
Prototype mod:Prototypes/Persons/Ambulance/paramedic.e4p precached
|Loading Model mod:Models\Persons\Ambulance\paramedic_upgraded.v3o
|[VNUM=1.43]
|Model contains 1514 vertices, 1110 polygons, 42 bones, 0 muscleanimframes
?Cannot add default animation set to P: incompatible bone structure?
Prototype mod:Prototypes/Persons/Ambulance/paramedic_upgraded.e4p precached
?Cannot add default animation set to P: incompatible bone structure?
Prototype mod:Prototypes/Persons/Ambulance/paramedic_upgraded2.e4p precached
Loading personnel mod:Units/Personnel/Ambulance/030Dog Leader/...
|Loading Model mod:Models\Persons\Ambulance\leaderrescuedog.v3o
|[VNUM=1.43]
|Model contains 369 vertices, 468 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/Ambulance/leaderrescuedog.e4p precached
|Loading Model mod:Models\Persons\Ambulance\leaderrescuedog_upgraded.v3o
|[VNUM=1.43]
|Model contains 496 vertices, 568 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/Ambulance/leaderrescuedog_upgraded.e4p precached
Prototype mod:Prototypes/Persons/Ambulance/leaderrescuedog_upgraded2.e4p precached
Scanning personnel...
Loading personnel mod:Units/Personnel/Police/010Policeman/...
|Loading Model mod:Models\Persons\Police\policeman_m.v3o
|[VNUM=1.43]
|Model contains 588 vertices, 480 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/Police/policeman_m.e4p precached
|Loading Model mod:Models\Persons\Police\policeman_f.v3o
|[VNUM=1.43]
|Model contains 413 vertices, 512 polygons, 20 bones, 0 muscleanimframes
|Vision Core: Resized memory for Entities to  27 kB.
Prototype mod:Prototypes/Persons/Police/policeman_f.e4p precached
|Loading Model mod:Models\Persons\Police\policeman_upgraded_m.v3o
|[VNUM=1.43]
|Model contains 883 vertices, 604 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/Police/policeman_upgraded_m.e4p precached
|Loading Model mod:Models\Persons\Police\policeman_upgraded_f.v3o
|[VNUM=1.43]
|Model contains 562 vertices, 619 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/Police/policeman_upgraded_f.e4p precached
Prototype mod:Prototypes/Persons/Police/policeman_upgraded2_m.e4p precached
Prototype mod:Prototypes/Persons/Police/policeman_upgraded2_f.e4p precached
Loading personnel mod:Units/Personnel/Police/020Shooter/...
|Loading Model mod:Models\Persons\Police\shooter.v3o
|[VNUM=1.43]
|Model contains 733 vertices, 612 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/Police/shooter.e4p precached
|Loading Model mod:Models\Persons\Police\shooter_upgraded.v3o
|[VNUM=1.43]
|Model contains 899 vertices, 682 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/Police/shooter_upgraded.e4p precached
Prototype mod:Prototypes/Persons/Police/shooter_upgraded2.e4p precached
Loading personnel mod:Units/Personnel/Police/030Sharp Shooter/...
|Loading Model mod:Models\Persons\Police\sharpshooter.v3o
|[VNUM=1.43]
|Model contains 435 vertices, 500 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/Police/sharpshooter.e4p precached
|Loading Model mod:Models\Persons\Police\sharpshooter_upgraded.v3o
|[VNUM=1.43]
|Model contains 589 vertices, 596 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/Police/sharpshooter_upgraded.e4p precached
Prototype mod:Prototypes/Persons/Police/sharpshooter_upgraded2.e4p precached
Loading personnel mod:Units/Personnel/Police/040Scout/...
|Loading Model mod:Models\Persons\Police\scout.v3o
|[VNUM=1.43]
|Model contains 418 vertices, 500 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/Police/scout.e4p precached
|Loading Model mod:Models\Persons\Police\scout_upgraded.v3o
|[VNUM=1.43]
|Model contains 506 vertices, 555 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/Police/scout_upgraded.e4p precached
Prototype mod:Prototypes/Persons/Police/scout_upgraded2.e4p precached
Loading personnel mod:Units/Personnel/Police/050Profiler/...
|Loading Model mod:Models\Persons\Police\profiler.v3o
|[VNUM=1.43]
|Model contains 367 vertices, 468 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/Police/profiler.e4p precached
|Loading Model mod:Models\Persons\Police\profiler_upgrade.v3o
|[VNUM=1.43]
|Model contains 451 vertices, 498 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/Police/profiler_upgrade.e4p precached
Prototype mod:Prototypes/Persons/Police/profiler_upgrade2.e4p precached
Scanning personnel...
Loading personnel mod:Units/Personnel/TEC/010Engineer/...
|Loading Model mod:Models\Persons\TEC\engineer.v3o
|[VNUM=1.43]
|Model contains 613 vertices, 506 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/TEC/engineer.e4p precached
|Loading Model mod:Models\Persons\TEC\engineer_upgraded.v3o
|[VNUM=1.43]
|Model contains 777 vertices, 656 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/TEC/engineer_upgraded.e4p precached
Prototype mod:Prototypes/Persons/TEC/engineer_upgraded2.e4p precached
Scanning vehicles...
Loading vehicle mod:Units/Vehicles/Fire Department/010RW/...
|Loading Model mod:Models\Vehicles\Fire Department\rw.v3o
|[VNUM=1.43]
|Model contains 1707 vertices, 791 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\rw_wheel01.v3o
|[VNUM=1.43]
|Model contains 83 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\rw_door01.v3o
|[VNUM=1.43]
|Model contains 118 vertices, 52 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\rw_door02.v3o
|[VNUM=1.43]
|Model contains 32 vertices, 12 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\rw_door03.v3o
|[VNUM=1.43]
|Model contains 32 vertices, 12 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\rw_door04.v3o
|[VNUM=1.43]
|Model contains 33 vertices, 16 polygons, 0 bones, 12 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\rw_door05.v3o
|[VNUM=1.43]
|Model contains 31 vertices, 14 polygons, 0 bones, 12 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\rw_door06.v3o
|[VNUM=1.43]
|Model contains 24 vertices, 16 polygons, 0 bones, 12 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\rw_spotlight_super.v3o
|[VNUM=1.43]
|Model contains 148 vertices, 84 polygons, 0 bones, 4 muscleanimframes
Prototype mod:Prototypes/Vehicles/Fire Department/rw.e4p precached
Loading vehicle mod:Units/Vehicles/Fire Department/020GTF/...
|Loading Model mod:Models\Vehicles\Fire Department\gtf.v3o
|[VNUM=1.43]
|Model contains 1343 vertices, 891 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\gtf_wheel01.v3o
|[VNUM=1.43]
|Model contains 50 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\gtf_door03.v3o
|[VNUM=1.43]
|Model contains 18 vertices, 16 polygons, 0 bones, 12 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\gtf_door01.v3o
|[VNUM=1.43]
|Model contains 18 vertices, 12 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\gtf_tube_super.v3o
|[VNUM=1.43]
|Model contains 83 vertices, 72 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/Fire Department/gtf.e4p precached
Loading vehicle mod:Units/Vehicles/Fire Department/030TLF/...
|Loading Model mod:Models\Vehicles\Fire Department\tlf.v3o
|[VNUM=1.43]
|Model contains 1244 vertices, 818 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\tlf_wheel01.v3o
|[VNUM=1.43]
|Model contains 50 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\tlf_wheel02.v3o
|[VNUM=1.43]
|Model contains 50 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\tlf_door01.v3o
|[VNUM=1.43]
|Model contains 95 vertices, 52 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\tlf_door02.v3o
|[VNUM=1.43]
|Model contains 16 vertices, 10 polygons, 0 bones, 59 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\tlf_door03.v3o
|[VNUM=1.43]
|Model contains 14 vertices, 8 polygons, 0 bones, 6 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\tlf_door04.v3o
|[VNUM=1.43]
|Model contains 20 vertices, 12 polygons, 0 bones, 59 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\tlf_cannon_super.v3o
|[VNUM=1.43]
|Model contains 160 vertices, 91 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/Fire Department/tlf.e4p precached
Loading vehicle mod:Units/Vehicles/Fire Department/040DLK/...
|Loading Model mod:Models\Vehicles\Fire Department\dlk.v3o
|[VNUM=1.43]
|Model contains 1595 vertices, 883 polygons, 0 bones, 6 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\dlk_wheel01.v3o
|[VNUM=1.43]
|Model contains 50 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\dlk_wheel02.v3o
|[VNUM=1.43]
|Model contains 50 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\dlk_door01.v3o
|[VNUM=1.43]
|Model contains 77 vertices, 52 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\dlk_base_super.v3o
|[VNUM=1.43]
|Model contains 240 vertices, 162 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\dlk_l1_super.v3o
|[VNUM=1.43]
|Model contains 88 vertices, 48 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\dlk_l2_super.v3o
|[VNUM=1.43]
|Model contains 64 vertices, 34 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\dlk_l3_super.v3o
|[VNUM=1.43]
|Model contains 48 vertices, 24 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\dlk_basket_super.v3o
|[VNUM=1.43]
|Model contains 156 vertices, 92 polygons, 0 bones, 7 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\dlk_canon_super.v3o
|[VNUM=1.43]
|Model contains 35 vertices, 33 polygons, 0 bones, 6 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\dlk_l4_super.v3o
|[VNUM=1.43]
|Model contains 48 vertices, 24 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/Fire Department/dlk.e4p precached
Loading vehicle mod:Units/Vehicles/Fire Department/050LPF/...
|Loading Model mod:Models\Vehicles\Fire Department\lpf.v3o
|[VNUM=1.43]
|Model contains 1238 vertices, 591 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\lpf_wheel01.v3o
|[VNUM=1.43]
|Model contains 70 vertices, 32 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\lpf_door01.v3o
|[VNUM=1.43]
|Model contains 18 vertices, 8 polygons, 0 bones, 12 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\lpf_cannon_super.v3o
|[VNUM=1.43]
|Model contains 1292 vertices, 785 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/Fire Department/lpf.e4p precached
Loading vehicle mod:Units/Vehicles/Fire Department/060DEKON/...
|Loading Model mod:Models\Vehicles\Fire Department\dekonp.v3o
|[VNUM=1.43]
|Model contains 2046 vertices, 1265 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\dekonp_wheel01.v3o
|[VNUM=1.43]
|Model contains 50 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\dekonp_door01.v3o
|[VNUM=1.43]
|Model contains 81 vertices, 52 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\dekonp_door02.v3o
|[VNUM=1.43]
|Model contains 61 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\dekonp_door03.v3o
|[VNUM=1.43]
|Model contains 61 vertices, 36 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/Fire Department/dekonp.e4p precached
Loading vehicle mod:Units/Vehicles/Fire Department/070FMB/...
|Loading Model mod:Models\Vehicles\Fire Department\fmb.v3o
|[VNUM=1.43]
|Model contains 1910 vertices, 898 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\fmb_door01.v3o
|[VNUM=1.43]
|Model contains 242 vertices, 93 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/Fire Department/fmb.e4p precached
Loading vehicle mod:Units/Vehicles/Fire Department/080TFMB/...
|Loading Model mod:Models\Vehicles\Fire Department\tfmb.v3o
|[VNUM=1.43]
|Model contains 1371 vertices, 934 polygons, 0 bones, 0 muscleanimframes
|Vision Core: Resized memory for Entities to  45 kB.
|Loading Model mod:Models\Vehicles\Fire Department\tfmb_wheel01.v3o
|[VNUM=1.43]
|Model contains 60 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\tfmb_wheel02.v3o
|[VNUM=1.43]
|Model contains 60 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\tfmb_door01.v3o
|[VNUM=1.43]
|Model contains 98 vertices, 58 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/Fire Department/tfmb.e4p precached
Loading vehicle mod:Units/Vehicles/Fire Department/090FLB/...
|Loading Model mod:Models\Vehicles\Fire Department\flb.v3o
|[VNUM=1.43]
|Model contains 2377 vertices, 1536 polygons, 3 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\flb_cannon_super.v3o
|[VNUM=1.43]
|Model contains 56 vertices, 38 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/Fire Department/flb.e4p precached
Loading vehicle mod:Units/Vehicles/Fire Department/100LF/...
|Loading Model mod:Models\Vehicles\Fire Department\lf.v3o
|[VNUM=1.43]
|Model contains 2019 vertices, 1794 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/Fire Department/lf.e4p precached
Scanning vehicles...
Loading vehicle mod:Units/Vehicles/Ambulance/010NEF/...
|Loading Model mod:Models\Vehicles\Ambulance\nef.v3o
|[VNUM=1.43]
|Model contains 591 vertices, 456 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Ambulance\nef_wheel01.v3o
|[VNUM=1.43]
|Model contains 44 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Ambulance\nef_door01.v3o
|[VNUM=1.43]
|Model contains 36 vertices, 23 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/Ambulance/nef.e4p precached
Loading vehicle mod:Units/Vehicles/Ambulance/020RTW/...
|Loading Model mod:Models\Vehicles\Ambulance\rtw.v3o
|[VNUM=1.43]
|Model contains 1301 vertices, 1031 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Ambulance\rtw_wheel01.v3o
|[VNUM=1.43]
|Model contains 44 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Ambulance\rtw_door02.v3o
|[VNUM=1.43]
|Model contains 30 vertices, 18 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Ambulance\rtw_door01.v3o
|[VNUM=1.43]
|Model contains 101 vertices, 70 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Ambulance\rtw_door03.v3o
|[VNUM=1.43]
|Model contains 30 vertices, 18 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/Ambulance/rtw.e4p precached
Loading vehicle mod:Units/Vehicles/Ambulance/030RHF/...
|Loading Model mod:Models\Vehicles\Ambulance\rhf.v3o
|[VNUM=1.43]
|Model contains 1033 vertices, 778 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Ambulance\rhf_wheel01.v3o
|[VNUM=1.43]
|Model contains 48 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Ambulance\rhf_door01.v3o
|[VNUM=1.43]
|Model contains 67 vertices, 43 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Ambulance\rhf_door02.v3o
|[VNUM=1.43]
|Model contains 125 vertices, 59 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/Ambulance/rhf.e4p precached
Loading vehicle mod:Units/Vehicles/Ambulance/040ITW/...
|Loading Model mod:Models\Vehicles\Ambulance\itw.v3o
|[VNUM=1.43]
|Model contains 1183 vertices, 876 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Ambulance\itw_wheel01.v3o
|[VNUM=1.43]
|Model contains 52 vertices, 44 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Ambulance\itw_door01.v3o
|[VNUM=1.43]
|Model contains 28 vertices, 18 polygons, 0 bones, 2 muscleanimframes
|Loading Model mod:Models\Vehicles\Ambulance\itw_door02.v3o
|[VNUM=1.43]
|Model contains 42 vertices, 28 polygons, 0 bones, 12 muscleanimframes
Prototype mod:Prototypes/Vehicles/Ambulance/itw.e4p precached
Loading vehicle mod:Units/Vehicles/Ambulance/050RHC/...
|Loading Model mod:Models\Vehicles\Ambulance\rhc.v3o
|[VNUM=1.43]
|Model contains 1220 vertices, 737 polygons, 0 bones, 8 muscleanimframes
|Loading Model mod:Models\Vehicles\Ambulance\rhc_door01.v3o
|[VNUM=1.43]
|Model contains 38 vertices, 20 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\ObjectChildren\rhc_rotor.v3o
|[VNUM=1.43]
|Model contains 372 vertices, 244 polygons, 0 bones, 93 muscleanimframes
Prototype mod:Prototypes/Vehicles/Ambulance/rhc.e4p precached
Scanning vehicles...
Loading vehicle mod:Units/Vehicles/Police/010STW/...
|Loading Model mod:Models\Vehicles\Police\stw.v3o
|[VNUM=1.43]
|Model contains 688 vertices, 528 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Police\stw_wheel01.v3o
|[VNUM=1.43]
|Model contains 44 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Police\stw_door01.v3o
|[VNUM=1.43]
|Model contains 46 vertices, 30 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/Police/stw.e4p precached
Loading vehicle mod:Units/Vehicles/Police/020MTW/...
|Loading Model mod:Models\Vehicles\Police\mtw.v3o
|[VNUM=1.43]
|Model contains 1334 vertices, 664 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Police\mtw_wheel01.v3o
|[VNUM=1.43]
|Model contains 44 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Police\mtw_door01.v3o
|[VNUM=1.43]
|Model contains 137 vertices, 56 polygons, 0 bones, 8 muscleanimframes
Prototype mod:Prototypes/Vehicles/Police/mtw.e4p precached
Loading vehicle mod:Units/Vehicles/Police/030SW/...
|Loading Model mod:Models\Vehicles\Police\sw.v3o
|[VNUM=1.43]
|Model contains 1152 vertices, 676 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Police\sw_wheel01.v3o
|[VNUM=1.43]
|Model contains 56 vertices, 44 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Police\sw_door01.v3o
|[VNUM=1.43]
|Model contains 114 vertices, 58 polygons, 0 bones, 18 muscleanimframes
Prototype mod:Prototypes/Vehicles/Police/sw.e4p precached
Loading vehicle mod:Units/Vehicles/Police/040WAW/...
|Loading Model mod:Models\Vehicles\Police\waw.v3o
|[VNUM=1.43]
|Model contains 1489 vertices, 868 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Police\waw_wheel01.v3o
|[VNUM=1.43]
|Model contains 78 vertices, 64 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Police\waw_cannon_super.v3o
|[VNUM=1.43]
|Model contains 119 vertices, 73 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/Police/waw.e4p precached
Loading vehicle mod:Units/Vehicles/Police/050GTW/...
|Loading Model mod:Models\Vehicles\Police\gtw.v3o
|[VNUM=1.43]
|Model contains 1124 vertices, 867 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Police\gtw_wheel01.v3o
|[VNUM=1.43]
|Model contains 52 vertices, 44 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Police\gtw_door01.v3o
|[VNUM=1.43]
|Model contains 36 vertices, 24 polygons, 0 bones, 8 muscleanimframes
Prototype mod:Prototypes/Vehicles/Police/gtw.e4p precached
Loading vehicle mod:Units/Vehicles/Police/060PHC/...
|Loading Model mod:Models\Vehicles\Police\phc.v3o
|[VNUM=1.43]
|Model contains 1844 vertices, 1055 polygons, 0 bones, 8 muscleanimframes
|Loading Model mod:Models\Vehicles\Police\phc_door01.v3o
|[VNUM=1.43]
|Model contains 43 vertices, 20 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\ObjectChildren\phc_rotor.v3o
|[VNUM=1.43]
|Model contains 374 vertices, 240 polygons, 0 bones, 88 muscleanimframes
Prototype mod:Prototypes/Vehicles/Police/phc.e4p precached
Loading vehicle mod:Units/Vehicles/Police/070FLIGHT/...
|Loading Model mod:Models\Vehicles\Police\getawaycar.v3o
|[VNUM=1.43]
|Model contains 523 vertices, 477 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Police\getawaycar_wheel01.v3o
|[VNUM=1.43]
|Model contains 48 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Police\getawaycar_door01.v3o
|[VNUM=1.43]
|Model contains 68 vertices, 50 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\ObjectChildren\drivebyshooting_rifle.v3o
|[VNUM=1.43]
|Model contains 214 vertices, 94 polygons, 0 bones, 25 muscleanimframes
Prototype mod:Prototypes/Vehicles/Police/getawaycar.e4p precached
Scanning vehicles...
Loading vehicle mod:Units/Vehicles/TEC/010FGRI/...
|Loading Model mod:Models\Vehicles\TEC\fgri.v3o
|[VNUM=1.43]
|Model contains 839 vertices, 654 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\TEC\fgri_wheel01.v3o
|[VNUM=1.43]
|Model contains 48 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\TEC\fgri_door01.v3o
|[VNUM=1.43]
|Model contains 65 vertices, 52 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/TEC/fgri.e4p precached
Loading vehicle mod:Units/Vehicles/TEC/020ASF/...
|Loading Model mod:Models\Vehicles\TEC\asf.v3o
|[VNUM=1.43]
|Model contains 1360 vertices, 792 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\TEC\asf_wheel01.v3o
|[VNUM=1.43]
|Model contains 50 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\TEC\asf_wheel02.v3o
|[VNUM=1.43]
|Model contains 50 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\TEC\asf_door01.v3o
|[VNUM=1.43]
|Model contains 60 vertices, 32 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/TEC/asf.e4p precached
Loading vehicle mod:Units/Vehicles/TEC/030FGRR/...
|Loading Model mod:Models\Vehicles\TEC\fgr.v3o
|[VNUM=1.43]
|Model contains 1079 vertices, 641 polygons, 0 bones, 6 muscleanimframes
|Loading Model mod:Models\Vehicles\TEC\fgr_wheel01.v3o
|[VNUM=1.43]
|Model contains 50 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\TEC\fgr_arm_super.v3o
|[VNUM=1.43]
|Model contains 77 vertices, 40 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\TEC\fgr_arm2_super.v3o
|[VNUM=1.43]
|Model contains 100 vertices, 60 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\TEC\fgr_base_super.v3o
|[VNUM=1.43]
|Model contains 268 vertices, 150 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\TEC\fgr_hook_super.v3o
|[VNUM=1.43]
|Model contains 53 vertices, 49 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\TEC\fgr_arm3_super.v3o
|[VNUM=1.43]
|Model contains 24 vertices, 16 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\TEC\fgr_arm4_super.v3o
|[VNUM=1.43]
|Model contains 100 vertices, 48 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/TEC/fgr.e4p precached
Loading vehicle mod:Units/Vehicles/TEC/040FGRB/...
|Loading Model mod:Models\Vehicles\TEC\fgrb.v3o
|[VNUM=1.43]
|Model contains 4888 vertices, 1958 polygons, 5 bones, 0 muscleanimframes
|Vision Core: Resized memory for Entities to  63 kB.
|Loading Model mod:Models\Vehicles\TEC\fgrb_wheel02.v3o
|[VNUM=1.43]
|Model contains 98 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\TEC\fgrb_wheel01.v3o
|[VNUM=1.43]
|Model contains 98 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\TEC\fgrb_ship_super.v3o
|[VNUM=1.43]
|Model contains 954 vertices, 490 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\TEC\fgrb_stand_super.v3o
|[VNUM=1.43]
|Model contains 130 vertices, 64 polygons, 0 bones, 6 muscleanimframes
Prototype mod:Prototypes/Vehicles/TEC/fgrb.e4p precached
Loading vehicle mod:Units/Vehicles/TEC/050FGRT/...
|Loading Model mod:Models\Vehicles\TEC\fgr_t.v3o
|[VNUM=1.43]
|Model contains 1144 vertices, 900 polygons, 0 bones, 7 muscleanimframes
|Loading Model mod:Models\Vehicles\TEC\fgr_t_door01.v3o
|[VNUM=1.43]
|Model contains 32 vertices, 20 polygons, 0 bones, 8 muscleanimframes
|Loading Model mod:Models\Vehicles\TEC\fgr_t_super.v3o
|[VNUM=1.43]
|Model contains 120 vertices, 64 polygons, 0 bones, 18 muscleanimframes
|Loading Model mod:Models\Objects\ObjectChildren\fgr_t_rotor.v3o
|[VNUM=1.43]
|Model contains 724 vertices, 412 polygons, 0 bones, 192 muscleanimframes
Prototype mod:Prototypes/Vehicles/TEC/fgr_t.e4p precached
Loading vehicle mod:Units/Vehicles/TEC/060RL/...
|Loading Model mod:Models\Vehicles\TEC\fgr_rb_dozer.v3o
|[VNUM=1.43]
|Model contains 2302 vertices, 1224 polygons, 0 bones, 26 muscleanimframes
|Loading Model mod:Models\Vehicles\TEC\fgr_rb_dozer_wheel01.v3o
|[VNUM=1.43]
|Model contains 112 vertices, 80 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/TEC/fgr_rb_dozer.e4p precached
Loading vehicle mod:Units/Vehicles/TEC/070TRL/...
|Loading Model mod:Models\Vehicles\TEC\fgr_rb.v3o
|[VNUM=1.43]
|Model contains 1153 vertices, 656 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\TEC\fgr_rb_wheel01.v3o
|[VNUM=1.43]
|Model contains 60 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\TEC\fgr_rb_dozer_wheel02.v3o
|[VNUM=1.43]
|Model contains 60 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\TEC\fgr_rb_door01.v3o
|[VNUM=1.43]
|Model contains 186 vertices, 92 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/TEC/fgr_rb.e4p precached
command icon mod:UI/Game/Icons/Commands/AimedShot_disable.dds not found
command icon mod:UI/Game/Icons/Commands/AimedShot_normal.dds not found
command icon mod:UI/Game/Icons/Commands/AimedShot_over.dds not found
command icon mod:UI/Game/Icons/Commands/AimedShot_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/AimedShot.dds not found
cursor mod:UI/Game/Icons/Cursor/AimEnd.dds not found
command icon mod:UI/Game/Icons/Commands/DropWithCrane_disable.dds not found
command icon mod:UI/Game/Icons/Commands/DropWithCrane_normal.dds not found
command icon mod:UI/Game/Icons/Commands/DropWithCrane_over.dds not found
command icon mod:UI/Game/Icons/Commands/DropWithCrane_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/DropWithCrane.dds not found
command icon mod:UI/Game/Icons/Commands/EvacuatePerson_disable.dds not found
command icon mod:UI/Game/Icons/Commands/EvacuatePerson_normal.dds not found
command icon mod:UI/Game/Icons/Commands/EvacuatePerson_over.dds not found
command icon mod:UI/Game/Icons/Commands/EvacuatePerson_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/EvacuatePerson.dds not found
command icon mod:UI/Game/Icons/Commands/FlyTo_disable.dds not found
command icon mod:UI/Game/Icons/Commands/FlyTo_normal.dds not found
command icon mod:UI/Game/Icons/Commands/FlyTo_over.dds not found
command icon mod:UI/Game/Icons/Commands/FlyTo_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/FlyTo.dds not found
command icon mod:UI/Game/Icons/Commands/GetFlashgrenade_disable.dds not found
command icon mod:UI/Game/Icons/Commands/GetFlashgrenade_normal.dds not found
command icon mod:UI/Game/Icons/Commands/GetFlashgrenade_over.dds not found
command icon mod:UI/Game/Icons/Commands/GetFlashgrenade_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/GetFlashgrenade.dds not found
command icon mod:UI/Game/Icons/Commands/Lift_disable.dds not found
command icon mod:UI/Game/Icons/Commands/Lift_normal.dds not found
command icon mod:UI/Game/Icons/Commands/Lift_over.dds not found
command icon mod:UI/Game/Icons/Commands/Lift_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/Lift.dds not found
command icon mod:UI/Game/Icons/Commands/LiftWithRope_disable.dds not found
command icon mod:UI/Game/Icons/Commands/LiftWithRope_normal.dds not found
command icon mod:UI/Game/Icons/Commands/LiftWithRope_over.dds not found
command icon mod:UI/Game/Icons/Commands/LiftWithRope_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/LiftWithRope.dds not found
command icon mod:UI/Game/Icons/Commands/LoadUp_disable.dds not found
command icon mod:UI/Game/Icons/Commands/LoadUp_normal.dds not found
command icon mod:UI/Game/Icons/Commands/LoadUp_over.dds not found
command icon mod:UI/Game/Icons/Commands/LoadUp_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/LoadUp.dds not found
command icon mod:UI/Game/Icons/Commands/M10EnterHouse_disable.dds not found
command icon mod:UI/Game/Icons/Commands/M10EnterHouse_normal.dds not found
command icon mod:UI/Game/Icons/Commands/M10EnterHouse_over.dds not found
command icon mod:UI/Game/Icons/Commands/M10EnterHouse_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/M10EnterHouse.dds not found
command icon mod:UI/Game/Icons/Commands/M11EnterStation_disable.dds not found
command icon mod:UI/Game/Icons/Commands/M11EnterStation_normal.dds not found
command icon mod:UI/Game/Icons/Commands/M11EnterStation_over.dds not found
command icon mod:UI/Game/Icons/Commands/M11EnterStation_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/M11EnterStation.dds not found
command icon mod:UI/Game/Icons/Commands/M11EvacuateStation_disable.dds not found
command icon mod:UI/Game/Icons/Commands/M11EvacuateStation_normal.dds not found
command icon mod:UI/Game/Icons/Commands/M11EvacuateStation_over.dds not found
command icon mod:UI/Game/Icons/Commands/M11EvacuateStation_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/M11EvacuateStation.dds not found
command icon mod:UI/Game/Icons/Commands/M14UseShears_disable.dds not found
command icon mod:UI/Game/Icons/Commands/M14UseShears_normal.dds not found
command icon mod:UI/Game/Icons/Commands/M14UseShears_over.dds not found
command icon mod:UI/Game/Icons/Commands/M14UseShears_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/M14UseShears.dds not found
command icon mod:UI/Game/Icons/Commands/M15LiftWithRope_disable.dds not found
command icon mod:UI/Game/Icons/Commands/M15LiftWithRope_normal.dds not found
command icon mod:UI/Game/Icons/Commands/M15LiftWithRope_over.dds not found
command icon mod:UI/Game/Icons/Commands/M15LiftWithRope_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/M15LiftWithRope.dds not found
command icon mod:UI/Game/Icons/Commands/M16UseShears_disable.dds not found
command icon mod:UI/Game/Icons/Commands/M16UseShears_normal.dds not found
command icon mod:UI/Game/Icons/Commands/M16UseShears_over.dds not found
command icon mod:UI/Game/Icons/Commands/M16UseShears_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/M16UseShears.dds not found
command icon mod:UI/Game/Icons/Commands/M18EnterStation_disable.dds not found
command icon mod:UI/Game/Icons/Commands/M18EnterStation_normal.dds not found
command icon mod:UI/Game/Icons/Commands/M18EnterStation_over.dds not found
command icon mod:UI/Game/Icons/Commands/M18EnterStation_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/M18EnterStation.dds not found
command icon mod:UI/Game/Icons/Commands/M18EvacuateStation_disable.dds not found
command icon mod:UI/Game/Icons/Commands/M18EvacuateStation_normal.dds not found
command icon mod:UI/Game/Icons/Commands/M18EvacuateStation_over.dds not found
command icon mod:UI/Game/Icons/Commands/M18EvacuateStation_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/M18EvacuateStation.dds not found
command icon mod:UI/Game/Icons/Commands/M19EnterPanelRoom_disable.dds not found
command icon mod:UI/Game/Icons/Commands/M19EnterPanelRoom_normal.dds not found
command icon mod:UI/Game/Icons/Commands/M19EnterPanelRoom_over.dds not found
command icon mod:UI/Game/Icons/Commands/M19EnterPanelRoom_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/M19EnterPanelRoom.dds not found
command icon mod:UI/Game/Icons/Commands/M19EnterTunnel_disable.dds not found
command icon mod:UI/Game/Icons/Commands/M19EnterTunnel_normal.dds not found
command icon mod:UI/Game/Icons/Commands/M19EnterTunnel_over.dds not found
command icon mod:UI/Game/Icons/Commands/M19EnterTunnel_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/M19EnterTunnel.dds not found
command icon mod:UI/Game/Icons/Commands/M4EnterStation_disable.dds not found
command icon mod:UI/Game/Icons/Commands/M4EnterStation_normal.dds not found
command icon mod:UI/Game/Icons/Commands/M4EnterStation_over.dds not found
command icon mod:UI/Game/Icons/Commands/M4EnterStation_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/M4EnterStation.dds not found
command icon mod:UI/Game/Icons/Commands/PickUp_disable.dds not found
command icon mod:UI/Game/Icons/Commands/PickUp_normal.dds not found
command icon mod:UI/Game/Icons/Commands/PickUp_over.dds not found
command icon mod:UI/Game/Icons/Commands/PickUp_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/PickUp.dds not found
command icon mod:UI/Game/Icons/Commands/Pull_disable.dds not found
command icon mod:UI/Game/Icons/Commands/Pull_normal.dds not found
command icon mod:UI/Game/Icons/Commands/Pull_over.dds not found
command icon mod:UI/Game/Icons/Commands/Pull_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/Pull.dds not found
command icon mod:UI/Game/Icons/Commands/PutInCar_disable.dds not found
command icon mod:UI/Game/Icons/Commands/PutInCar_normal.dds not found
command icon mod:UI/Game/Icons/Commands/PutInCar_over.dds not found
command icon mod:UI/Game/Icons/Commands/PutInCar_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/PutInCar.dds not found
command icon mod:UI/Game/Icons/Commands/RemoveEquipment_disable.dds not found
command icon mod:UI/Game/Icons/Commands/RemoveEquipment_normal.dds not found
command icon mod:UI/Game/Icons/Commands/RemoveEquipment_over.dds not found
command icon mod:UI/Game/Icons/Commands/RemoveEquipment_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/RemoveEquipment.dds not found
command icon mod:UI/Game/Icons/Commands/RemoveFirehose_disable.dds not found
command icon mod:UI/Game/Icons/Commands/SearchLightOff_disable.dds not found
command icon mod:UI/Game/Icons/Commands/SearchLightOff_normal.dds not found
command icon mod:UI/Game/Icons/Commands/SearchLightOff_over.dds not found
command icon mod:UI/Game/Icons/Commands/SearchLightOff_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/SearchLightOff.dds not found
command icon mod:UI/Game/Icons/Commands/SearchLightOn_disable.dds not found
command icon mod:UI/Game/Icons/Commands/SearchLightOn_normal.dds not found
command icon mod:UI/Game/Icons/Commands/SearchLightOn_over.dds not found
command icon mod:UI/Game/Icons/Commands/SearchLightOn_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/SearchLightOn.dds not found
command icon mod:UI/Game/Icons/Commands/StopPull_disable.dds not found
command icon mod:UI/Game/Icons/Commands/StopPull_normal.dds not found
command icon mod:UI/Game/Icons/Commands/StopPull_over.dds not found
command icon mod:UI/Game/Icons/Commands/StopPull_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/StopPull.dds not found
command icon mod:UI/Game/Icons/Commands/MoveToFieldFire_disable.dds not found
command icon mod:UI/Game/Icons/Commands/MoveToFieldFire_normal.dds not found
command icon mod:UI/Game/Icons/Commands/MoveToFieldFire_over.dds not found
command icon mod:UI/Game/Icons/Commands/MoveToFieldFire_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/MoveToFieldFire.dds not found
command icon mod:UI/Game/Icons/Commands/MoveToFieldSmoke_disable.dds not found
command icon mod:UI/Game/Icons/Commands/MoveToFieldSmoke_normal.dds not found
command icon mod:UI/Game/Icons/Commands/MoveToFieldSmoke_over.dds not found
command icon mod:UI/Game/Icons/Commands/MoveToFieldSmoke_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/MoveToFieldSmoke.dds not found
command icon mod:UI/Game/Icons/Commands/MoveToFieldDummy_disable.dds not found
command icon mod:UI/Game/Icons/Commands/MoveToFieldDummy_normal.dds not found
command icon mod:UI/Game/Icons/Commands/MoveToFieldDummy_over.dds not found
command icon mod:UI/Game/Icons/Commands/MoveToFieldDummy_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/MoveToFieldDummy.dds not found
command icon mod:UI/Game/Icons/Commands/MoveToFieldHouse_disable.dds not found
command icon mod:UI/Game/Icons/Commands/MoveToFieldHouse_normal.dds not found
command icon mod:UI/Game/Icons/Commands/MoveToFieldHouse_over.dds not found
command icon mod:UI/Game/Icons/Commands/MoveToFieldHouse_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/MoveToFieldHouse.dds not found
command icon mod:UI/Game/Icons/Commands/TutThrow_disable.dds not found
command icon mod:UI/Game/Icons/Commands/TutThrow_normal.dds not found
command icon mod:UI/Game/Icons/Commands/TutThrow_over.dds not found
command icon mod:UI/Game/Icons/Commands/TutThrow_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/TutThrow.dds not found
command icon mod:UI/Game/Icons/Commands/Unload_disable.dds not found
command icon mod:UI/Game/Icons/Commands/Unload_normal.dds not found
command icon mod:UI/Game/Icons/Commands/Unload_over.dds not found
command icon mod:UI/Game/Icons/Commands/Unload_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/Unload.dds not found
Loading strings meta list...
Loaded lang:infotexts.xml
Loaded lang:poi.xml
Loaded lang:portraits.xml
Loaded lang:fail.xml
Loaded lang:ingamehelp.xml
Loaded lang:objectives.xml
Loaded lang:hints.xml
Loaded lang:missiontitles.xml
Loaded lang:missiontips.xml
Loaded lang:mission.xml
Loaded lang:talk.xml
Loaded lang:supervobj.xml
Loaded lang:supervfail.xml
Loaded lang:supervresult.xml
Loaded lang:supervtut.xml
Loaded lang:tutorial.xml
Loaded lang:command.xml
Loaded lang:supervobj.xml
Loaded lang:credits.xml
Loaded lang:supervquest.xml
Loaded lang:quest.xml
Loaded lang:supervaward.xml
Loaded lang:events.xml
Loaded lang:supervevents.xml
Loaded lang:superveventsobj.xml
Loaded lang:mainmenu.xml
Loaded lang:gui.xml
Loaded lang:score.xml
Loaded lang:strings.xml
Loaded lang:voices.xml
mod found: BFEMP
mod found: Blues And Twos Mod
mod found: Borough Of Fire Brooklyn Modification
mod found: Boston Mod
mod found: BOSTON MOD 2014
mod found: Boston Mod Beta
mod found: Copenhagen Airport Modification 1.0
mod found: Emergency City
mod found: Fairfax County MOD 1.1.5
mod found: Falkenburg FHZ Mod
mod found: Harbor City 4.0 REMAKE
mod found: Harbor City 4.6.1 Public
mod found: Harbor City 5
mod found: London Mod v1.3
mod found: London Multiplayer Mod 1.0
mod found: Los Angeles Mod v2.1 singleplayer
mod found: Manchester Mod v1.1.0
mod found: Manhattan Modification - Midtown
mod found: Mayberry Mod V1.4.1
mod found: Mentor Fire Modification
mod found: Montana Mod 2.0.1
mod found: Northview - South County v2.0.4
mod found: NYC MOD 1.01
mod found: Ocean City Modification V1.3
mod found: Ocean City Modification V1.4
mod found: River Falls V0.5
mod found: RockPort Mod
mod found: The Riverside Modification V1.5
mod found: The Riverside Modification V2.0
mod found: Tri-County Mod
Init Network...
!VVideoPlayer::PlayVideo(): file 'base:/Video/16t.mpg' not found
Campaign: 24 entries loaded
|Loading Model base:Models\Objects\misc\theobject01.v3o
|[VNUM=1.43]
|Model contains 592 vertices, 962 polygons, 0 bones, 0 muscleanimframes
|Loading Model base:Models\Objects\misc\theobject02.v3o
|[VNUM=1.43]
|Model contains 592 vertices, 962 polygons, 0 bones, 0 muscleanimframes
?UIDialog: Could not load 'base:UI/Game/MissionResult/FreeplayRanking.xml'
!Precaching prototypes
|Loading Model mod:Models\Objects\Equipment\stretcher.v3o
|[VNUM=1.43]
|Model contains 216 vertices, 102 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Objects/Equipment/stretcher.e4p precached
|Loading Model mod:Models\Objects\Wrecks\freightcarwreck01.v3o
|[VNUM=1.43]
|Model contains 802 vertices, 380 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Objects/Wrecks/freightcarwreck01.e4p precached
|Loading Model mod:Models\Objects\Wrecks\wreck01.v3o
|[VNUM=1.43]
|Model contains 875 vertices, 607 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Objects/Wrecks/wreck01.e4p precached
|Loading Model mod:Models\Objects\Wrecks\wreck02.v3o
|[VNUM=1.43]
|Model contains 957 vertices, 688 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Objects/Wrecks/wreck02.e4p precached
|Loading Model mod:Models\Objects\Wrecks\wreck03.v3o
|[VNUM=1.43]
|Model contains 932 vertices, 646 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Objects/Wrecks/wreck03.e4p precached
|Loading Model mod:Models\Objects\Wrecks\wreck04.v3o
|[VNUM=1.43]
|Model contains 1396 vertices, 920 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Objects/Wrecks/wreck04.e4p precached
|Loading Model mod:Models\Objects\Wrecks\wreck05.v3o
|[VNUM=1.43]
|Model contains 1246 vertices, 798 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Objects/Wrecks/wreck05.e4p precached
|Loading Model mod:Models\Objects\Wrecks\heliwreck01.v3o
|[VNUM=1.43]
|Model contains 1721 vertices, 926 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Objects/Wrecks/heliwreck01.e4p precached
|Loading Model mod:Models\Objects\Wrecks\truckwreck03.v3o
|[VNUM=1.43]
|Model contains 1721 vertices, 914 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Objects/Wrecks/truckwreck03.e4p precached
Loading gamma ramp...
Deleting units...
Scanning units...
Scanning equipment...
Loading equipment mod:Units/Equipment/F010Fire Extinguisher/...
Loading equipment mod:Units/Equipment/F020Fire Hose/...
Loading equipment mod:Units/Equipment/F030Jaws Of Life/...
Loading equipment mod:Units/Equipment/F040Chain Saw/...
Loading equipment mod:Units/Equipment/F050Axe/...
Loading equipment mod:Units/Equipment/F060Jump Pad/...
Loading equipment mod:Units/Equipment/P010Flash Grenade/...
Loading equipment mod:Units/Equipment/P020Road Block/...
Scanning personnel...
Loading personnel mod:Units/Personnel/Fire Department/010battalionchief/...
|Loading Model mod:Models\Persons\02 LA Fire Department\battalion_chief.v3o
|[VNUM=1.43]
|Model contains 527 vertices, 608 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/02 LA Fire Department/battalion_chief.e4p precached
Loading personnel mod:Units/Personnel/Fire Department/010Fire Fighter/...
|Loading Model mod:Models\Persons\Fire Department\firefighternorm.v3o
|[VNUM=1.43]
|Model contains 505 vertices, 590 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/Fire Department/firefighternorm.e4p precached
|Loading Model mod:Models\Persons\Fire Department\firefighternorm_upgrade.v3o
|[VNUM=1.43]
|Model contains 822 vertices, 612 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/Fire Department/firefighternorm_upgrade.e4p precached
Prototype mod:Prototypes/Persons/Fire Department/firefighternorm_upgrade2.e4p precached
Loading personnel mod:Units/Personnel/Fire Department/020Fire Fighter Masked/...
|Loading Model mod:Models\Persons\Fire Department\firefightermask.v3o
|[VNUM=1.43]
|Model contains 498 vertices, 561 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/Fire Department/firefightermask.e4p precached
|Loading Model mod:Models\Persons\Fire Department\firefightermask_upgraded.v3o
|[VNUM=1.43]
|Model contains 570 vertices, 615 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/Fire Department/firefightermask_upgraded.e4p precached
Prototype mod:Prototypes/Persons/Fire Department/firefightermask_upgraded2.e4p precached
Loading personnel mod:Units/Personnel/Fire Department/020firefighter/...
|Loading Model mod:Models\Persons\02 LA Fire Department\ff_emt.v3o
|[VNUM=1.43]
|Model contains 527 vertices, 608 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/02 LA Fire Department/ff_emt.e4p precached
Loading personnel mod:Units/Personnel/Fire Department/030Fire Fighter ABC/...
|Loading Model mod:Models\Persons\Fire Department\firefighterabc.v3o
|[VNUM=1.43]
|Model contains 664 vertices, 527 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/Fire Department/firefighterabc.e4p precached
|Loading Model mod:Models\Persons\Fire Department\firefighterabc_upgraded.v3o
|[VNUM=1.43]
|Model contains 664 vertices, 527 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/Fire Department/firefighterabc_upgraded.e4p precached
Prototype mod:Prototypes/Persons/Fire Department/firefighterabc_upgraded2.e4p precached
Loading personnel mod:Units/Personnel/Fire Department/030firefighterstretcher/...
|Loading Model mod:Models\Persons\02 LA Fire Department\ff_emt_stretcher.v3o
|[VNUM=1.43]
|Model contains 1598 vertices, 1194 polygons, 42 bones, 0 muscleanimframes
?Cannot add default animation set to C: incompatible bone structure?
Prototype mod:Prototypes/Persons/02 LA Fire Department/ff_emt_stretcher.e4p precached
Loading personnel mod:Units/Personnel/Fire Department/040Diver/...
|Loading Model mod:Models\Persons\Fire Department\diver.v3o
|[VNUM=1.43]
|Model contains 668 vertices, 644 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/Fire Department/diver.e4p precached
|Loading Model mod:Models\Persons\Fire Department\diver_upgraded.v3o
|[VNUM=1.43]
|Model contains 743 vertices, 706 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/Fire Department/diver_upgraded.e4p precached
Prototype mod:Prototypes/Persons/Fire Department/diver_upgraded2.e4p precached
Loading personnel mod:Units/Personnel/Fire Department/040firefighterscba/...
|Loading Model mod:Models\Persons\02 LA Fire Department\ff_emt_scba.v3o
|[VNUM=1.43]
|Model contains 520 vertices, 579 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/02 LA Fire Department/ff_emt_scba.e4p precached
Loading personnel mod:Units/Personnel/Fire Department/050firefighterhazmat/...
|Loading Model mod:Models\Persons\02 LA Fire Department\ff_hazmat.v3o
|[VNUM=1.43]
|Model contains 664 vertices, 527 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/02 LA Fire Department/ff_hazmat.e4p precached
Loading personnel mod:Units/Personnel/Fire Department/060diver2/...
|Loading Model mod:Models\Persons\02 LA Fire Department\ff_diver.v3o
|[VNUM=1.43]
|Model contains 668 vertices, 644 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/02 LA Fire Department/ff_diver.e4p precached
Loading personnel mod:Units/Personnel/Fire Department/070usarfirefighter/...
|Loading Model mod:Models\Persons\02 LA Fire Department\usar_ff.v3o
|[VNUM=1.43]
|Model contains 505 vertices, 590 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/02 LA Fire Department/usar_ff.e4p precached
Loading personnel mod:Units/Personnel/Fire Department/080usfsfirefighter/...
|Loading Model mod:Models\Persons\02 LA Fire Department\usfs_ff.v3o
|[VNUM=1.43]
|Model contains 397 vertices, 496 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/02 LA Fire Department/usfs_ff.e4p precached
Loading personnel mod:Units/Personnel/Fire Department/090usfsfirefighterscba/...
|Loading Model mod:Models\Persons\02 LA Fire Department\usfs_ff_scba.v3o
|[VNUM=1.43]
|Model contains 469 vertices, 541 polygons, 20 bones, 0 muscleanimframes
|Fixing invalid blended vertex weightings for model mod:Models\Persons\02 LA Fire Department\usfs_ff_scba!
Prototype mod:Prototypes/Persons/02 LA Fire Department/usfs_ff_scba.e4p precached
Scanning personnel...
Loading personnel mod:Units/Personnel/Ambulance/010Doctor/...
|Loading Model mod:Models\Persons\Ambulance\doctor_m.v3o
|[VNUM=1.43]
|Model contains 573 vertices, 468 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/Ambulance/doctor_m.e4p precached
|Loading Model mod:Models\Persons\Ambulance\doctor_f.v3o
|[VNUM=1.43]
|Model contains 413 vertices, 524 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/Ambulance/doctor_f.e4p precached
|Loading Model mod:Models\Persons\Ambulance\doctor_upgraded_m.v3o
|[VNUM=1.43]
|Model contains 773 vertices, 568 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/Ambulance/doctor_upgraded_m.e4p precached
|Loading Model mod:Models\Persons\Ambulance\doctor_upgraded_f.v3o
|[VNUM=1.43]
|Model contains 506 vertices, 586 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/Ambulance/doctor_upgraded_f.e4p precached
Prototype mod:Prototypes/Persons/Ambulance/doctor_upgraded2_m.e4p precached
Prototype mod:Prototypes/Persons/Ambulance/doctor_upgraded2_f.e4p precached
Loading personnel mod:Units/Personnel/Ambulance/010emscaptain/...
|Loading Model mod:Models\Persons\01 LA Ambulance\ems_paramedic_captain.v3o
|[VNUM=1.43]
|Model contains 527 vertices, 608 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/01 LA Ambulance/ems_paramedic_captain.e4p precached
Loading personnel mod:Units/Personnel/Ambulance/020paramedic/...
|Loading Model mod:Models\Persons\01 LA Ambulance\ff_paramedic_nohelmet.v3o
|[VNUM=1.43]
|Model contains 531 vertices, 616 polygons, 20 bones, 0 muscleanimframes
|Fixing invalid blended vertex weightings for model mod:Models\Persons\01 LA Ambulance\ff_paramedic_nohelmet!
Prototype mod:Prototypes/Persons/01 LA Ambulance/ff_paramedic.e4p precached
Loading personnel mod:Units/Personnel/Ambulance/020Paramedics/...
|Loading Model mod:Models\Persons\Ambulance\paramedic.v3o
|[VNUM=1.43]
|Model contains 1446 vertices, 1070 polygons, 42 bones, 0 muscleanimframes
?Cannot add default animation set to P: incompatible bone structure?
Prototype mod:Prototypes/Persons/Ambulance/paramedic.e4p precached
|Loading Model mod:Models\Persons\Ambulance\paramedic_upgraded.v3o
|[VNUM=1.43]
|Model contains 1514 vertices, 1110 polygons, 42 bones, 0 muscleanimframes
?Cannot add default animation set to P: incompatible bone structure?
Prototype mod:Prototypes/Persons/Ambulance/paramedic_upgraded.e4p precached
?Cannot add default animation set to P: incompatible bone structure?
Prototype mod:Prototypes/Persons/Ambulance/paramedic_upgraded2.e4p precached
Loading personnel mod:Units/Personnel/Ambulance/021countyp1/...
|Loading Model mod:Models\Persons\01 LA Ambulance\county_paramedic01.v3o
|[VNUM=1.43]
|Model contains 384 vertices, 486 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/01 LA Ambulance/county_paramedic01.e4p precached
Loading personnel mod:Units/Personnel/Ambulance/030Dog Leader/...
|Loading Model mod:Models\Persons\Ambulance\leaderrescuedog.v3o
|[VNUM=1.43]
|Model contains 369 vertices, 468 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/Ambulance/leaderrescuedog.e4p precached
|Loading Model mod:Models\Persons\Ambulance\leaderrescuedog_upgraded.v3o
|[VNUM=1.43]
|Model contains 496 vertices, 568 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/Ambulance/leaderrescuedog_upgraded.e4p precached
Prototype mod:Prototypes/Persons/Ambulance/leaderrescuedog_upgraded2.e4p precached
Loading personnel mod:Units/Personnel/Ambulance/030paramedicstretcher/...
|Loading Model mod:Models\Persons\01 LA Ambulance\ff_paramedic_stretcher.v3o
|[VNUM=1.43]
|Model contains 1598 vertices, 1194 polygons, 42 bones, 0 muscleanimframes
?Cannot add default animation set to V: incompatible bone structure?
Prototype mod:Prototypes/Persons/01 LA Ambulance/ff_paramedic_stretcher.e4p precached
Loading personnel mod:Units/Personnel/Ambulance/040paramedicscba/...
|Loading Model mod:Models\Persons\01 LA Ambulance\ff_paramedic_scba.v3o
|[VNUM=1.43]
|Model contains 520 vertices, 579 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/01 LA Ambulance/ff_paramedic_scba.e4p precached
Loading personnel mod:Units/Personnel/Ambulance/050dogleader/...
|Loading Model mod:Models\Persons\01 LA Ambulance\usar_leaderrescuedog.v3o
|[VNUM=1.43]
|Model contains 369 vertices, 468 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/01 LA Ambulance/usar_leaderrescuedog.e4p precached
Loading personnel mod:Units/Personnel/Ambulance/060coroners/...
|Loading Model mod:Models\Persons\01 LA Ambulance\coroners.v3o
|[VNUM=1.43]
|Model contains 1446 vertices, 1070 polygons, 42 bones, 0 muscleanimframes
?Cannot add default animation set to C: incompatible bone structure?
Prototype mod:Prototypes/Persons/01 LA Ambulance/coroners.e4p precached
Scanning personnel...
Loading personnel mod:Units/Personnel/Police/010lapdmotorcycleofficer/...
?Prototype not found: mod:Prototypes/Persons/03 LA Police/lapd_motorcycle_officer.e4p
Precaching of prototype mod:Prototypes/Persons/03 LA Police/lapd_motorcycle_officer.e4p failed.
?Prototype not found: mod:Prototypes/Persons/03 LA Police/lapd_motorcycle_officer.e4p
Precaching of prototype mod:Prototypes/Persons/03 LA Police/lapd_motorcycle_officer.e4p failed.
?Prototype not found: mod:Prototypes/Persons/03 LA Police/lapd_motorcycle_officer.e4p
Precaching of prototype mod:Prototypes/Persons/03 LA Police/lapd_motorcycle_officer.e4p failed.
?Prototype not found: mod:Prototypes/Persons/03 LA Police/lapd_motorcycle_officer.e4p
Precaching of prototype mod:Prototypes/Persons/03 LA Police/lapd_motorcycle_officer.e4p failed.
?Prototype not found: mod:Prototypes/Persons/03 LA Police/lapd_motorcycle_officer.e4p
Precaching of prototype mod:Prototypes/Persons/03 LA Police/lapd_motorcycle_officer.e4p failed.
?Prototype not found: mod:Prototypes/Persons/03 LA Police/lapd_motorcycle_officer.e4p
Precaching of prototype mod:Prototypes/Persons/03 LA Police/lapd_motorcycle_officer.e4p failed.
?Prototype not found: mod:Prototypes/Persons/03 LA Police/lapd_motorcycle_officer.e4p
Precaching of prototype mod:Prototypes/Persons/03 LA Police/lapd_motorcycle_officer.e4p failed.
?Prototype not found: mod:Prototypes/Persons/03 LA Police/lapd_motorcycle_officer.e4p
Precaching of prototype mod:Prototypes/Persons/03 LA Police/lapd_motorcycle_officer.e4p failed.
Loading personnel mod:Units/Personnel/Police/010Policeman/...
|Loading Model mod:Models\Persons\Police\policeman_m.v3o
|[VNUM=1.43]
|Model contains 588 vertices, 480 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/Police/policeman_m.e4p precached
|Loading Model mod:Models\Persons\Police\policeman_f.v3o
|[VNUM=1.43]
|Model contains 413 vertices, 512 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/Police/policeman_f.e4p precached
|Loading Model mod:Models\Persons\Police\policeman_upgraded_m.v3o
|[VNUM=1.43]
|Model contains 883 vertices, 604 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/Police/policeman_upgraded_m.e4p precached
|Loading Model mod:Models\Persons\Police\policeman_upgraded_f.v3o
|[VNUM=1.43]
|Model contains 562 vertices, 619 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/Police/policeman_upgraded_f.e4p precached
Prototype mod:Prototypes/Persons/Police/policeman_upgraded2_m.e4p precached
Prototype mod:Prototypes/Persons/Police/policeman_upgraded2_f.e4p precached
Loading personnel mod:Units/Personnel/Police/020lapdofficer/...
|Loading Model mod:Models\Persons\03 LA Police\lapd_officer_m.v3o
|[VNUM=1.43]
|Model contains 613 vertices, 506 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/03 LA Police/lapd_officer_m.e4p precached
|Loading Model mod:Models\Persons\03 LA Police\lapd_officer_f.v3o
|[VNUM=1.43]
|Model contains 665 vertices, 524 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/03 LA Police/lapd_officer_f.e4p precached
Loading personnel mod:Units/Personnel/Police/020Shooter/...
|Loading Model mod:Models\Persons\Police\shooter.v3o
|[VNUM=1.43]
|Model contains 733 vertices, 612 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/Police/shooter.e4p precached
|Loading Model mod:Models\Persons\Police\shooter_upgraded.v3o
|[VNUM=1.43]
|Model contains 899 vertices, 682 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/Police/shooter_upgraded.e4p precached
Prototype mod:Prototypes/Persons/Police/shooter_upgraded2.e4p precached
Loading personnel mod:Units/Personnel/Police/021ccpdtacofficer/...
|Loading Model mod:Models\Persons\03 LA Police\ccpd_tacofficer.v3o
|[VNUM=1.43]
|Model contains 613 vertices, 506 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/03 LA Police/ccpd_tacofficer.e4p precached
Loading personnel mod:Units/Personnel/Police/025lapddogleader/...
|Loading Model mod:Models\Persons\03 LA Police\lapd_officer_k9.v3o
|[VNUM=1.43]
|Model contains 613 vertices, 506 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/03 LA Police/lapd_dog_leader.e4p precached
Loading personnel mod:Units/Personnel/Police/030lapdswat/...
|Loading Model mod:Models\Persons\03 LA Police\lapd_swat.v3o
|[VNUM=1.43]
|Model contains 531 vertices, 595 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/03 LA Police/lapd_swat.e4p precached
Loading personnel mod:Units/Personnel/Police/030Sharp Shooter/...
|Loading Model mod:Models\Persons\Police\sharpshooter.v3o
|[VNUM=1.43]
|Model contains 435 vertices, 500 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/Police/sharpshooter.e4p precached
|Loading Model mod:Models\Persons\Police\sharpshooter_upgraded.v3o
|[VNUM=1.43]
|Model contains 589 vertices, 596 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/Police/sharpshooter_upgraded.e4p precached
Prototype mod:Prototypes/Persons/Police/sharpshooter_upgraded2.e4p precached
Loading personnel mod:Units/Personnel/Police/031ccsdswat/...
|Loading Model mod:Models\Persons\03 LA Police\ccsd_swat.v3o
|[VNUM=1.43]
|Model contains 531 vertices, 595 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/03 LA Police/ccsd_swat_officer.e4p precached
Loading personnel mod:Units/Personnel/Police/032Sharp Shooter/...
Loading personnel mod:Units/Personnel/Police/040lapdswatsharpshooter/...
|Loading Model mod:Models\Persons\03 LA Police\lapd_swat_sharpshooter.v3o
|[VNUM=1.43]
|Model contains 506 vertices, 555 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/03 LA Police/lapd_swat_sharpshooter.e4p precached
Loading personnel mod:Units/Personnel/Police/040Scout/...
|Loading Model mod:Models\Persons\Police\scout.v3o
|[VNUM=1.43]
|Model contains 418 vertices, 500 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/Police/scout.e4p precached
|Loading Model mod:Models\Persons\Police\scout_upgraded.v3o
|[VNUM=1.43]
|Model contains 506 vertices, 555 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/Police/scout_upgraded.e4p precached
Prototype mod:Prototypes/Persons/Police/scout_upgraded2.e4p precached
Loading personnel mod:Units/Personnel/Police/050chpofficer/...
|Loading Model mod:Models\Persons\03 LA Police\mhp_officer.v3o
|[VNUM=1.43]
|Model contains 613 vertices, 506 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/03 LA Police/chp_officer.e4p precached
Loading personnel mod:Units/Personnel/Police/050Profiler/...
|Loading Model mod:Models\Persons\Police\profiler.v3o
|[VNUM=1.43]
|Model contains 367 vertices, 468 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/Police/profiler.e4p precached
|Loading Model mod:Models\Persons\Police\profiler_upgrade.v3o
|[VNUM=1.43]
|Model contains 451 vertices, 498 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/Police/profiler_upgrade.e4p precached
Prototype mod:Prototypes/Persons/Police/profiler_upgrade2.e4p precached
Loading personnel mod:Units/Personnel/Police/060lasdofficer/...
|Loading Model mod:Models\Persons\03 LA Police\lasd_officer_m.v3o
|[VNUM=1.43]
|Model contains 613 vertices, 506 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/03 LA Police/lasd_officer.e4p precached
Loading personnel mod:Units/Personnel/Police/070bombsquad/...
|Loading Model mod:Models\Persons\03 LA Police\ccpd_eod_officer.v3o
|[VNUM=1.43]
|Model contains 664 vertices, 527 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/03 LA Police/lapd_bomb_squad.e4p precached
Loading personnel mod:Units/Personnel/Police/180negotiator/...
|Loading Model mod:Models\Persons\03 LA Police\negotiator.v3o
|[VNUM=1.43]
|Model contains 451 vertices, 498 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/03 LA Police/negotiator.e4p precached
Loading personnel mod:Units/Personnel/Police/190scout/...
|Loading Model mod:Models\Persons\03 LA Police\scout.v3o
|[VNUM=1.43]
|Model contains 506 vertices, 555 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/03 LA Police/scout.e4p precached
Loading personnel mod:Units/Personnel/Police/200usarmysoldier/...
|Loading Model mod:Models\Persons\05 US Army\us_army_soldier.v3o
|[VNUM=1.43]
|Model contains 531 vertices, 595 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/05 US Army/us_army_soldier.e4p precached
Loading personnel mod:Units/Personnel/Police/210usarmysharpshooter/...
Prototype mod:Prototypes/Persons/05 US Army/us_army_sharpshooter.e4p precached
Loading personnel mod:Units/Personnel/Police/220fbiagent/...
|Loading Model mod:Models\Persons\07 Government\fbi_agent.v3o
|[VNUM=1.43]
|Model contains 367 vertices, 468 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/07 Government/fbi_agent.e4p precached
Loading personnel mod:Units/Personnel/Police/230fbiagenttac/...
|Loading Model mod:Models\Persons\07 Government\fbi_agent_tac.v3o
|[VNUM=1.43]
|Model contains 451 vertices, 498 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/07 Government/fbi_agent_tac.e4p precached
Loading personnel mod:Units/Personnel/Police/240ssagent/...
|Loading Model mod:Models\Persons\07 Government\secret_service_agent.v3o
|[VNUM=1.43]
|Model contains 367 vertices, 468 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/07 Government/secret_service_agent.e4p precached
Loading personnel mod:Units/Personnel/Police/250atfagent/...
|Loading Model mod:Models\Persons\03 LA Police\atf_agent.v3o
|[VNUM=1.41]
|Model contains 380 vertices, 452 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/03 LA Police/atf_agent.e4p precached
Loading personnel mod:Units/Personnel/Police/260atfswat/...
|Loading Model mod:Models\Persons\03 LA Police\atf_swat.v3o
|[VNUM=1.43]
|Model contains 531 vertices, 595 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/03 LA Police/atf_swat.e4p precached
Loading personnel mod:Units/Personnel/Police/270atfsharpshooter/...
|Loading Model mod:Models\Persons\03 LA Police\atf_swat_sharpshooter.v3o
|[VNUM=1.43]
|Model contains 506 vertices, 555 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/03 LA Police/atf_swat_sharpshooter.e4p precached
Loading personnel mod:Units/Personnel/Police/280bpofficer/...
|Loading Model mod:Models\Persons\03 LA Police\bp_officer.v3o
|[VNUM=1.43]
|Model contains 588 vertices, 480 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/03 LA Police/bp_officer.e4p precached
Scanning personnel...
Loading personnel mod:Units/Personnel/TEC/010engineer/...
|Loading Model mod:Models\Persons\04 LA Tec\engineer.v3o
|[VNUM=1.43]
|Model contains 396 vertices, 506 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/04 LA Tec/engineer.e4p precached
Loading personnel mod:Units/Personnel/TEC/020uscgrescue/...
|Loading Model mod:Models\Persons\04 LA Tec\coast_guard.v3o
|[VNUM=1.43]
|Model contains 505 vertices, 590 polygons, 20 bones, 0 muscleanimframes
Prototype mod:Prototypes/Persons/04 LA Tec/coast_guard.e4p precached
Scanning vehicles...
Loading vehicle mod:Units/Vehicles/Fire Department/010RW/...
|Loading Model mod:Models\Vehicles\Fire Department\rw.v3o
|[VNUM=1.43]
|Model contains 1707 vertices, 791 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\rw_wheel01.v3o
|[VNUM=1.43]
|Model contains 83 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\rw_door01.v3o
|[VNUM=1.43]
|Model contains 118 vertices, 52 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\rw_door02.v3o
|[VNUM=1.43]
|Model contains 32 vertices, 12 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\rw_door03.v3o
|[VNUM=1.43]
|Model contains 32 vertices, 12 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\rw_door04.v3o
|[VNUM=1.43]
|Model contains 33 vertices, 16 polygons, 0 bones, 12 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\rw_door05.v3o
|[VNUM=1.43]
|Model contains 31 vertices, 14 polygons, 0 bones, 12 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\rw_door06.v3o
|[VNUM=1.43]
|Model contains 24 vertices, 16 polygons, 0 bones, 12 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\rw_spotlight_super.v3o
|[VNUM=1.43]
|Model contains 148 vertices, 84 polygons, 0 bones, 4 muscleanimframes
Prototype mod:Prototypes/Vehicles/Fire Department/rw.e4p precached
Loading vehicle mod:Units/Vehicles/Fire Department/020GTF/...
|Loading Model mod:Models\Vehicles\Fire Department\gtf.v3o
|[VNUM=1.43]
|Model contains 1343 vertices, 891 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\gtf_wheel01.v3o
|[VNUM=1.43]
|Model contains 50 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\gtf_door03.v3o
|[VNUM=1.43]
|Model contains 18 vertices, 16 polygons, 0 bones, 12 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\gtf_door01.v3o
|[VNUM=1.43]
|Model contains 18 vertices, 12 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\gtf_tube_super.v3o
|[VNUM=1.43]
|Model contains 83 vertices, 72 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/Fire Department/gtf.e4p precached
Loading vehicle mod:Units/Vehicles/Fire Department/030TLF/...
|Loading Model mod:Models\Vehicles\Fire Department\tlf.v3o
|[VNUM=1.43]
|Model contains 1244 vertices, 818 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\tlf_wheel01.v3o
|[VNUM=1.43]
|Model contains 50 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\tlf_wheel02.v3o
|[VNUM=1.43]
|Model contains 50 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\tlf_door01.v3o
|[VNUM=1.43]
|Model contains 95 vertices, 52 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\tlf_door02.v3o
|[VNUM=1.43]
|Model contains 16 vertices, 10 polygons, 0 bones, 59 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\tlf_door03.v3o
|[VNUM=1.43]
|Model contains 14 vertices, 8 polygons, 0 bones, 6 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\tlf_door04.v3o
|[VNUM=1.43]
|Model contains 20 vertices, 12 polygons, 0 bones, 59 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\tlf_cannon_super.v3o
|[VNUM=1.43]
|Model contains 160 vertices, 91 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/Fire Department/tlf.e4p precached
Loading vehicle mod:Units/Vehicles/Fire Department/040DLK/...
|Loading Model mod:Models\Vehicles\Fire Department\dlk.v3o
|[VNUM=1.43]
|Model contains 1595 vertices, 883 polygons, 0 bones, 6 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\dlk_wheel01.v3o
|[VNUM=1.43]
|Model contains 50 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\dlk_wheel02.v3o
|[VNUM=1.43]
|Model contains 50 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\dlk_door01.v3o
|[VNUM=1.43]
|Model contains 77 vertices, 52 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\dlk_base_super.v3o
|[VNUM=1.43]
|Model contains 240 vertices, 162 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\dlk_l1_super.v3o
|[VNUM=1.43]
|Model contains 88 vertices, 48 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\dlk_l2_super.v3o
|[VNUM=1.43]
|Model contains 64 vertices, 34 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\dlk_l3_super.v3o
|[VNUM=1.43]
|Model contains 48 vertices, 24 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\dlk_basket_super.v3o
|[VNUM=1.43]
|Model contains 156 vertices, 92 polygons, 0 bones, 7 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\dlk_canon_super.v3o
|[VNUM=1.43]
|Model contains 35 vertices, 33 polygons, 0 bones, 6 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\dlk_l4_super.v3o
|[VNUM=1.43]
|Model contains 48 vertices, 24 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/Fire Department/dlk.e4p precached
Loading vehicle mod:Units/Vehicles/Fire Department/050LPF/...
|Loading Model mod:Models\Vehicles\Fire Department\lpf.v3o
|[VNUM=1.43]
|Model contains 1238 vertices, 591 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\lpf_wheel01.v3o
|[VNUM=1.43]
|Model contains 70 vertices, 32 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\lpf_door01.v3o
|[VNUM=1.43]
|Model contains 18 vertices, 8 polygons, 0 bones, 12 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\lpf_cannon_super.v3o
|[VNUM=1.43]
|Model contains 1292 vertices, 785 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/Fire Department/lpf.e4p precached
Loading vehicle mod:Units/Vehicles/Fire Department/060DEKON/...
|Loading Model mod:Models\Vehicles\Fire Department\dekonp.v3o
|[VNUM=1.43]
|Model contains 2046 vertices, 1265 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\dekonp_wheel01.v3o
|[VNUM=1.43]
|Model contains 50 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\dekonp_door01.v3o
|[VNUM=1.43]
|Model contains 81 vertices, 52 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\dekonp_door02.v3o
|[VNUM=1.43]
|Model contains 61 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\dekonp_door03.v3o
|[VNUM=1.43]
|Model contains 61 vertices, 36 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/Fire Department/dekonp.e4p precached
Loading vehicle mod:Units/Vehicles/Fire Department/070FMB/...
|Loading Model mod:Models\Vehicles\02 LA Fire Department\swr_boat.v3o
|[VNUM=1.43]
|Model contains 385 vertices, 408 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\02 LA Fire Department\swr_boat_person01.v3o
|[VNUM=1.43]
|Model contains 468 vertices, 560 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\02 LA Fire Department\swr_boat_person02.v3o
|[VNUM=1.43]
|Model contains 441 vertices, 518 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/02 LA Fire Department/swr_boat.e4p precached
Loading vehicle mod:Units/Vehicles/Fire Department/080TFMB/...
|Loading Model mod:Models\Vehicles\Fire Department\tfmb.v3o
|[VNUM=1.43]
|Model contains 1371 vertices, 934 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\tfmb_wheel01.v3o
|[VNUM=1.43]
|Model contains 60 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\tfmb_wheel02.v3o
|[VNUM=1.43]
|Model contains 60 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\tfmb_door01.v3o
|[VNUM=1.43]
|Model contains 98 vertices, 58 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\fmb.v3o
|[VNUM=1.43]
|Model contains 1910 vertices, 898 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/Fire Department/tfmb.e4p precached
Loading vehicle mod:Units/Vehicles/Fire Department/090FLB/...
|Loading Model mod:Models\Vehicles\Fire Department\flb.v3o
|[VNUM=1.43]
|Model contains 2377 vertices, 1536 polygons, 3 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\flb_cannon_super.v3o
|[VNUM=1.43]
|Model contains 56 vertices, 38 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/Fire Department/flb.e4p precached
Loading vehicle mod:Units/Vehicles/Fire Department/100LF/...
|Loading Model mod:Models\Vehicles\Fire Department\lf.v3o
|[VNUM=1.43]
|Model contains 2019 vertices, 1794 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/Fire Department/lf.e4p precached
Loading vehicle mod:Units/Vehicles/Fire Department/105bcv/...
|Loading Model mod:Models\Vehicles\02 LA Fire Department\bc_suburban.v3o
|[VNUM=1.43]
|Model contains 26357 vertices, 23216 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\02 LA Fire Department\suburban_wheel.v3o
|[VNUM=1.43]
|Model contains 882 vertices, 294 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\04 LA ObjectChildren\trailer_coupling.v3o
|[VNUM=1.43]
|Model contains 74 vertices, 28 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/02 LA Fire Department/battalion_chief_vehicle.e4p precached
Loading vehicle mod:Units/Vehicles/Fire Department/107battalion2/...
|Loading Model mod:Models\Vehicles\02 LA Fire Department\Batt2.v3o
|[VNUM=1.43]
|Model contains 3643 vertices, 3594 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\ccpd_explorer_wheel01.v3o
|[VNUM=1.43]
|Model contains 182 vertices, 256 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\02 LA Fire Department\Batt2_door01.v3o
|[VNUM=1.43]
|Model contains 111 vertices, 141 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\02 LA Fire Department\Batt2_door02.v3o
|[VNUM=1.43]
|Model contains 86 vertices, 106 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\02 LA Fire Department\Batt2_door03.v3o
|[VNUM=1.43]
|Model contains 220 vertices, 296 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/02 LA Fire Department/Batt2.e4p precached
Loading vehicle mod:Units/Vehicles/Fire Department/108brush/...
|Loading Model mod:Models\Vehicles\02 LA Fire Department\brushtruck.v3o
|[VNUM=1.43]
|Model contains 42124 vertices, 14919 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\02 LA Fire Department\brushtruck_wheel01.v3o
|[VNUM=1.43]
|Model contains 3690 vertices, 1230 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\02 LA Fire Department\brushtruck_wheel02.v3o
|[VNUM=1.43]
|Model contains 2172 vertices, 724 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\02 LA Fire Department\brushtruck_door01.v3o
|[VNUM=1.43]
|Model contains 240 vertices, 240 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\02 LA Fire Department\brushtruck_door02.v3o
|[VNUM=1.43]
|Model contains 223 vertices, 240 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\02 LA Fire Department\brushtruck_door03.v3o
|[VNUM=1.43]
|Model contains 36 vertices, 12 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/02 LA Fire Department/brush_truck.e4p precached
Loading vehicle mod:Units/Vehicles/Fire Department/110fireengine1/...
|Loading Model mod:Models\Vehicles\02 LA Fire Department\engine_1.v3o
|[VNUM=1.43]
|Model contains 24894 vertices, 8298 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\02 LA Fire Department\firetire_front.v3o
|[VNUM=1.43]
|Model contains 2568 vertices, 856 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\02 LA Fire Department\firetire_rear.v3o
|[VNUM=1.43]
|Model contains 852 vertices, 284 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/02 LA Fire Department/fire_engine1.e4p precached
Loading vehicle mod:Units/Vehicles/Fire Department/120fireengine2/...
|Loading Model mod:Models\Vehicles\02 LA Fire Department\engine2.v3o
|[VNUM=1.43]
|Model contains 47103 vertices, 15701 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\02 LA Fire Department\engine2_door01.v3o
|[VNUM=1.43]
|Model contains 84 vertices, 28 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\02 LA Fire Department\engine2_door02.v3o
|[VNUM=1.43]
|Model contains 36 vertices, 12 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\02 LA Fire Department\fire_engine_cannon.v3o
|[VNUM=1.43]
|Model contains 211 vertices, 292 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Equipment\starterflag.v3o
|[VNUM=1.43]
|Model contains 34 vertices, 32 polygons, 0 bones, 18 muscleanimframes
Prototype mod:Prototypes/Vehicles/02 LA Fire Department/fire_engine2.e4p precached
Loading vehicle mod:Units/Vehicles/Fire Department/121Engine 2/...
|Loading Model mod:Models\Vehicles\02 LA Fire Department\Engine 2.v3o
|[VNUM=1.43]
|Model contains 13016 vertices, 5489 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\02 LA Fire Department\Engine 2_door01.v3o
|[VNUM=1.43]
|Model contains 38 vertices, 24 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/02 LA Fire Department/RF_Engine2.e4p precached
Loading vehicle mod:Units/Vehicles/Fire Department/130foamtender/...
|Loading Model mod:Models\Vehicles\02 LA Fire Department\water_tender.v3o
|[VNUM=1.43]
|Model contains 2403 vertices, 2429 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\02 LA Fire Department\water_tender_wheel.v3o
|[VNUM=1.43]
|Model contains 176 vertices, 180 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\02 LA Fire Department\water_tender_door01.v3o
|[VNUM=1.43]
|Model contains 70 vertices, 60 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\02 LA Fire Department\water_tender_door02.v3o
|[VNUM=1.43]
|Model contains 4 vertices, 2 polygons, 0 bones, 6 muscleanimframes
|Loading Model mod:Models\Vehicles\02 LA Fire Department\water_tender_cannon_super.v3o
|[VNUM=1.43]
|Model contains 160 vertices, 91 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/02 LA Fire Department/water_tender.e4p precached
Loading vehicle mod:Units/Vehicles/Fire Department/131foamtender 2/...
|Loading Model mod:Models\Vehicles\02 LA Fire Department\EngineLaFrance.v3o
|[VNUM=1.43]
|Model contains 20428 vertices, 11509 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\02 LA Fire Department\EngineLaFrance_door01.v3o
|[VNUM=1.43]
|Model contains 50 vertices, 24 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\02 LA Fire Department\EngineLaFrance_door02.v3o
|[VNUM=1.43]
|Model contains 50 vertices, 24 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\02 LA Fire Department\EngineLaFrance_door03.v3o
|[VNUM=1.43]
|Model contains 24 vertices, 12 polygons, 0 bones, 12 muscleanimframes
|Loading Model mod:Models\Vehicles\02 LA Fire Department\EngineLaFrance_door04.v3o
|[VNUM=1.43]
|Model contains 24 vertices, 12 polygons, 0 bones, 12 muscleanimframes
|Loading Model mod:Models\Objects\03 LA HouseFurniture\waterdispenser.v3o
|[VNUM=1.43]
|Model contains 63 vertices, 43 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Equipment\jumppad01.v3o
|[VNUM=1.43]
|Model contains 488 vertices, 472 polygons, 0 bones, 18 muscleanimframes
Prototype mod:Prototypes/Vehicles/02 LA Fire Department/Mutail_Aid_E24.e4p precached
Loading vehicle mod:Units/Vehicles/Fire Department/135aerialladder/...
|Loading Model mod:Models\Vehicles\02 LA Fire Department\aerial_ladder.v3o
|[VNUM=1.43]
|Model contains 9875 vertices, 3847 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\02 LA Fire Department\aerial_ladder_door01.v3o
|[VNUM=1.43]
|Model contains 32 vertices, 28 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\02 LA Fire Department\aerial_ladder_door02.v3o
|[VNUM=1.43]
|Model contains 24 vertices, 12 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\02 LA Fire Department\BF L1_base_super.v3o
|[VNUM=1.43]
|Model contains 183 vertices, 148 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\02 LA Fire Department\BF L1_l1_super.v3o
|[VNUM=1.43]
|Model contains 1517 vertices, 998 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\02 LA Fire Department\BF L1_l2_super.v3o
|[VNUM=1.43]
|Model contains 818 vertices, 504 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\02 LA Fire Department\BF L1_l3_super.v3o
|[VNUM=1.43]
|Model contains 818 vertices, 504 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\02 LA Fire Department\BF L1_l4_super.v3o
|[VNUM=1.43]
|Model contains 818 vertices, 504 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\02 LA Fire Department\aerial_ladder_cannon_super.v3o
|[VNUM=1.43]
|Model contains 211 vertices, 292 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\02 LA Fire Department\BF L1_basket_super.v3o
|[VNUM=1.43]
|Model contains 36 vertices, 20 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/02 LA Fire Department/aerial_ladder.e4p precached
Loading vehicle mod:Units/Vehicles/Fire Department/140aerialladder2/...
|Loading Model mod:Models\Vehicles\02 LA Fire Department\BF L1.v3o
|[VNUM=1.43]
|Model contains 7425 vertices, 3389 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\02 LA Fire Department\BF L1_door01.v3o
|[VNUM=1.43]
|Model contains 84 vertices, 28 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\02 LA Fire Department\BF L1_cannon_super.v3o
|[VNUM=1.43]
|Model contains 68 vertices, 74 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/02 LA Fire Department/RF_L1.e4p precached
Loading vehicle mod:Units/Vehicles/Fire Department/140usarsquad/...
|Loading Model mod:Models\Vehicles\02 LA Fire Department\usar_squad.v3o
|[VNUM=1.43]
|Model contains 4718 vertices, 3413 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\02 LA Fire Department\usar_squad_door01.v3o
|[VNUM=1.43]
|Model contains 31 vertices, 20 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\02 LA Fire Department\usar_squad_door02.v3o
|[VNUM=1.43]
|Model contains 24 vertices, 16 polygons, 0 bones, 12 muscleanimframes
Prototype mod:Prototypes/Vehicles/02 LA Fire Department/usar_squad.e4p precached
Loading vehicle mod:Units/Vehicles/Fire Department/150hes/...
|Loading Model mod:Models\Vehicles\02 LA Fire Department\F550.v3o
|[VNUM=1.43]
|Model contains 22989 vertices, 7663 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\01 LA Ambulance\Ambulance03_wheel01.v3o
|[VNUM=1.43]
|Model contains 203 vertices, 270 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\01 LA Ambulance\Ambulance03_wheel02.v3o
|[VNUM=1.43]
|Model contains 169 vertices, 236 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\02 LA Fire Department\F550_door.v3o
|[VNUM=1.43]
|Model contains 204 vertices, 68 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/02 LA Fire Department/heavy_equipment_squad.e4p precached
Loading vehicle mod:Units/Vehicles/Fire Department/170hazmatsquad/...
|Loading Model mod:Models\Vehicles\02 LA Fire Department\hazmat_squad.v3o
|[VNUM=1.43]
|Model contains 17795 vertices, 7417 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\01 LA Ambulance\topkick_wheel01_2.v3o
|[VNUM=1.43]
|Model contains 2568 vertices, 856 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\02 LA Fire Department\hazmat_squad_door03.v3o
|[VNUM=1.43]
|Model contains 50 vertices, 34 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\02 LA Fire Department\hazmat_squad_door02.v3o
|[VNUM=1.43]
|Model contains 32 vertices, 22 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\02 LA Fire Department\hazmat_squad_door01.v3o
|[VNUM=1.43]
|Model contains 270 vertices, 90 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\02 LA Fire Department\hazmat_squad_door04.v3o
|[VNUM=1.43]
|Model contains 12 vertices, 12 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/02 LA Fire Department/hazmat_squad.e4p precached
Loading vehicle mod:Units/Vehicles/Fire Department/171hazmattent/...
|Loading Model mod:Models\Vehicles\02 LA Fire Department\decontamination_tent.v3o
|[VNUM=1.43]
|Model contains 226 vertices, 210 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\02 LA Fire Department\decontamination_tent_door01.v3o
|[VNUM=1.43]
|Model contains 12 vertices, 12 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/02 LA Fire Department/decontamination_tent.e4p precached
Loading vehicle mod:Units/Vehicles/Fire Department/172usarsquad02/...
|Loading Model mod:Models\Vehicles\02 LA Fire Department\Rescue1.v3o
|[VNUM=1.43]
|Model contains 9811 vertices, 5561 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\02 LA Fire Department\Rescue1_door01.v3o
|[VNUM=1.43]
|Model contains 84 vertices, 42 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\02 LA Fire Department\Rescue1_door02.v3o
|[VNUM=1.43]
|Model contains 76 vertices, 38 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\02 LA Fire Department\Rescue1_door03.v3o
|[VNUM=1.43]
|Model contains 24 vertices, 12 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\02 LA Fire Department\Rescue1_door04.v3o
|[VNUM=1.43]
|Model contains 24 vertices, 12 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\02 LA Fire Department\Rescue1_door05.v3o
|[VNUM=1.43]
|Model contains 24 vertices, 12 polygons, 0 bones, 0 muscleanimframes
|Vision Core: Resized memory for Entities to  81 kB.
|Loading Model mod:Models\Vehicles\02 LA Fire Department\Rescue1_door06.v3o
|[VNUM=1.43]
|Model contains 24 vertices, 12 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\02 LA Fire Department\Rescue1_door07.v3o
|[VNUM=1.43]
|Model contains 24 vertices, 12 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/02 LA Fire Department/RF_R1.e4p precached
Loading vehicle mod:Units/Vehicles/Fire Department/200swr/...
|Loading Model mod:Models\Vehicles\02 LA Fire Department\swr_truck.v3o
|[VNUM=1.43]
|Model contains 1035 vertices, 1048 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\02 LA Fire Department\swr_truck_wheel01.v3o
|[VNUM=1.43]
|Model contains 147 vertices, 160 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\02 LA Fire Department\swr_truck_door01.v3o
|[VNUM=1.43]
|Model contains 76 vertices, 68 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\02 LA Fire Department\swr_truck_door02.v3o
|[VNUM=1.43]
|Model contains 12 vertices, 6 polygons, 0 bones, 6 muscleanimframes
|Loading Model mod:Models\Vehicles\02 LA Fire Department\swr_truck_door03.v3o
|[VNUM=1.43]
|Model contains 12 vertices, 6 polygons, 0 bones, 2 muscleanimframes
Prototype mod:Prototypes/Vehicles/02 LA Fire Department/swr_truck.e4p precached
Loading vehicle mod:Units/Vehicles/Fire Department/205swrboat/...
Loading vehicle mod:Units/Vehicles/Fire Department/208rescueboat/...
|Loading Model mod:Models\Vehicles\02 LA Fire Department\motorboat.v3o
|[VNUM=1.43]
|Model contains 876 vertices, 756 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Fire Department\fmb_door01.v3o
|[VNUM=1.43]
|Model contains 242 vertices, 93 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/02 LA Fire Department/motorboat.e4p precached
Loading vehicle mod:Units/Vehicles/Fire Department/210crashtender/...
|Loading Model mod:Models\Vehicles\02 LA Fire Department\crashtender.v3o
|[VNUM=1.43]
|Model contains 1498 vertices, 1541 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\02 LA Fire Department\crashtender_wheel01.v3o
|[VNUM=1.43]
|Model contains 57 vertices, 46 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\02 LA Fire Department\crashtender_door01.v3o
|[VNUM=1.43]
|Model contains 54 vertices, 54 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\02 LA Fire Department\crashtender_cannon_super.v3o
|[VNUM=1.43]
|Model contains 235 vertices, 326 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/02 LA Fire Department/crashtender.e4p precached
Loading vehicle mod:Units/Vehicles/Fire Department/220usfsutility/...
|Loading Model mod:Models\Vehicles\02 LA Fire Department\usfs_utility.v3o
|[VNUM=1.43]
|Model contains 866 vertices, 822 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\02 LA Fire Department\usfs_utility_wheel01.v3o
|[VNUM=1.43]
|Model contains 147 vertices, 160 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\02 LA Fire Department\usfs_utility_door01.v3o
|[VNUM=1.43]
|Model contains 67 vertices, 62 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\02 LA Fire Department\usfs_utility_door02.v3o
|[VNUM=1.43]
|Model contains 24 vertices, 12 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/02 LA Fire Department/usfs_utility.e4p precached
Loading vehicle mod:Units/Vehicles/Fire Department/230usfsengine/...
|Loading Model mod:Models\Vehicles\02 LA Fire Department\usfs_engine.v3o
|[VNUM=1.43]
|Model contains 1527 vertices, 1301 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\02 LA Fire Department\usfs_engine_door01.v3o
|[VNUM=1.43]
|Model contains 38 vertices, 24 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\02 LA Fire Department\usfs_engine_door02.v3o
|[VNUM=1.43]
|Model contains 24 vertices, 12 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\02 LA Fire Department\usfs_engine_door03.v3o
|[VNUM=1.43]
|Model contains 24 vertices, 12 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/02 LA Fire Department/usfs_engine.e4p precached
Loading vehicle mod:Units/Vehicles/Fire Department/240firefightboat/...
|Loading Model mod:Models\Vehicles\02 LA Fire Department\fire_fighting_boat.v3o
|[VNUM=1.43]
|Model contains 2377 vertices, 1536 polygons, 3 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/02 LA Fire Department/fire_fighting_boat.e4p precached
Loading vehicle mod:Units/Vehicles/Fire Department/250firefightplane/...
|Loading Model mod:Models\Vehicles\02 LA Fire Department\fire_fighting_airplane.v3o
|[VNUM=1.43]
|Model contains 2035 vertices, 1798 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/02 LA Fire Department/fire_fighting_airplane.e4p precached
Loading vehicle mod:Units/Vehicles/Fire Department/260trailer/...
|Loading Model mod:Models\Vehicles\02 LA Fire Department\trailer.v3o
|[VNUM=1.43]
|Model contains 1210 vertices, 811 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\02 LA Fire Department\trailer_wheel01.v3o
|[VNUM=1.43]
|Model contains 176 vertices, 180 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\02 LA Fire Department\trailer_door01.v3o
|[VNUM=1.43]
|Model contains 12 vertices, 12 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\02 LA Fire Department\trailer_door02.v3o
|[VNUM=1.43]
|Model contains 12 vertices, 12 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\02 LA Fire Department\trailer_door03.v3o
|[VNUM=1.43]
|Model contains 12 vertices, 12 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\02 LA Fire Department\trailer_door04.v3o
|[VNUM=1.43]
|Model contains 12 vertices, 12 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/02 LA Fire Department/trailer.e4p precached
Scanning vehicles...
Loading vehicle mod:Units/Vehicles/Ambulance/010NEF/...
|Loading Model mod:Models\Vehicles\Ambulance\nef.v3o
|[VNUM=1.43]
|Model contains 591 vertices, 456 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Ambulance\nef_wheel01.v3o
|[VNUM=1.43]
|Model contains 44 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Ambulance\nef_door01.v3o
|[VNUM=1.43]
|Model contains 36 vertices, 23 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/Ambulance/nef.e4p precached
Loading vehicle mod:Units/Vehicles/Ambulance/020RTW/...
|Loading Model mod:Models\Vehicles\Ambulance\rtw.v3o
|[VNUM=1.43]
|Model contains 1301 vertices, 1031 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Ambulance\rtw_wheel01.v3o
|[VNUM=1.43]
|Model contains 44 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Ambulance\rtw_door02.v3o
|[VNUM=1.43]
|Model contains 30 vertices, 18 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Ambulance\rtw_door01.v3o
|[VNUM=1.43]
|Model contains 101 vertices, 70 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Ambulance\rtw_door03.v3o
|[VNUM=1.43]
|Model contains 30 vertices, 18 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/Ambulance/rtw.e4p precached
Loading vehicle mod:Units/Vehicles/Ambulance/030RHF/...
|Loading Model mod:Models\Vehicles\Ambulance\rhf.v3o
|[VNUM=1.43]
|Model contains 1033 vertices, 778 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Ambulance\rhf_wheel01.v3o
|[VNUM=1.43]
|Model contains 48 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Ambulance\rhf_door01.v3o
|[VNUM=1.43]
|Model contains 67 vertices, 43 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Ambulance\rhf_door02.v3o
|[VNUM=1.43]
|Model contains 125 vertices, 59 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/Ambulance/rhf.e4p precached
Loading vehicle mod:Units/Vehicles/Ambulance/040ITW/...
|Loading Model mod:Models\Vehicles\Ambulance\itw.v3o
|[VNUM=1.43]
|Model contains 1183 vertices, 876 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Ambulance\itw_wheel01.v3o
|[VNUM=1.43]
|Model contains 52 vertices, 44 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Ambulance\itw_door01.v3o
|[VNUM=1.43]
|Model contains 28 vertices, 18 polygons, 0 bones, 2 muscleanimframes
|Loading Model mod:Models\Vehicles\Ambulance\itw_door02.v3o
|[VNUM=1.43]
|Model contains 42 vertices, 28 polygons, 0 bones, 12 muscleanimframes
Prototype mod:Prototypes/Vehicles/Ambulance/itw.e4p precached
Loading vehicle mod:Units/Vehicles/Ambulance/050RHC/...
|Loading Model mod:Models\Vehicles\Ambulance\rhc.v3o
|[VNUM=1.43]
|Model contains 1220 vertices, 737 polygons, 0 bones, 8 muscleanimframes
|Loading Model mod:Models\Vehicles\Ambulance\rhc_door01.v3o
|[VNUM=1.43]
|Model contains 38 vertices, 20 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\ObjectChildren\rhc_rotor.v3o
|[VNUM=1.43]
|Model contains 372 vertices, 244 polygons, 0 bones, 93 muscleanimframes
Prototype mod:Prototypes/Vehicles/Ambulance/rhc.e4p precached
Loading vehicle mod:Units/Vehicles/Ambulance/060emscar/...
|Loading Model mod:Models\Vehicles\01 LA Ambulance\cvpi_ems.v3o
|[VNUM=1.43]
|Model contains 4416 vertices, 2937 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\Crown_wheel01.v3o
|[VNUM=1.43]
|Model contains 126 vertices, 160 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\01 LA Ambulance\cvpi_ems_door01.v3o
|[VNUM=1.43]
|Model contains 308 vertices, 380 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\01 LA Ambulance\cvpi_ems_door03.v3o
|[VNUM=1.43]
|Model contains 167 vertices, 203 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\01 LA Ambulance\cvpi_ems_door04.v3o
|[VNUM=1.43]
|Model contains 167 vertices, 203 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\01 LA Ambulance\cvpi_ems_door05.v3o
|[VNUM=1.43]
|Model contains 210 vertices, 282 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\01 LA Ambulance\cvpi_ems_door02.v3o
|[VNUM=1.43]
|Model contains 296 vertices, 380 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\01 LA Ambulance\cvpi_ems_door06.v3o
|[VNUM=1.43]
|Model contains 315 vertices, 332 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/01 LA Ambulance/cv_ems.e4p precached
Loading vehicle mod:Units/Vehicles/Ambulance/061ambulance01/...
|Loading Model mod:Models\Vehicles\01 LA Ambulance\ccpd_explorer.v3o
|[VNUM=1.43]
|Model contains 5287 vertices, 3574 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\01 LA Ambulance\ccpd_explorer_door01.v3o
|[VNUM=1.43]
|Model contains 111 vertices, 141 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\01 LA Ambulance\ccpd_explorer_door02.v3o
|[VNUM=1.43]
|Model contains 86 vertices, 106 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\01 LA Ambulance\ccpd_explorer_door03.v3o
|[VNUM=1.43]
|Model contains 220 vertices, 296 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\08 Lightbars\setina_sedan_tag.v3o
|[VNUM=1.43]
|Model contains 2436 vertices, 812 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/01 LA Ambulance/ambulance01.e4p precached
Loading vehicle mod:Units/Vehicles/Ambulance/069ambulance03/...
|Loading Model mod:Models\Vehicles\01 LA Ambulance\ambulance03.v3o
|[VNUM=1.43]
|Model contains 5088 vertices, 3745 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\01 LA Ambulance\ambulance03_door01.v3o
|[VNUM=1.43]
|Model contains 240 vertices, 240 polygons, 0 bones, 0 muscleanimframes
|Vision Core: Resized memory for Entities to  99 kB.
|Loading Model mod:Models\Vehicles\01 LA Ambulance\ambulance03_door02.v3o
|[VNUM=1.43]
|Model contains 223 vertices, 240 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\01 LA Ambulance\ambulance03_door03.v3o
|[VNUM=1.43]
|Model contains 20 vertices, 10 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\01 LA Ambulance\ambulance03_door04.v3o
|[VNUM=1.43]
|Model contains 20 vertices, 10 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\01 LA Ambulance\ambulance03_door05.v3o
|[VNUM=1.43]
|Model contains 20 vertices, 10 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/01 LA Ambulance/ambulance03.e4p precached
Loading vehicle mod:Units/Vehicles/Ambulance/070ambulance02/...
|Loading Model mod:Models\Vehicles\01 LA Ambulance\ambulance05.v3o
|[VNUM=1.43]
|Model contains 3804 vertices, 3317 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/01 LA Ambulance/ambulance02.e4p precached
Loading vehicle mod:Units/Vehicles/Ambulance/071amrambulance07/...
|Loading Model mod:Models\Vehicles\01 LA Ambulance\amrambulance07.v3o
|[VNUM=1.43]
|Model contains 8158 vertices, 8403 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\01 LA Ambulance\amrambulance_door01.v3o
|[VNUM=1.43]
|Model contains 179 vertices, 191 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\01 LA Ambulance\amrambulance_door02.v3o
|[VNUM=1.43]
|Model contains 116 vertices, 124 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\01 LA Ambulance\amrambulance_door03.v3o
|[VNUM=1.43]
|Model contains 116 vertices, 124 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\01 LA Ambulance\amrambulance_door04.v3o
|[VNUM=1.43]
|Model contains 156 vertices, 146 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\01 LA Ambulance\amrambulance_door05.v3o
|[VNUM=1.43]
|Model contains 157 vertices, 146 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/01 LA Ambulance/amrambulance07.e4p precached
Loading vehicle mod:Units/Vehicles/Ambulance/072topkickambulance/...
|Loading Model mod:Models\Vehicles\01 LA Ambulance\Topkick_ambulance.v3o
|[VNUM=1.43]
|Model contains 18840 vertices, 6280 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\01 LA Ambulance\topkick_wheel01.v3o
|[VNUM=1.43]
|Model contains 2568 vertices, 856 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\01 LA Ambulance\topkick_wheel02.v3o
|[VNUM=1.43]
|Model contains 984 vertices, 328 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\01 LA Ambulance\topkick_ambulance_door01.v3o
|[VNUM=1.43]
|Model contains 270 vertices, 90 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\01 LA Ambulance\topkick_ambulance_door02.v3o
|[VNUM=1.43]
|Model contains 270 vertices, 90 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\01 LA Ambulance\topkick_ambulance_door03.v3o
|[VNUM=1.43]
|Model contains 36 vertices, 12 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\01 LA Ambulance\topkick_ambulance_door04.v3o
|[VNUM=1.43]
|Model contains 36 vertices, 12 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/01 LA Ambulance/topkick_ambulance.e4p precached
Loading vehicle mod:Units/Vehicles/Ambulance/100ambulance04/...
|Loading Model mod:Models\Vehicles\01 LA Ambulance\amr_f350.v3o
|[VNUM=1.43]
|Model contains 3804 vertices, 3317 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\01 LA Ambulance\amr_f350_door01.v3o
|[VNUM=1.43]
|Model contains 240 vertices, 240 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\01 LA Ambulance\amr_f350_door02.v3o
|[VNUM=1.43]
|Model contains 223 vertices, 240 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\01 LA Ambulance\amr_f350_door03.v3o
|[VNUM=1.43]
|Model contains 20 vertices, 10 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\01 LA Ambulance\amr_f350_door04.v3o
|[VNUM=1.43]
|Model contains 20 vertices, 10 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\01 LA Ambulance\amr_f350_door05.v3o
|[VNUM=1.43]
|Model contains 20 vertices, 10 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/01 LA Ambulance/ambulance04.e4p precached
Loading vehicle mod:Units/Vehicles/Ambulance/110coronersvan/...
|Loading Model mod:Models\Vehicles\01 LA Ambulance\coroners_van.v3o
|[VNUM=1.43]
|Model contains 3418 vertices, 3332 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\01 LA Ambulance\coroners_van_door01.v3o
|[VNUM=1.43]
|Model contains 179 vertices, 191 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\01 LA Ambulance\coroners_van_door02.v3o
|[VNUM=1.43]
|Model contains 116 vertices, 124 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\01 LA Ambulance\coroners_van_door03.v3o
|[VNUM=1.43]
|Model contains 116 vertices, 124 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/01 LA Ambulance/coroners_van.e4p precached
Loading vehicle mod:Units/Vehicles/Ambulance/110mcu/...
?Prototype not found: mod:Prototypes/Vehicles/01 LA Ambulance/mass_casualty_unit.e4p
Precaching of prototype mod:Prototypes/Vehicles/01 LA Ambulance/mass_casualty_unit.e4p failed.
|Loading Model mod:Models\Vehicles\01 LA Ambulance\hazmat_squad.v3o
|[VNUM=1.43]
|Model contains 17795 vertices, 7417 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\02 LA Fire Department\firetire_rear_2.v3o
|[VNUM=1.43]
|Model contains 852 vertices, 284 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\01 LA Ambulance\hazmat_squad_door01.v3o
|[VNUM=1.43]
|Model contains 270 vertices, 90 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\01 LA Ambulance\hazmat_squad_door02.v3o
|[VNUM=1.43]
|Model contains 32 vertices, 22 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\01 LA Ambulance\hazmat_squad_door04.v3o
|[VNUM=1.43]
|Model contains 12 vertices, 12 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\01 LA Ambulance\hazmat_squad_door03.v3o
|[VNUM=1.43]
|Model contains 50 vertices, 34 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/01 LA Ambulance/hazmat_squad.e4p precached
Loading vehicle mod:Units/Vehicles/Ambulance/130rescuehelicopter/...
|Loading Model mod:Models\Vehicles\01 LA Ambulance\Bell412.v3o
|[VNUM=1.43]
|Model contains 2820 vertices, 3593 polygons, 0 bones, 21 muscleanimframes
|Loading Model mod:Models\Vehicles\01 LA Ambulance\Bell412_Rotor.v3o
|[VNUM=1.43]
|Model contains 586 vertices, 824 polygons, 0 bones, 99 muscleanimframes
Prototype mod:Prototypes/Vehicles/01 LA Ambulance/helicopter_rescue.e4p precached
Loading vehicle mod:Units/Vehicles/Ambulance/140rescuedogvehicle/...
|Loading Model mod:Models\Vehicles\01 LA Ambulance\usarvan.v3o
|[VNUM=1.43]
|Model contains 8557 vertices, 5045 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\01 LA Ambulance\usarvan_door01.v3o
|[VNUM=1.43]
|Model contains 179 vertices, 191 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\01 LA Ambulance\usarvan_door02.v3o
|[VNUM=1.43]
|Model contains 116 vertices, 124 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\01 LA Ambulance\usarvan_door03.v3o
|[VNUM=1.43]
|Model contains 116 vertices, 124 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/01 LA Ambulance/suv_rescue_dog.e4p precached
Scanning vehicles...
Loading vehicle mod:Units/Vehicles/Police/001ccpd100cvpi/...
|Loading Model mod:Models\Vehicles\03 LA Police\cvpi_pdpatrol.v3o
|[VNUM=1.43]
|Model contains 3441 vertices, 2796 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\cvpi_pdpatrol_door01.v3o
|[VNUM=1.43]
|Model contains 308 vertices, 380 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\cvpi_pdpatrol_door02.v3o
|[VNUM=1.43]
|Model contains 296 vertices, 380 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\cvpi_pdpatrol_door03.v3o
|[VNUM=1.43]
|Model contains 167 vertices, 203 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\cvpi_pdpatrol_door04.v3o
|[VNUM=1.43]
|Model contains 167 vertices, 203 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\cvpi_pdpatrol_door05.v3o
|[VNUM=1.43]
|Model contains 210 vertices, 282 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\cvpi_pdpatrol_door06.v3o
|[VNUM=1.43]
|Model contains 315 vertices, 332 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/03 LA Police/cv_lapd.e4p precached
Loading vehicle mod:Units/Vehicles/Police/002ccpd105van/...
|Loading Model mod:Models\Vehicles\03 LA Police\svan.v3o
|[VNUM=1.43]
|Model contains 8557 vertices, 5045 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\svan_door01.v3o
|[VNUM=1.43]
|Model contains 179 vertices, 191 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\svan_door02.v3o
|[VNUM=1.43]
|Model contains 116 vertices, 124 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\svan_door03.v3o
|[VNUM=1.43]
|Model contains 116 vertices, 124 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/03 LA Police/lasd_van.e4p precached
Loading vehicle mod:Units/Vehicles/Police/003ccpd110cvpi/...
|Loading Model mod:Models\Vehicles\03 LA Police\cvpi_pdpatrol2.v3o
|[VNUM=1.43]
|Model contains 8115 vertices, 5041 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\cvpi_pdpatrol2_door01.v3o
|[VNUM=1.43]
|Model contains 308 vertices, 380 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\cvpi_pdpatrol2_door02.v3o
|[VNUM=1.43]
|Model contains 296 vertices, 380 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\cvpi_pdpatrol2_door03.v3o
|[VNUM=1.43]
|Model contains 167 vertices, 203 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\cvpi_pdpatrol2_door04.v3o
|[VNUM=1.43]
|Model contains 167 vertices, 203 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\cvpi_pdpatrol2_door05.v3o
|[VNUM=1.43]
|Model contains 210 vertices, 282 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\cvpi_pdpatrol2_door06.v3o
|[VNUM=1.43]
|Model contains 315 vertices, 332 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/03 LA Police/ccpd_patrol2.e4p precached
Loading vehicle mod:Units/Vehicles/Police/004ccpd115impala/...
|Loading Model mod:Models\Vehicles\03 LA Police\sd_impala.v3o
|[VNUM=1.43]
|Model contains 7584 vertices, 5151 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\Impala_wheel01.v3o
|[VNUM=1.43]
|Model contains 135 vertices, 193 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\sd_impala_Door1.v3o
|[VNUM=1.43]
|Model contains 135 vertices, 134 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\sd_impala_Door2.v3o
|[VNUM=1.43]
|Model contains 125 vertices, 134 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\sd_impala_Door3.v3o
|[VNUM=1.43]
|Model contains 108 vertices, 106 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\sd_impala_Trunk.v3o
|[VNUM=1.43]
|Model contains 132 vertices, 172 polygons, 0 bones, 0 muscleanimframes
|Vision Core: Resized memory for Entities to  117 kB.
Prototype mod:Prototypes/Vehicles/03 LA Police/impala_sheriff.e4p precached
Loading vehicle mod:Units/Vehicles/Police/005ccpd120impala/...
|Loading Model mod:Models\Vehicles\03 LA Police\ccpd_impala.v3o
|[VNUM=1.43]
|Model contains 4541 vertices, 4134 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\ccpd_impala_Door1.v3o
|[VNUM=1.43]
|Model contains 135 vertices, 134 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\ccpd_impala_Door2.v3o
|[VNUM=1.43]
|Model contains 125 vertices, 134 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\ccpd_impala_Door3.v3o
|[VNUM=1.43]
|Model contains 108 vertices, 106 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\ccpd_impala_Trunk.v3o
|[VNUM=1.43]
|Model contains 132 vertices, 172 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/03 LA Police/lapd_impala.e4p precached
Loading vehicle mod:Units/Vehicles/Police/006ccpd125cvpi/...
|Loading Model mod:Models\Vehicles\03 LA Police\cvpi_spatrol.v3o
|[VNUM=1.43]
|Model contains 7491 vertices, 4833 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\cvpi_spatrol_door01.v3o
|[VNUM=1.43]
|Model contains 308 vertices, 380 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\cvpi_spatrol_door03.v3o
|[VNUM=1.43]
|Model contains 167 vertices, 203 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\cvpi_spatrol_door04.v3o
|[VNUM=1.43]
|Model contains 167 vertices, 203 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\cvpi_spatrol_door02.v3o
|[VNUM=1.43]
|Model contains 296 vertices, 380 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\cvpi_spatrol_door05.v3o
|[VNUM=1.43]
|Model contains 210 vertices, 282 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\cvpi_spatrol_door06.v3o
|[VNUM=1.43]
|Model contains 315 vertices, 332 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/03 LA Police/cv_lasd.e4p precached
Loading vehicle mod:Units/Vehicles/Police/007ccpd130charger/...
|Loading Model mod:Models\Vehicles\03 LA Police\charger2012_pd.v3o
|[VNUM=1.43]
|Model contains 10414 vertices, 3740 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\charger2012_pd_door01.v3o
|[VNUM=1.43]
|Model contains 1046 vertices, 415 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\charger2012_pd_door02.v3o
|[VNUM=1.43]
|Model contains 998 vertices, 418 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\charger2012_pd_door03.v3o
|[VNUM=1.43]
|Model contains 614 vertices, 350 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/03 LA Police/dodge_charger_lapd.e4p precached
Loading vehicle mod:Units/Vehicles/Police/008ccpd135cvpi/...
|Loading Model mod:Models\Vehicles\03 LA Police\cvpi_mhp.v3o
|[VNUM=1.43]
|Model contains 7491 vertices, 4833 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\cvpi_mhp_door01.v3o
|[VNUM=1.43]
|Model contains 308 vertices, 380 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\cvpi_mhp_door02.v3o
|[VNUM=1.43]
|Model contains 296 vertices, 380 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\cvpi_mhp_door03.v3o
|[VNUM=1.43]
|Model contains 167 vertices, 203 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\cvpi_mhp_door04.v3o
|[VNUM=1.43]
|Model contains 167 vertices, 203 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\cvpi_mhp_door05.v3o
|[VNUM=1.43]
|Model contains 210 vertices, 282 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\bcso_traffic_cvpi_door06.v3o
|[VNUM=1.43]
|Model contains 4851 vertices, 1844 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/03 LA Police/cv_chp.e4p precached
Loading vehicle mod:Units/Vehicles/Police/009ccpd140cvpi_k9/...
|Loading Model mod:Models\Vehicles\03 LA Police\k9cvpi.v3o
|[VNUM=1.43]
|Model contains 2376 vertices, 2441 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\k9cvpi_door01.v3o
|[VNUM=1.43]
|Model contains 308 vertices, 380 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\k9cvpi_door02.v3o
|[VNUM=1.43]
|Model contains 296 vertices, 380 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\k9cvpi_door03.v3o
|[VNUM=1.43]
|Model contains 167 vertices, 203 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\k9cvpi_door04.v3o
|[VNUM=1.43]
|Model contains 167 vertices, 203 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\k9cvpi_door05.v3o
|[VNUM=1.43]
|Model contains 210 vertices, 282 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\k9cvpi_door06.v3o
|[VNUM=1.43]
|Model contains 315 vertices, 332 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/03 LA Police/cv_lapdk9.e4p precached
Loading vehicle mod:Units/Vehicles/Police/010ccpd145cvpi/...
|Loading Model mod:Models\Vehicles\03 LA Police\cvpi_spatrol2.v3o
|[VNUM=1.43]
|Model contains 5472 vertices, 3289 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\cvpi_spatrol2_door06.v3o
|[VNUM=1.43]
|Model contains 315 vertices, 332 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/03 LA Police/cv_ccsd2.e4p precached
Loading vehicle mod:Units/Vehicles/Police/010STW/...
|Loading Model mod:Models\Vehicles\Police\stw.v3o
|[VNUM=1.43]
|Model contains 688 vertices, 528 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Police\stw_wheel01.v3o
|[VNUM=1.43]
|Model contains 44 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Police\stw_door01.v3o
|[VNUM=1.43]
|Model contains 46 vertices, 30 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/Police/stw.e4p precached
Loading vehicle mod:Units/Vehicles/Police/011ccpd150cvpi_slick/...
|Loading Model mod:Models\Vehicles\03 LA Police\cvpi_ccpd_slicktop.v3o
|[VNUM=1.43]
|Model contains 1980 vertices, 2125 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\cvpi_ccpd_slicktop_door01.v3o
|[VNUM=1.43]
|Model contains 308 vertices, 380 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\cvpi_ccpd_slicktop_door02.v3o
|[VNUM=1.43]
|Model contains 296 vertices, 380 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\cvpi_ccpd_slicktop_door03.v3o
|[VNUM=1.43]
|Model contains 167 vertices, 203 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\cvpi_ccpd_slicktop_door04.v3o
|[VNUM=1.43]
|Model contains 167 vertices, 203 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\cvpi_ccpd_slicktop_door05.v3o
|[VNUM=1.43]
|Model contains 210 vertices, 282 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\cvpi_ccpd_slicktop_door06.v3o
|[VNUM=1.43]
|Model contains 315 vertices, 332 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/03 LA Police/cv_lapd_slicktop.e4p precached
Loading vehicle mod:Units/Vehicles/Police/012ccpd155excursion/...
|Loading Model mod:Models\Vehicles\03 LA Police\pd_excursion.v3o
|[VNUM=1.43]
|Model contains 5919 vertices, 3243 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\Excursion_wheel.v3o
|[VNUM=1.43]
|Model contains 99 vertices, 96 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\pd_Ex_Door1.v3o
|[VNUM=1.43]
|Model contains 206 vertices, 237 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\pd_Ex_Door2.v3o
|[VNUM=1.43]
|Model contains 208 vertices, 237 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\pd_Ex_Door3.v3o
|[VNUM=1.43]
|Model contains 56 vertices, 46 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\pd_Ex_Door4.v3o
|[VNUM=1.43]
|Model contains 58 vertices, 46 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\pd_Ex_Door5.v3o
|[VNUM=1.43]
|Model contains 45 vertices, 52 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\08 Lightbars\tagreader.v3o
|[VNUM=1.43]
|Model contains 1512 vertices, 504 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/03 LA Police/hummerh2_lasd.e4p precached
Loading vehicle mod:Units/Vehicles/Police/012ccpd160ford_suv/...
|Loading Model mod:Models\Vehicles\03 LA Police\ccpd_explorer.v3o
|[VNUM=1.43]
|Model contains 5287 vertices, 3574 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\ccpd_explorer_door01.v3o
|[VNUM=1.43]
|Model contains 111 vertices, 141 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\ccpd_explorer_door02.v3o
|[VNUM=1.43]
|Model contains 86 vertices, 106 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\ccpd_explorer_door03.v3o
|[VNUM=1.43]
|Model contains 220 vertices, 296 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/03 LA Police/suv_lapd.e4p precached
Loading vehicle mod:Units/Vehicles/Police/013ccpd165charger/...
|Loading Model mod:Models\Vehicles\03 LA Police\charger2012_mhp.v3o
|[VNUM=1.43]
|Model contains 10414 vertices, 3740 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\taurus_wheel01.v3o
|[VNUM=1.43]
|Model contains 126 vertices, 160 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\charger2012_mhp_door01.v3o
|[VNUM=1.43]
|Model contains 1046 vertices, 415 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\charger2012_mhp_door02.v3o
|[VNUM=1.43]
|Model contains 998 vertices, 418 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\charger2012_mhp_door03.v3o
|[VNUM=1.43]
|Model contains 614 vertices, 350 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/03 LA Police/dodge_charger_chp.e4p precached
Loading vehicle mod:Units/Vehicles/Police/013ccpd170taurus/...
|Loading Model mod:Models\Vehicles\03 LA Police\taurus_pd.v3o
|[VNUM=1.43]
|Model contains 10714 vertices, 10717 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\taurus_pd_door01.v3o
|[VNUM=1.43]
|Model contains 722 vertices, 733 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\taurus_pd_door02.v3o
|[VNUM=1.43]
|Model contains 722 vertices, 734 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\taurus_pd_door03.v3o
|[VNUM=1.43]
|Model contains 1399 vertices, 1557 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/03 LA Police/ccpd_taurus.e4p precached
Loading vehicle mod:Units/Vehicles/Police/014ccpd175swatexcursion/...
|Loading Model mod:Models\Vehicles\03 LA Police\swat_excursion.v3o
|[VNUM=1.43]
|Model contains 3003 vertices, 2437 polygons, 0 bones, 0 muscleanimframes
|Vision Core: Resized memory for Entities to  135 kB.
|Loading Model mod:Models\Vehicles\03 LA Police\swat_excursion_Door1.v3o
|[VNUM=1.43]
|Model contains 206 vertices, 237 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\swat_excursion_Door2.v3o
|[VNUM=1.43]
|Model contains 45 vertices, 52 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\08 Lightbars\bull.v3o
|[VNUM=1.43]
|Model contains 319 vertices, 428 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/03 LA Police/swat_suv.e4p precached
Loading vehicle mod:Units/Vehicles/Police/015lapdhelicopter/...
|Loading Model mod:Models\Vehicles\03 LA Police\as350_lapd.v3o
|[VNUM=1.43]
|Model contains 1890 vertices, 2574 polygons, 0 bones, 8 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\as350_lapd_door01.v3o
|[VNUM=1.43]
|Model contains 54 vertices, 78 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\as350_lapd_door02.v3o
|[VNUM=1.43]
|Model contains 24 vertices, 28 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\as350_lapd_rotor.v3o
|[VNUM=1.43]
|Model contains 444 vertices, 562 polygons, 0 bones, 124 muscleanimframes
Prototype mod:Prototypes/Vehicles/03 LA Police/as350_lapd.e4p precached
Loading vehicle mod:Units/Vehicles/Police/016unmarkedcvpi/...
|Loading Model mod:Models\Vehicles\03 LA Police\cvpi_umpc.v3o
|[VNUM=1.43]
|Model contains 1980 vertices, 2125 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\cvpi_umpc_door01.v3o
|[VNUM=1.43]
|Model contains 308 vertices, 380 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\cvpi_umpc_door02.v3o
|[VNUM=1.43]
|Model contains 296 vertices, 380 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\cvpi_umpc_door03.v3o
|[VNUM=1.43]
|Model contains 167 vertices, 203 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\cvpi_umpc_door04.v3o
|[VNUM=1.43]
|Model contains 167 vertices, 203 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\cvpi_umpc_door05.v3o
|[VNUM=1.43]
|Model contains 210 vertices, 282 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\cvpi_umpc_door06.v3o
|[VNUM=1.43]
|Model contains 315 vertices, 332 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\08 Lightbars\whelen_led_spotlight.v3o
|[VNUM=1.43]
|Model contains 1806 vertices, 602 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/03 LA Police/cv_umpc.e4p precached
Loading vehicle mod:Units/Vehicles/Police/017ccpd_swat_EOD-truck/...
|Loading Model mod:Models\Vehicles\03 LA Police\amr_f350.v3o
|[VNUM=1.43]
|Model contains 2022 vertices, 2043 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\amr_f350_door01.v3o
|[VNUM=1.43]
|Model contains 240 vertices, 240 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\amr_f350_door02.v3o
|[VNUM=1.43]
|Model contains 223 vertices, 240 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\08 Lightbars\600_white.v3o
|[VNUM=1.43]
|Model contains 36 vertices, 12 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\08 Lightbars\whelen_m7.v3o
|[VNUM=1.43]
|Model contains 108 vertices, 104 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\08 Lightbars\led_wide_flasher_white.v3o
|[VNUM=1.43]
|Model contains 28 vertices, 42 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\08 Lightbars\frontblitzer.v3o
|[VNUM=1.43]
|Model contains 200 vertices, 188 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\08 Lightbars\4m_01.v3o
|[VNUM=1.43]
|Model contains 847 vertices, 420 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/03 LA Police/squad4.e4p precached
Loading vehicle mod:Units/Vehicles/Police/018swattruck/...
|Loading Model mod:Models\Vehicles\03 LA Police\Bear01.v3o
|[VNUM=1.43]
|Model contains 6050 vertices, 4537 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\Bear01_wheel01.v3o
|[VNUM=1.43]
|Model contains 200 vertices, 252 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\Bear01_wheel02.v3o
|[VNUM=1.43]
|Model contains 214 vertices, 252 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\Bear01_door01.v3o
|[VNUM=1.43]
|Model contains 30 vertices, 32 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\Bear01_door02.v3o
|[VNUM=1.43]
|Model contains 30 vertices, 32 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/03 LA Police/rescue_truck01_lapd.e4p precached
Loading vehicle mod:Units/Vehicles/Police/020MTW/...
|Loading Model mod:Models\Vehicles\Police\mtw.v3o
|[VNUM=1.43]
|Model contains 1334 vertices, 664 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Police\mtw_wheel01.v3o
|[VNUM=1.43]
|Model contains 44 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Police\mtw_door01.v3o
|[VNUM=1.43]
|Model contains 137 vertices, 56 polygons, 0 bones, 8 muscleanimframes
Prototype mod:Prototypes/Vehicles/Police/mtw.e4p precached
Loading vehicle mod:Units/Vehicles/Police/030SW/...
|Loading Model mod:Models\Vehicles\Police\sw.v3o
|[VNUM=1.43]
|Model contains 1152 vertices, 676 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Police\sw_wheel01.v3o
|[VNUM=1.43]
|Model contains 56 vertices, 44 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Police\sw_door01.v3o
|[VNUM=1.43]
|Model contains 114 vertices, 58 polygons, 0 bones, 18 muscleanimframes
Prototype mod:Prototypes/Vehicles/Police/sw.e4p precached
Loading vehicle mod:Units/Vehicles/Police/040WAW/...
|Loading Model mod:Models\Vehicles\Police\waw.v3o
|[VNUM=1.43]
|Model contains 1489 vertices, 868 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Police\waw_wheel01.v3o
|[VNUM=1.43]
|Model contains 78 vertices, 64 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Police\waw_cannon_super.v3o
|[VNUM=1.43]
|Model contains 119 vertices, 73 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/Police/waw.e4p precached
Loading vehicle mod:Units/Vehicles/Police/050GTW/...
|Loading Model mod:Models\Vehicles\Police\gtw.v3o
|[VNUM=1.43]
|Model contains 1124 vertices, 867 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Police\gtw_wheel01.v3o
|[VNUM=1.43]
|Model contains 52 vertices, 44 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Police\gtw_door01.v3o
|[VNUM=1.43]
|Model contains 36 vertices, 24 polygons, 0 bones, 8 muscleanimframes
Prototype mod:Prototypes/Vehicles/Police/gtw.e4p precached
Loading vehicle mod:Units/Vehicles/Police/060phc/...
|Loading Model mod:Models\Vehicles\Police\phc.v3o
|[VNUM=1.43]
|Model contains 1844 vertices, 1055 polygons, 0 bones, 8 muscleanimframes
|Loading Model mod:Models\Vehicles\Police\phc_door01.v3o
|[VNUM=1.43]
|Model contains 43 vertices, 20 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\ObjectChildren\phc_rotor.v3o
|[VNUM=1.43]
|Model contains 374 vertices, 240 polygons, 0 bones, 88 muscleanimframes
Prototype mod:Prototypes/Vehicles/Police/phc.e4p precached
Loading vehicle mod:Units/Vehicles/Police/070FLIGHT/...
|Loading Model mod:Models\Vehicles\Police\getawaycar.v3o
|[VNUM=1.43]
|Model contains 523 vertices, 477 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Police\getawaycar_wheel01.v3o
|[VNUM=1.43]
|Model contains 48 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Police\getawaycar_door01.v3o
|[VNUM=1.43]
|Model contains 68 vertices, 50 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\ObjectChildren\drivebyshooting_rifle.v3o
|[VNUM=1.43]
|Model contains 214 vertices, 94 polygons, 0 bones, 25 muscleanimframes
Prototype mod:Prototypes/Vehicles/Police/getawaycar.e4p precached
Loading vehicle mod:Units/Vehicles/Police/113ccpd_swat_EOD-bombrobot/...
|Loading Model mod:Models\Vehicles\06 Objects\bomb_squad_robot.v3o
|[VNUM=1.43]
|Model contains 875 vertices, 676 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\06 Objects\bomb_squad_robot_wheel01.v3o
|[VNUM=1.43]
|Model contains 74 vertices, 64 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\06 Objects\bomb_squad_robot_door01.v3o
|[VNUM=1.43]
|Model contains 472 vertices, 328 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/06 Objects/bomb_squad_robot.e4p precached
Loading vehicle mod:Units/Vehicles/Police/138ccsd_helicopter/...
|Loading Model mod:Models\Vehicles\03 LA Police\as350_lasd.v3o
|[VNUM=1.43]
|Model contains 1894 vertices, 2574 polygons, 0 bones, 8 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\as350_lasd_door01.v3o
|[VNUM=1.43]
|Model contains 54 vertices, 78 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\as350_lasd_door02.v3o
|[VNUM=1.43]
|Model contains 24 vertices, 28 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\as350_lasd_rotor.v3o
|[VNUM=1.43]
|Model contains 444 vertices, 562 polygons, 0 bones, 124 muscleanimframes
Prototype mod:Prototypes/Vehicles/03 LA Police/as350_lasd.e4p precached
Loading vehicle mod:Units/Vehicles/Police/155mhp_helicopter/...
|Loading Model mod:Models\Vehicles\03 LA Police\as350_chp.v3o
|[VNUM=1.43]
|Model contains 1894 vertices, 2574 polygons, 0 bones, 8 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\as350_chp_door01.v3o
|[VNUM=1.43]
|Model contains 54 vertices, 78 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\as350_chp_door02.v3o
|[VNUM=1.43]
|Model contains 24 vertices, 28 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\as350_chp_rotor.v3o
|[VNUM=1.43]
|Model contains 444 vertices, 562 polygons, 0 bones, 124 muscleanimframes
Prototype mod:Prototypes/Vehicles/03 LA Police/as350_chp.e4p precached
Loading vehicle mod:Units/Vehicles/Police/300natguard_hmmwv/...
|Loading Model mod:Models\Vehicles\05 US Army\hmmwv.v3o
|[VNUM=1.43]
|Model contains 3670 vertices, 2039 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\05 US Army\hmmwv_door01.v3o
|[VNUM=1.43]
|Model contains 76 vertices, 40 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\05 US Army\hmmwv_door02.v3o
|[VNUM=1.43]
|Model contains 76 vertices, 40 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\05 US Army\hmmwv_door03.v3o
|[VNUM=1.43]
|Model contains 24 vertices, 12 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\05 US Army\hmmwv_door04.v3o
|[VNUM=1.43]
|Model contains 66 vertices, 64 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/05 US Army/hmmwv.e4p precached
Loading vehicle mod:Units/Vehicles/Police/301natguard_oshkoshTPV/...
|Loading Model mod:Models\Vehicles\05 US Army\Oshkosh TPV-ng.v3o
|[VNUM=1.43]
|Model contains 16206 vertices, 5402 polygons, 0 bones, 0 muscleanimframes
|Vision Core: Resized memory for Entities to  153 kB.
|Loading Model mod:Models\Vehicles\05 US Army\tpv-ng_tire01.v3o
|[VNUM=1.43]
|Model contains 1560 vertices, 520 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\05 US Army\tpv-ng_door01.v3o
|[VNUM=1.43]
|Model contains 756 vertices, 252 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/05 US Army/tpvnationalguard.e4p precached
Loading vehicle mod:Units/Vehicles/Police/330bombrobot/...
Loading vehicle mod:Units/Vehicles/Police/999getaway/...
|Loading Model mod:Models\Vehicles\03 LA Police\getawaycar.v3o
|[VNUM=1.43]
|Model contains 523 vertices, 477 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\getawaycar_wheel01.v3o
|[VNUM=1.43]
|Model contains 48 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\03 LA Police\getawaycar_door01.v3o
|[VNUM=1.43]
|Model contains 68 vertices, 50 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/03 LA Police/getawaycar.e4p precached
Loading vehicle mod:Units/Vehicles/Police/999STW/...
Scanning vehicles...
Loading vehicle mod:Units/Vehicles/TEC/010FGRI/...
|Loading Model mod:Models\Vehicles\TEC\fgri.v3o
|[VNUM=1.43]
|Model contains 839 vertices, 654 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\TEC\fgri_wheel01.v3o
|[VNUM=1.43]
|Model contains 48 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\TEC\fgri_door01.v3o
|[VNUM=1.43]
|Model contains 65 vertices, 52 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/TEC/fgri.e4p precached
Loading vehicle mod:Units/Vehicles/TEC/020ASF/...
|Loading Model mod:Models\Vehicles\04 LA Tec\asf.v3o
|[VNUM=1.43]
|Model contains 14955 vertices, 8492 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/04 LA Tec/asf.e4p precached
Loading vehicle mod:Units/Vehicles/TEC/030FGRR/...
|Loading Model mod:Models\Vehicles\TEC\fgr.v3o
|[VNUM=1.43]
|Model contains 1079 vertices, 641 polygons, 0 bones, 6 muscleanimframes
|Loading Model mod:Models\Vehicles\TEC\fgr_wheel01.v3o
|[VNUM=1.43]
|Model contains 50 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\TEC\fgr_arm_super.v3o
|[VNUM=1.43]
|Model contains 77 vertices, 40 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\TEC\fgr_arm2_super.v3o
|[VNUM=1.43]
|Model contains 100 vertices, 60 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\TEC\fgr_base_super.v3o
|[VNUM=1.43]
|Model contains 268 vertices, 150 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\TEC\fgr_hook_super.v3o
|[VNUM=1.43]
|Model contains 53 vertices, 49 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\TEC\fgr_arm3_super.v3o
|[VNUM=1.43]
|Model contains 24 vertices, 16 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\TEC\fgr_arm4_super.v3o
|[VNUM=1.43]
|Model contains 100 vertices, 48 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/TEC/fgr.e4p precached
Loading vehicle mod:Units/Vehicles/TEC/040FGRB/...
|Loading Model mod:Models\Vehicles\TEC\fgrb.v3o
|[VNUM=1.43]
|Model contains 4888 vertices, 1958 polygons, 5 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\TEC\fgrb_wheel02.v3o
|[VNUM=1.43]
|Model contains 98 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\TEC\fgrb_wheel01.v3o
|[VNUM=1.43]
|Model contains 98 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\TEC\fgrb_ship_super.v3o
|[VNUM=1.43]
|Model contains 954 vertices, 490 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\TEC\fgrb_stand_super.v3o
|[VNUM=1.43]
|Model contains 130 vertices, 64 polygons, 0 bones, 6 muscleanimframes
Prototype mod:Prototypes/Vehicles/TEC/fgrb.e4p precached
Loading vehicle mod:Units/Vehicles/TEC/050FGRT/...
|Loading Model mod:Models\Vehicles\TEC\fgr_t.v3o
|[VNUM=1.43]
|Model contains 1144 vertices, 900 polygons, 0 bones, 7 muscleanimframes
|Loading Model mod:Models\Vehicles\TEC\fgr_t_door01.v3o
|[VNUM=1.43]
|Model contains 32 vertices, 20 polygons, 0 bones, 8 muscleanimframes
|Loading Model mod:Models\Vehicles\TEC\fgr_t_super.v3o
|[VNUM=1.43]
|Model contains 120 vertices, 64 polygons, 0 bones, 18 muscleanimframes
|Loading Model mod:Models\Objects\ObjectChildren\fgr_t_rotor.v3o
|[VNUM=1.43]
|Model contains 724 vertices, 412 polygons, 0 bones, 192 muscleanimframes
Prototype mod:Prototypes/Vehicles/TEC/fgr_t.e4p precached
Loading vehicle mod:Units/Vehicles/TEC/060RL/...
|Loading Model mod:Models\Vehicles\04 LA Tec\dozer.v3o
|[VNUM=1.43]
|Model contains 2302 vertices, 1224 polygons, 0 bones, 26 muscleanimframes
|Loading Model mod:Models\Vehicles\04 LA Tec\dozer_wheel01.v3o
|[VNUM=1.43]
|Model contains 112 vertices, 80 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/04 LA Tec/dozer.e4p precached
Loading vehicle mod:Units/Vehicles/TEC/070TRL/...
|Loading Model mod:Models\Vehicles\TEC\fgr_rb.v3o
|[VNUM=1.43]
|Model contains 1153 vertices, 656 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\TEC\fgr_rb_wheel01.v3o
|[VNUM=1.43]
|Model contains 60 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\TEC\fgr_rb_dozer_wheel02.v3o
|[VNUM=1.43]
|Model contains 60 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\TEC\fgr_rb_door01.v3o
|[VNUM=1.43]
|Model contains 186 vertices, 92 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\TEC\fgr_rb_dozer.v3o
|[VNUM=1.43]
|Model contains 2302 vertices, 1224 polygons, 0 bones, 26 muscleanimframes
Prototype mod:Prototypes/Vehicles/TEC/fgr_rb.e4p precached
Loading vehicle mod:Units/Vehicles/TEC/080engineer/...
|Loading Model mod:Models\Vehicles\04 LA Tec\engineers_van.v3o
|[VNUM=1.43]
|Model contains 30528 vertices, 25928 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\04 LA Tec\engineers_van_door01.v3o
|[VNUM=1.43]
|Model contains 179 vertices, 191 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\04 LA Tec\engineers_van_door02.v3o
|[VNUM=1.43]
|Model contains 116 vertices, 124 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\04 LA Tec\engineers_van_door03.v3o
|[VNUM=1.43]
|Model contains 116 vertices, 124 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/04 LA Tec/engineer_vehicle.e4p precached
Loading vehicle mod:Units/Vehicles/TEC/090towtruck/...
|Loading Model mod:Models\Vehicles\04 LA Tec\tow_truck.v3o
|[VNUM=1.43]
|Model contains 1299 vertices, 1093 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\04 LA Tec\tow_truck_wheel01.v3o
|[VNUM=1.43]
|Model contains 176 vertices, 180 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/04 LA Tec/tow_truck.e4p precached
Loading vehicle mod:Units/Vehicles/TEC/100crane/...
|Loading Model mod:Models\Vehicles\04 LA Tec\crane.v3o
|[VNUM=1.43]
|Model contains 823 vertices, 491 polygons, 0 bones, 6 muscleanimframes
|Loading Model mod:Models\Vehicles\04 LA Tec\crane_wheel01.v3o
|[VNUM=1.43]
|Model contains 50 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\04 LA Tec\crane_base_super.v3o
|[VNUM=1.43]
|Model contains 268 vertices, 150 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\04 LA Tec\crane_arm_super.v3o
|[VNUM=1.43]
|Model contains 61 vertices, 32 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\04 LA Tec\crane_arm2_super.v3o
|[VNUM=1.43]
|Model contains 100 vertices, 60 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\04 LA Tec\crane_arm3_super.v3o
|[VNUM=1.43]
|Model contains 24 vertices, 16 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\04 LA Tec\crane_arm4_super.v3o
|[VNUM=1.43]
|Model contains 100 vertices, 48 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\04 LA Tec\crane_hook_super.v3o
|[VNUM=1.43]
|Model contains 53 vertices, 49 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/04 LA Tec/crane.e4p precached
Loading vehicle mod:Units/Vehicles/TEC/110pontoon/...
|Loading Model mod:Models\Vehicles\04 LA Tec\pontoon_bridge_vehicle.v3o
|[VNUM=1.43]
|Model contains 4888 vertices, 1958 polygons, 5 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\04 LA Tec\pontoon_bridge_vehicle_wheel01.v3o
|[VNUM=1.43]
|Model contains 98 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\04 LA Tec\pontoon_bridge_vehicle_wheel02.v3o
|[VNUM=1.43]
|Model contains 98 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\04 LA Tec\pontoon_bridge_vehicle_ship_super.v3o
|[VNUM=1.43]
|Model contains 908 vertices, 474 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\04 LA Tec\pontoon_bridge_vehicle_stand_super.v3o
|[VNUM=1.43]
|Model contains 130 vertices, 64 polygons, 0 bones, 6 muscleanimframes
Prototype mod:Prototypes/Vehicles/04 LA Tec/pontoon_bridge_vehicle.e4p precached
Loading vehicle mod:Units/Vehicles/TEC/120rescuehelicopter/...
|Loading Model mod:Models\Vehicles\04 LA Tec\uscg_jayhawk.v3o
|[VNUM=1.43]
|Model contains 1774 vertices, 2067 polygons, 0 bones, 8 muscleanimframes
|Loading Model mod:Models\Vehicles\04 LA Tec\uscg_jayhawk_door01.v3o
|[VNUM=1.43]
|Model contains 132 vertices, 120 polygons, 0 bones, 8 muscleanimframes
|Loading Model mod:Models\Vehicles\04 LA Tec\uscg_jayhawk_super.v3o
|[VNUM=1.43]
|Model contains 120 vertices, 64 polygons, 0 bones, 18 muscleanimframes
|Loading Model mod:Models\Objects\04 LA ObjectChildren\uscg_jayhawk_rotor.v3o
|[VNUM=1.43]
|Model contains 449 vertices, 470 polygons, 0 bones, 102 muscleanimframes
Prototype mod:Prototypes/Vehicles/04 LA Tec/uscg_jayhawk.e4p precached
Loading vehicle mod:Units/Vehicles/TEC/125dolphin/...
|Loading Model mod:Models\Vehicles\09 Government\uscg_dolphin.v3o
|[VNUM=1.43]
|Model contains 1319 vertices, 959 polygons, 0 bones, 8 muscleanimframes
|Loading Model mod:Models\Vehicles\09 Government\uscg_dolphin_door01.v3o
|[VNUM=1.43]
|Model contains 18 vertices, 26 polygons, 0 bones, 8 muscleanimframes
Prototype mod:Prototypes/Vehicles/09 Government/uscg_dolphin.e4p precached
Loading vehicle mod:Units/Vehicles/TEC/130bulldozer/...
Loading vehicle mod:Units/Vehicles/TEC/140bulldozertransporter/...
|Loading Model mod:Models\Vehicles\04 LA Tec\dozer_transporter.v3o
|[VNUM=1.43]
|Model contains 1089 vertices, 632 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\04 LA Tec\dozer_transporter_wheel01.v3o
|[VNUM=1.43]
|Model contains 60 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\04 LA Tec\dozer_transporter_wheel02.v3o
|[VNUM=1.43]
|Model contains 60 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\04 LA Tec\dozer_transporter_door01.v3o
|[VNUM=1.43]
|Model contains 186 vertices, 92 polygons, 0 bones, 0 muscleanimframes
Prototype mod:Prototypes/Vehicles/04 LA Tec/dozer_transporter.e4p precached
Loading vehicle mod:Units/Vehicles/TEC/150uscgboat/...
|Loading Model mod:Models\Vehicles\09 Government\uscg_boat.v3o
|[VNUM=1.43]
|Model contains 3108 vertices, 3630 polygons, 0 bones, 0 muscleanimframes
|Vision Core: Resized memory for Entities to  171 kB.
Prototype mod:Prototypes/Vehicles/09 Government/uscg_boat.e4p precached
Campaign: 34 entries loaded
Loading strings meta list...
Loaded mod:Lang/en/command.xml
Loaded mod:Lang/en/events.xml
Loaded mod:Lang/en/fail.xml
Loaded mod:Lang/en/gui.xml
Loaded mod:Lang/en/hints.xml
Loaded mod:Lang/en/infotexts.xml
Loaded mod:Lang/en/ingamehelp.xml
Loaded mod:Lang/en/mainmenu.xml
Loaded mod:Lang/en/mission.xml
Loaded mod:Lang/en/missiontips.xml
Loaded mod:Lang/en/missiontitles.xml
Loaded mod:Lang/en/objectives.xml
Loaded mod:Lang/en/poi.xml
Loaded mod:Lang/en/portraits.xml
Loaded mod:Lang/en/quest.xml
Loaded mod:Lang/en/score.xml
Loaded mod:Lang/en/strings.xml
Loaded mod:Lang/en/supervaward.xml
Loaded mod:Lang/en/supervevents.xml
Loaded mod:Lang/en/superveventsobj.xml
Loaded mod:Lang/en/supervfail.xml
Loaded mod:Lang/en/supervobj.xml
Loaded mod:Lang/en/supervquest.xml
Loaded mod:Lang/en/supervresult.xml
Loaded mod:Lang/en/supervtut.xml
Loaded mod:Lang/en/talk.xml
Loaded mod:Lang/en/tutorial.xml
Loaded mod:Lang/en/voices.xml
Loading gamma ramp...
command icon mod:UI/Game/Icons/Commands/AimedShot_disable.dds not found
command icon mod:UI/Game/Icons/Commands/AimedShot_normal.dds not found
command icon mod:UI/Game/Icons/Commands/AimedShot_over.dds not found
command icon mod:UI/Game/Icons/Commands/AimedShot_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/AimedShot.dds not found
command icon mod:UI/Game/Icons/Commands/DummyHosesAreOn_disable.dds not found
command icon mod:UI/Game/Icons/Commands/DummyHosesAreOn_normal.dds not found
command icon mod:UI/Game/Icons/Commands/DummyHosesAreOn_over.dds not found
command icon mod:UI/Game/Icons/Commands/DummyHosesAreOn_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/DummyHosesAreOn.dds not found
command icon mod:UI/Game/Icons/Commands/AttachFHVehicle_disable.dds not found
command icon mod:UI/Game/Icons/Commands/AttachFHVehicle_normal.dds not found
command icon mod:UI/Game/Icons/Commands/AttachFHVehicle_over.dds not found
command icon mod:UI/Game/Icons/Commands/AttachFHVehicle_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/AttachFHVehicle.dds not found
command icon mod:UI/Game/Icons/Commands/DummyAttachFirehose_disable.dds not found
command icon mod:UI/Game/Icons/Commands/DummyAttachFirehose_normal.dds not found
command icon mod:UI/Game/Icons/Commands/DummyAttachFirehose_over.dds not found
command icon mod:UI/Game/Icons/Commands/DummyAttachFirehose_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/DummyAttachFirehose.dds not found
command icon mod:UI/Game/Icons/Commands/DummyFullHeal_disable.dds not found
command icon mod:UI/Game/Icons/Commands/DummyFullHeal_normal.dds not found
command icon mod:UI/Game/Icons/Commands/DummyFullHeal_over.dds not found
command icon mod:UI/Game/Icons/Commands/DummyFullHeal_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/DummyFullHeal.dds not found
command icon mod:UI/Game/Icons/Commands/GetFlashgrenade_disable.dds not found
command icon mod:UI/Game/Icons/Commands/GetFlashgrenade_normal.dds not found
command icon mod:UI/Game/Icons/Commands/GetFlashgrenade_over.dds not found
command icon mod:UI/Game/Icons/Commands/GetFlashgrenade_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/GetFlashgrenade.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdArrest2_disable.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdArrest2_normal.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdArrest2_over.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdArrest2_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/PcmdArrest2.dds not found
command icon mod:UI/Game/Icons/Commands/DummyArrest_disable.dds not found
command icon mod:UI/Game/Icons/Commands/DummyArrest_normal.dds not found
command icon mod:UI/Game/Icons/Commands/DummyArrest_over.dds not found
command icon mod:UI/Game/Icons/Commands/DummyArrest_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/DummyArrest.dds not found
command icon mod:UI/Game/Icons/Commands/DummyArrest2_disable.dds not found
command icon mod:UI/Game/Icons/Commands/DummyArrest2_normal.dds not found
command icon mod:UI/Game/Icons/Commands/DummyArrest2_over.dds not found
command icon mod:UI/Game/Icons/Commands/DummyArrest2_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/DummyArrest2.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdATFDeploy_disable.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdATFDeploy_normal.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdATFDeploy_over.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdATFDeploy_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/VcmdATFDeploy.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdATFUndeploy_disable.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdATFUndeploy_normal.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdATFUndeploy_over.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdATFUndeploy_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/VcmdATFUndeploy.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdAutoSirenOn_disable.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdAutoSirenOn_normal.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdAutoSirenOn_over.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdAutoSirenOn_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/VcmdAutoSirenOn.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdAutoSirenOff_disable.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdAutoSirenOff_normal.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdAutoSirenOff_over.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdAutoSirenOff_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/VcmdAutoSirenOff.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdBallisticShieldGet_disable.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdBallisticShieldGet_normal.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdBallisticShieldGet_over.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdBallisticShieldGet_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/PcmdBallisticShieldGet.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdBallisticShieldRemove_disable.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdBallisticShieldRemove_normal.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdBallisticShieldRemove_over.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdBallisticShieldRemove_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/PcmdBallisticShieldRemove.dds not found
command icon mod:UI/Game/Icons/Commands/DummyBallisticShield_disable.dds not found
command icon mod:UI/Game/Icons/Commands/DummyBallisticShield_normal.dds not found
command icon mod:UI/Game/Icons/Commands/DummyBallisticShield_over.dds not found
command icon mod:UI/Game/Icons/Commands/DummyBallisticShield_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/DummyBallisticShield.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdCallAmbulance_disable.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdCallAmbulance_normal.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdCallAmbulance_over.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdCallAmbulance_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/PcmdCallAmbulance.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdCallAmbulance1_disable.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdCallAmbulance1_normal.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdCallAmbulance1_over.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdCallAmbulance1_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/PcmdCallAmbulance1.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdCallAmbulance2_disable.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdCallAmbulance2_normal.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdCallAmbulance2_over.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdCallAmbulance2_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/PcmdCallAmbulance2.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdCallEngine1_disable.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdCallEngine1_normal.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdCallEngine1_over.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdCallEngine1_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/PcmdCallEngine1.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdCallEngine2_disable.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdCallEngine2_normal.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdCallEngine2_over.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdCallEngine2_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/PcmdCallEngine2.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdCallLightForce_disable.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdCallLightForce_normal.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdCallLightForce_over.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdCallLightForce_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/PcmdCallLightForce.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdCallUSARSquad_disable.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdCallUSARSquad_normal.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdCallUSARSquad_over.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdCallUSARSquad_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/PcmdCallUSARSquad.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdCallHazmat_disable.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdCallHazmat_normal.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdCallHazmat_over.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdCallHazmat_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/PcmdCallHazmat.dds not found
command icon mod:UI/Game/Icons/Commands/DummyVehicleCalled_disable.dds not found
command icon mod:UI/Game/Icons/Commands/DummyVehicleCalled_normal.dds not found
command icon mod:UI/Game/Icons/Commands/DummyVehicleCalled_over.dds not found
command icon mod:UI/Game/Icons/Commands/DummyVehicleCalled_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/DummyVehicleCalled.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdRobotGet_disable.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdRobotGet_normal.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdRobotGet_over.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdRobotGet_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/PcmdRobotGet.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdRobotRemove_disable.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdRobotRemove_normal.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdRobotRemove_over.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdRobotRemove_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/PcmdRobotRemove.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdRobotSendTo_disable.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdRobotSendTo_normal.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdRobotSendTo_over.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdRobotSendTo_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/PcmdRobotSendTo.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdRobotUse_disable.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdRobotUse_normal.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdRobotUse_over.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdRobotUse_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/PcmdRobotUse.dds not found
command icon mod:UI/Game/Icons/Commands/DummyRobot_disable.dds not found
command icon mod:UI/Game/Icons/Commands/DummyRobot_normal.dds not found
command icon mod:UI/Game/Icons/Commands/DummyRobot_over.dds not found
command icon mod:UI/Game/Icons/Commands/DummyRobot_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/DummyRobot.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdCallPoliceHelicopter_disable.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdCallPoliceHelicopter_normal.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdCallPoliceHelicopter_over.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdCallPoliceHelicopter_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/PcmdCallPoliceHelicopter.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdCallRescueHelicopter_disable.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdCallRescueHelicopter_normal.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdCallRescueHelicopter_over.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdCallRescueHelicopter_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/PcmdCallRescueHelicopter.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdCallPatrolCar_disable.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdCallPatrolCar_normal.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdCallPatrolCar_over.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdCallPatrolCar_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/PcmdCallPatrolCar.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdChangeToFF_disable.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdChangeToFF_normal.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdChangeToFF_over.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdChangeToFF_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/PcmdChangeToFF.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdChangeToMask_disable.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdChangeToMask_normal.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdChangeToMask_over.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdChangeToMask_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/PcmdChangeToMask.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdGetTrafficVest_disable.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdGetTrafficVest_normal.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdGetTrafficVest_over.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdGetTrafficVest_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/PcmdGetTrafficVest.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdRemoveTrafficVest_disable.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdRemoveTrafficVest_normal.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdRemoveTrafficVest_over.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdRemoveTrafficVest_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/PcmdRemoveTrafficVest.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdGetTacVest_disable.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdGetTacVest_normal.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdGetTacVest_over.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdGetTacVest_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/PcmdGetTacVest.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdRemoveTacVest_disable.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdRemoveTacVest_normal.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdRemoveTacVest_over.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdRemoveTacVest_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/PcmdRemoveTacVest.dds not found
command icon mod:UI/Game/Icons/Commands/DummyChange_disable.dds not found
command icon mod:UI/Game/Icons/Commands/DummyChange_normal.dds not found
command icon mod:UI/Game/Icons/Commands/DummyChange_over.dds not found
command icon mod:UI/Game/Icons/Commands/DummyChange_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/DummyChange.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdFollow_disable.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdFollow_normal.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdFollow_over.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdFollow_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/VcmdFollow.dds not found
command icon mod:UI/Game/Icons/Commands/DummyUpdateFollowPos_disable.dds not found
command icon mod:UI/Game/Icons/Commands/DummyUpdateFollowPos_normal.dds not found
command icon mod:UI/Game/Icons/Commands/DummyUpdateFollowPos_over.dds not found
command icon mod:UI/Game/Icons/Commands/DummyUpdateFollowPos_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/DummyUpdateFollowPos.dds not found
command icon mod:UI/Game/Icons/Commands/DummyFollow_disable.dds not found
command icon mod:UI/Game/Icons/Commands/DummyFollow_normal.dds not found
command icon mod:UI/Game/Icons/Commands/DummyFollow_over.dds not found
command icon mod:UI/Game/Icons/Commands/DummyFollow_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/DummyFollow.dds not found
command icon mod:UI/Game/Icons/Commands/DummyCrane_disable.dds not found
command icon mod:UI/Game/Icons/Commands/DummyCrane_normal.dds not found
command icon mod:UI/Game/Icons/Commands/DummyCrane_over.dds not found
command icon mod:UI/Game/Icons/Commands/DummyCrane_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/DummyCrane.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdDead_disable.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdDead_normal.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdDead_over.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdDead_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/PcmdDead.dds not found
command icon mod:UI/Game/Icons/Commands/DummyBlanket_disable.dds not found
command icon mod:UI/Game/Icons/Commands/DummyBlanket_normal.dds not found
command icon mod:UI/Game/Icons/Commands/DummyBlanket_over.dds not found
command icon mod:UI/Game/Icons/Commands/DummyBlanket_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/DummyBlanket.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdDeploySWAT_disable.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdDeploySWAT_normal.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdDeploySWAT_over.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdDeploySWAT_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/VcmdDeploySWAT.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdDirectionalLightsOn_disable.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdDirectionalLightsOn_normal.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdDirectionalLightsOn_over.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdDirectionalLightsOn_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/VcmdDirectionalLightsOn.dds not found
cursor mod:UI/Game/Icons/Cursor/directionalon.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdDirectionalLightsOff_disable.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdDirectionalLightsOff_normal.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdDirectionalLightsOff_over.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdDirectionalLightsOff_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/VcmdDirectionalLightsOff.dds not found
cursor mod:UI/Game/Icons/Cursor/directionaloff.dds not found
command icon mod:UI/Game/Icons/Commands/DummyDirectionalLights_disable.dds not found
command icon mod:UI/Game/Icons/Commands/DummyDirectionalLights_normal.dds not found
command icon mod:UI/Game/Icons/Commands/DummyDirectionalLights_over.dds not found
command icon mod:UI/Game/Icons/Commands/DummyDirectionalLights_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/DummyDirectionalLights.dds not found
command icon mod:UI/Game/Icons/Commands/OpenDoor_disable.dds not found
command icon mod:UI/Game/Icons/Commands/OpenDoor_normal.dds not found
command icon mod:UI/Game/Icons/Commands/OpenDoor_over.dds not found
command icon mod:UI/Game/Icons/Commands/OpenDoor_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/OpenDoor.dds not found
command icon mod:UI/Game/Icons/Commands/CloseDoor_disable.dds not found
command icon mod:UI/Game/Icons/Commands/CloseDoor_normal.dds not found
command icon mod:UI/Game/Icons/Commands/CloseDoor_over.dds not found
command icon mod:UI/Game/Icons/Commands/CloseDoor_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/CloseDoor.dds not found
command icon mod:UI/Game/Icons/Commands/OpenCloseDoor_disable.dds not found
command icon mod:UI/Game/Icons/Commands/OpenCloseDoor_normal.dds not found
command icon mod:UI/Game/Icons/Commands/OpenCloseDoor_over.dds not found
command icon mod:UI/Game/Icons/Commands/OpenCloseDoor_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/OpenCloseDoor.dds not found
command icon mod:UI/Game/Icons/Commands/OpenDoor2_disable.dds not found
command icon mod:UI/Game/Icons/Commands/OpenDoor2_normal.dds not found
command icon mod:UI/Game/Icons/Commands/OpenDoor2_over.dds not found
command icon mod:UI/Game/Icons/Commands/OpenDoor2_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/OpenDoor2.dds not found
command icon mod:UI/Game/Icons/Commands/CloseDoor2_disable.dds not found
command icon mod:UI/Game/Icons/Commands/CloseDoor2_normal.dds not found
command icon mod:UI/Game/Icons/Commands/CloseDoor2_over.dds not found
command icon mod:UI/Game/Icons/Commands/CloseDoor2_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/CloseDoor2.dds not found
command icon mod:UI/Game/Icons/Commands/OpenCloseDoor2_disable.dds not found
command icon mod:UI/Game/Icons/Commands/OpenCloseDoor2_normal.dds not found
command icon mod:UI/Game/Icons/Commands/OpenCloseDoor2_over.dds not found
command icon mod:UI/Game/Icons/Commands/OpenCloseDoor2_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/OpenCloseDoor2.dds not found
command icon mod:UI/Game/Icons/Commands/OpenDoor3_disable.dds not found
command icon mod:UI/Game/Icons/Commands/OpenDoor3_normal.dds not found
command icon mod:UI/Game/Icons/Commands/OpenDoor3_over.dds not found
command icon mod:UI/Game/Icons/Commands/OpenDoor3_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/OpenDoor3.dds not found
command icon mod:UI/Game/Icons/Commands/CloseDoor3_disable.dds not found
command icon mod:UI/Game/Icons/Commands/CloseDoor3_normal.dds not found
command icon mod:UI/Game/Icons/Commands/CloseDoor3_over.dds not found
command icon mod:UI/Game/Icons/Commands/CloseDoor3_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/CloseDoor3.dds not found
command icon mod:UI/Game/Icons/Commands/OpenCloseDoor3_disable.dds not found
command icon mod:UI/Game/Icons/Commands/OpenCloseDoor3_normal.dds not found
command icon mod:UI/Game/Icons/Commands/OpenCloseDoor3_over.dds not found
command icon mod:UI/Game/Icons/Commands/OpenCloseDoor3_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/OpenCloseDoor3.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdDropDiver_disable.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdDropDiver_normal.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdDropDiver_over.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdDropDiver_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/VcmdDropDiver.dds not found
command icon mod:UI/Game/Icons/Commands/DummyEquipmentCommands_disable.dds not found
command icon mod:UI/Game/Icons/Commands/DummyEquipmentCommands_normal.dds not found
command icon mod:UI/Game/Icons/Commands/DummyEquipmentCommands_over.dds not found
command icon mod:UI/Game/Icons/Commands/DummyEquipmentCommands_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/DummyEquipmentCommands.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdFBIDeploy_disable.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdFBIDeploy_normal.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdFBIDeploy_over.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdFBIDeploy_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/VcmdFBIDeploy.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdFBIUndeploy_disable.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdFBIUndeploy_normal.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdFBIUndeploy_over.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdFBIUndeploy_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/VcmdFBIUndeploy.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdBuyFBI_disable.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdBuyFBI_normal.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdBuyFBI_over.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdBuyFBI_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/VcmdBuyFBI.dds not found
cursor mod:UI/Game/Icons/Cursor/buyfbi.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdBuyFBITac_disable.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdBuyFBITac_normal.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdBuyFBITac_over.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdBuyFBITac_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/VcmdBuyFBITac.dds not found
cursor mod:UI/Game/Icons/Cursor/buyfbitac.dds not found
command icon mod:UI/Game/Icons/Commands/DummyFBI_disable.dds not found
command icon mod:UI/Game/Icons/Commands/DummyFBI_normal.dds not found
command icon mod:UI/Game/Icons/Commands/DummyFBI_over.dds not found
command icon mod:UI/Game/Icons/Commands/DummyFBI_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/DummyFBI.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdAlarm_disable.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdAlarm_normal.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdAlarm_over.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdAlarm_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/VcmdAlarm.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdRoof_disable.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdRoof_normal.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdRoof_over.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdRoof_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/VcmdRoof.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdGarageDoorsUp_disable.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdGarageDoorsUp_normal.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdGarageDoorsUp_over.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdGarageDoorsUp_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/VcmdGarageDoorsUp.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdGarageDoorsDown_disable.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdGarageDoorsDown_normal.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdGarageDoorsDown_over.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdGarageDoorsDown_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/VcmdGarageDoorsDown.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdCallEMT_disable.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdCallEMT_normal.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdCallEMT_over.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdCallEMT_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/VcmdCallEMT.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdCallEMTSCBA_disable.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdCallEMTSCBA_normal.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdCallEMTSCBA_over.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdCallEMTSCBA_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/VcmdCallEMTSCBA.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdCallEMTStretcher_disable.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdCallEMTStretcher_normal.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdCallEMTStretcher_over.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdCallEMTStretcher_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/VcmdCallEMTStretcher.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdCallPM_disable.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdCallPM_normal.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdCallPM_over.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdCallPM_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/VcmdCallPM.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdCallPMSCBA_disable.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdCallPMSCBA_normal.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdCallPMSCBA_over.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdCallPMSCBA_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/VcmdCallPMSCBA.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdCallPMStretcher_disable.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdCallPMStretcher_normal.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdCallPMStretcher_over.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdCallPMStretcher_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/VcmdCallPMStretcher.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdCallDiver_disable.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdCallDiver_normal.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdCallDiver_over.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdCallDiver_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/VcmdCallDiver.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdCallHazmat_disable.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdCallHazmat_normal.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdCallHazmat_over.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdCallHazmat_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/VcmdCallHazmat.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdCallUSARFF_disable.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdCallUSARFF_normal.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdCallUSARFF_over.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdCallUSARFF_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/VcmdCallUSARFF.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdEmptyFireStation_disable.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdEmptyFireStation_normal.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdEmptyFireStation_over.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdEmptyFireStation_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/VcmdEmptyFireStation.dds not found
command icon mod:UI/Game/Icons/Commands/DummyDisableAlarm_disable.dds not found
command icon mod:UI/Game/Icons/Commands/DummyDisableAlarm_normal.dds not found
command icon mod:UI/Game/Icons/Commands/DummyDisableAlarm_over.dds not found
command icon mod:UI/Game/Icons/Commands/DummyDisableAlarm_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/DummyDisableAlarm.dds not found
command icon mod:UI/Game/Icons/Commands/DummyCallCrew_disable.dds not found
command icon mod:UI/Game/Icons/Commands/DummyCallCrew_normal.dds not found
command icon mod:UI/Game/Icons/Commands/DummyCallCrew_over.dds not found
command icon mod:UI/Game/Icons/Commands/DummyCallCrew_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/DummyCallCrew.dds not found
command icon mod:UI/Game/Icons/Commands/DummyGates_disable.dds not found
command icon mod:UI/Game/Icons/Commands/DummyGates_normal.dds not found
command icon mod:UI/Game/Icons/Commands/DummyGates_over.dds not found
command icon mod:UI/Game/Icons/Commands/DummyGates_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/DummyGates.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdAutoStaffOn_disable.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdAutoStaffOn_normal.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdAutoStaffOn_over.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdAutoStaffOn_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/VcmdAutoStaffOn.dds not found
cursor mod:UI/Game/Icons/Cursor/autostaffon.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdAutoStaffOff_disable.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdAutoStaffOff_normal.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdAutoStaffOff_over.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdAutoStaffOff_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/VcmdAutoStaffOff.dds not found
cursor mod:UI/Game/Icons/Cursor/autostaffoff.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdRepairVehicles_disable.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdRepairVehicles_normal.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdRepairVehicles_over.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdRepairVehicles_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/VcmdRepairVehicles.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdStart_disable.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdStart_normal.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdStart_over.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdStart_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/VcmdStart.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdFlareGet_disable.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdFlareGet_normal.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdFlareGet_over.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdFlareGet_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/PcmdFlareGet.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdFlareRemove_disable.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdFlareRemove_normal.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdFlareRemove_over.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdFlareRemove_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/PcmdFlareRemove.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdFlarePlace_disable.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdFlarePlace_normal.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdFlarePlace_over.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdFlarePlace_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/PcmdFlarePlace.dds not found
command icon mod:UI/Game/Icons/Commands/DummyFlare_disable.dds not found
command icon mod:UI/Game/Icons/Commands/DummyFlare_normal.dds not found
command icon mod:UI/Game/Icons/Commands/DummyFlare_over.dds not found
command icon mod:UI/Game/Icons/Commands/DummyFlare_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/DummyFlare.dds not found
command icon mod:UI/Game/Icons/Commands/Dummy3Flares_disable.dds not found
command icon mod:UI/Game/Icons/Commands/Dummy3Flares_normal.dds not found
command icon mod:UI/Game/Icons/Commands/Dummy3Flares_over.dds not found
command icon mod:UI/Game/Icons/Commands/Dummy3Flares_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/Dummy3Flares.dds not found
command icon mod:UI/Game/Icons/Commands/Dummy2Flares_disable.dds not found
command icon mod:UI/Game/Icons/Commands/Dummy2Flares_normal.dds not found
command icon mod:UI/Game/Icons/Commands/Dummy2Flares_over.dds not found
command icon mod:UI/Game/Icons/Commands/Dummy2Flares_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/Dummy2Flares.dds not found
command icon mod:UI/Game/Icons/Commands/Dummy1Flare_disable.dds not found
command icon mod:UI/Game/Icons/Commands/Dummy1Flare_normal.dds not found
command icon mod:UI/Game/Icons/Commands/Dummy1Flare_over.dds not found
command icon mod:UI/Game/Icons/Commands/Dummy1Flare_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/Dummy1Flare.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdFlashingLights_disable.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdFlashingLights_normal.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdFlashingLights_over.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdFlashingLights_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/VcmdFlashingLights.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdFloodLightInstall_disable.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdFloodLightInstall_normal.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdFloodLightInstall_over.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdFloodLightInstall_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/PcmdFloodLightInstall.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdFloodLightDeinstall_disable.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdFloodLightDeinstall_normal.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdFloodLightDeinstall_over.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdFloodLightDeinstall_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/PcmdFloodLightDeinstall.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdFloodLightsOn_disable.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdFloodLightsOn_normal.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdFloodLightsOn_over.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdFloodLightsOn_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/VcmdFloodLightsOn.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdFloodLightsOff_disable.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdFloodLightsOff_normal.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdFloodLightsOff_over.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdFloodLightsOff_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/VcmdFloodLightsOff.dds not found
command icon mod:UI/Game/Icons/Commands/DummyLights_disable.dds not found
command icon mod:UI/Game/Icons/Commands/DummyLights_normal.dds not found
command icon mod:UI/Game/Icons/Commands/DummyLights_over.dds not found
command icon mod:UI/Game/Icons/Commands/DummyLights_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/DummyLights.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdGetEMTBag_disable.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdGetEMTBag_normal.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdGetEMTBag_over.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdGetEMTBag_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/PcmdGetEMTBag.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdHazmatInstall_disable.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdHazmatInstall_normal.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdHazmatInstall_over.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdHazmatInstall_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/VcmdHazmatInstall.dds not found
cursor mod:UI/Game/Icons/Cursor/hazmat_install.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdHazmatDeinstall_disable.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdHazmatDeinstall_normal.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdHazmatDeinstall_over.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdHazmatDeinstall_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/VcmdHazmatDeinstall.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdHeadLightsOn_disable.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdHeadLightsOn_normal.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdHeadLightsOn_over.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdHeadLightsOn_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/VcmdHeadLightsOn.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdHeadLightsOff_disable.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdHeadLightsOff_normal.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdHeadLightsOff_over.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdHeadLightsOff_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/VcmdHeadLightsOff.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdHeal_disable.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdHeal_normal.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdHeal_over.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdHeal_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/PcmdHeal.dds not found
command icon mod:UI/Game/Icons/Commands/M03PickUp_disable.dds not found
command icon mod:UI/Game/Icons/Commands/M03PickUp_normal.dds not found
command icon mod:UI/Game/Icons/Commands/M03PickUp_over.dds not found
command icon mod:UI/Game/Icons/Commands/M03PickUp_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/M03PickUp.dds not found
command icon mod:UI/Game/Icons/Commands/M03PutInCar_disable.dds not found
command icon mod:UI/Game/Icons/Commands/M03PutInCar_normal.dds not found
command icon mod:UI/Game/Icons/Commands/M03PutInCar_over.dds not found
command icon mod:UI/Game/Icons/Commands/M03PutInCar_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/M03PutInCar.dds not found
command icon mod:UI/Game/Icons/Commands/M03Dummy_disable.dds not found
command icon mod:UI/Game/Icons/Commands/M03Dummy_normal.dds not found
command icon mod:UI/Game/Icons/Commands/M03Dummy_over.dds not found
command icon mod:UI/Game/Icons/Commands/M03Dummy_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/M03Dummy.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdM4Get_disable.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdM4Get_normal.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdM4Get_over.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdM4Get_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/PcmdM4Get.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdM4Remove_disable.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdM4Remove_normal.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdM4Remove_over.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdM4Remove_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/PcmdM4Remove.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdM4Shoot_disable.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdM4Shoot_normal.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdM4Shoot_over.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdM4Shoot_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/PcmdM4Shoot.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdM4Aim_disable.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdM4Aim_normal.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdM4Aim_over.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdM4Aim_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/PcmdM4Aim.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdM4AimEnd_disable.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdM4AimEnd_normal.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdM4AimEnd_over.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdM4AimEnd_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/PcmdM4AimEnd.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdM4MoveTo_disable.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdM4MoveTo_normal.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdM4MoveTo_over.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdM4MoveTo_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/PcmdM4MoveTo.dds not found
command icon mod:UI/Game/Icons/Commands/DummyM4_disable.dds not found
command icon mod:UI/Game/Icons/Commands/DummyM4_normal.dds not found
command icon mod:UI/Game/Icons/Commands/DummyM4_over.dds not found
command icon mod:UI/Game/Icons/Commands/DummyM4_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/DummyM4.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdMCUInstall_disable.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdMCUInstall_normal.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdMCUInstall_over.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdMCUInstall_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/VcmdMCUInstall.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdMCUDeinstall_disable.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdMCUDeinstall_normal.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdMCUDeinstall_over.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdMCUDeinstall_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/VcmdMCUDeinstall.dds not found
command icon mod:UI/Game/Icons/Commands/DummyMotorboat_disable.dds not found
command icon mod:UI/Game/Icons/Commands/DummyMotorboat_normal.dds not found
command icon mod:UI/Game/Icons/Commands/DummyMotorboat_over.dds not found
command icon mod:UI/Game/Icons/Commands/DummyMotorboat_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/DummyMotorboat.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdMotorcycleExit_disable.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdMotorcycleExit_normal.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdMotorcycleExit_over.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdMotorcycleExit_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/VcmdMotorcycleExit.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdMotorcycleEnter_disable.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdMotorcycleEnter_normal.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdMotorcycleEnter_over.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdMotorcycleEnter_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/PcmdMotorcycleEnter.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdMP5Get_disable.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdMP5Get_normal.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdMP5Get_over.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdMP5Get_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/PcmdMP5Get.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdMP5Remove_disable.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdMP5Remove_normal.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdMP5Remove_over.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdMP5Remove_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/PcmdMP5Remove.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdMP5Shoot_disable.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdMP5Shoot_normal.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdMP5Shoot_over.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdMP5Shoot_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/PcmdMP5Shoot.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdMP5Aim_disable.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdMP5Aim_normal.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdMP5Aim_over.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdMP5Aim_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/PcmdMP5Aim.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdMP5AimEnd_disable.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdMP5AimEnd_normal.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdMP5AimEnd_over.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdMP5AimEnd_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/PcmdMP5AimEnd.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdMP5MoveTo_disable.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdMP5MoveTo_normal.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdMP5MoveTo_over.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdMP5MoveTo_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/PcmdMP5MoveTo.dds not found
command icon mod:UI/Game/Icons/Commands/DummyMP5_disable.dds not found
command icon mod:UI/Game/Icons/Commands/DummyMP5_normal.dds not found
command icon mod:UI/Game/Icons/Commands/DummyMP5_over.dds not found
command icon mod:UI/Game/Icons/Commands/DummyMP5_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/DummyMP5.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdPatrol_disable.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdPatrol_normal.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdPatrol_over.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdPatrol_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/VcmdPatrol.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdPatrolAmbulance_disable.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdPatrolAmbulance_normal.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdPatrolAmbulance_over.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdPatrolAmbulance_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/VcmdPatrolAmbulance.dds not found
command icon mod:UI/Game/Icons/Commands/DummyPatrol_disable.dds not found
command icon mod:UI/Game/Icons/Commands/DummyPatrol_normal.dds not found
command icon mod:UI/Game/Icons/Commands/DummyPatrol_over.dds not found
command icon mod:UI/Game/Icons/Commands/DummyPatrol_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/DummyPatrol.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdBarricadeGet_disable.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdBarricadeGet_normal.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdBarricadeGet_over.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdBarricadeGet_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/PcmdBarricadeGet.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdBarricadeRemove_disable.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdBarricadeRemove_normal.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdBarricadeRemove_over.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdBarricadeRemove_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/PcmdBarricadeRemove.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdBarricadePlace_disable.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdBarricadePlace_normal.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdBarricadePlace_over.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdBarricadePlace_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/PcmdBarricadePlace.dds not found
command icon mod:UI/Game/Icons/Commands/DummyPoliceBarricade_disable.dds not found
command icon mod:UI/Game/Icons/Commands/DummyPoliceBarricade_normal.dds not found
command icon mod:UI/Game/Icons/Commands/DummyPoliceBarricade_over.dds not found
command icon mod:UI/Game/Icons/Commands/DummyPoliceBarricade_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/DummyPoliceBarricade.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdRotateBarricadeClockwise_disable.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdRotateBarricadeClockwise_normal.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdRotateBarricadeClockwise_over.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdRotateBarricadeClockwise_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/VcmdRotateBarricadeClockwise.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdRotateBarricadeCounterClockwise_disable.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdRotateBarricadeCounterClockwise_normal.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdRotateBarricadeCounterClockwise_over.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdRotateBarricadeCounterClockwise_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/VcmdRotateBarricadeCounterClockwise.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdPSGGet_disable.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdPSGGet_normal.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdPSGGet_over.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdPSGGet_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/PcmdPSGGet.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdPSGRemove_disable.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdPSGRemove_normal.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdPSGRemove_over.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdPSGRemove_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/PcmdPSGRemove.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdPSGAim_disable.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdPSGAim_normal.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdPSGAim_over.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdPSGAim_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/PcmdPSGAim.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdPSGShoot_disable.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdPSGShoot_normal.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdPSGShoot_over.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdPSGShoot_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/PcmdPSGShoot.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdPSGAimEnd_disable.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdPSGAimEnd_normal.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdPSGAimEnd_over.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdPSGAimEnd_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/PcmdPSGAimEnd.dds not found
command icon mod:UI/Game/Icons/Commands/DummyPSG_disable.dds not found
command icon mod:UI/Game/Icons/Commands/DummyPSG_normal.dds not found
command icon mod:UI/Game/Icons/Commands/DummyPSG_over.dds not found
command icon mod:UI/Game/Icons/Commands/DummyPSG_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/DummyPSG.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdRapidDeployment_disable.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdRapidDeployment_normal.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdRapidDeployment_over.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdRapidDeployment_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/VcmdRapidDeployment.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdInstallRope_disable.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdInstallRope_normal.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdInstallRope_over.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdInstallRope_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/VcmdInstallRope.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdDeInstallRope_disable.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdDeInstallRope_normal.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdDeInstallRope_over.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdDeInstallRope_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/VcmdDeInstallRope.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdSingleRappel_disable.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdSingleRappel_normal.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdSingleRappel_over.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdSingleRappel_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/VcmdSingleRappel.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdDoubleRappel_disable.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdDoubleRappel_normal.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdDoubleRappel_over.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdDoubleRappel_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/VcmdDoubleRappel.dds not found
command icon mod:UI/Game/Icons/Commands/DummyRappel_disable.dds not found
command icon mod:UI/Game/Icons/Commands/DummyRappel_normal.dds not found
command icon mod:UI/Game/Icons/Commands/DummyRappel_over.dds not found
command icon mod:UI/Game/Icons/Commands/DummyRappel_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/DummyRappel.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdRotateClockwise_disable.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdRotateClockwise_normal.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdRotateClockwise_over.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdRotateClockwise_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/VcmdRotateClockwise.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdRotateCounterClockwise_disable.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdRotateCounterClockwise_normal.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdRotateCounterClockwise_over.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdRotateCounterClockwise_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/VcmdRotateCounterClockwise.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdSiren_disable.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdSiren_normal.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdSiren_over.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdSiren_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/VcmdSiren.dds not found
command icon mod:UI/Game/Icons/Commands/DummyUpdatePos_disable.dds not found
command icon mod:UI/Game/Icons/Commands/DummyUpdatePos_normal.dds not found
command icon mod:UI/Game/Icons/Commands/DummyUpdatePos_over.dds not found
command icon mod:UI/Game/Icons/Commands/DummyUpdatePos_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/DummyUpdatePos.dds not found
command icon mod:UI/Game/Icons/Commands/DummyDisableSiren_disable.dds not found
command icon mod:UI/Game/Icons/Commands/DummyDisableSiren_normal.dds not found
command icon mod:UI/Game/Icons/Commands/DummyDisableSiren_over.dds not found
command icon mod:UI/Game/Icons/Commands/DummyDisableSiren_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/DummyDisableSiren.dds not found
command icon mod:UI/Game/Icons/Commands/DummyFindPath_disable.dds not found
command icon mod:UI/Game/Icons/Commands/DummyFindPath_normal.dds not found
command icon mod:UI/Game/Icons/Commands/DummyFindPath_over.dds not found
command icon mod:UI/Game/Icons/Commands/DummyFindPath_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/DummyFindPath.dds not found
command icon mod:UI/Game/Icons/Commands/DummyHasSiren_disable.dds not found
command icon mod:UI/Game/Icons/Commands/DummyHasSiren_normal.dds not found
command icon mod:UI/Game/Icons/Commands/DummyHasSiren_over.dds not found
command icon mod:UI/Game/Icons/Commands/DummyHasSiren_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/DummyHasSiren.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdStabilize_disable.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdStabilize_normal.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdStabilize_over.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdStabilize_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/PcmdStabilize.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdStandbyOn_disable.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdStandbyOn_normal.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdStandbyOn_over.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdStandbyOn_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/VcmdStandbyOn.dds not found
cursor mod:UI/Game/Icons/Cursor/standbyon.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdStandbyOff_disable.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdStandbyOff_normal.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdStandbyOff_over.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdStandbyOff_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/VcmdStandbyOff.dds not found
cursor mod:UI/Game/Icons/Cursor/standbyoff.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdStretcherDrop_disable.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdStretcherDrop_normal.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdStretcherDrop_over.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdStretcherDrop_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/PcmdStretcherDrop.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdStretcherGet_disable.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdStretcherGet_normal.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdStretcherGet_over.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdStretcherGet_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/PcmdStretcherGet.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdInstallTiller_disable.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdInstallTiller_normal.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdInstallTiller_over.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdInstallTiller_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/VcmdInstallTiller.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdDeinstallTiller_disable.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdDeinstallTiller_normal.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdDeinstallTiller_over.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdDeinstallTiller_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/VcmdDeinstallTiller.dds not found
command icon mod:UI/Game/Icons/Commands/DummyTiller_disable.dds not found
command icon mod:UI/Game/Icons/Commands/DummyTiller_normal.dds not found
command icon mod:UI/Game/Icons/Commands/DummyTiller_over.dds not found
command icon mod:UI/Game/Icons/Commands/DummyTiller_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/DummyTiller.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdGetTiller_disable.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdGetTiller_normal.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdGetTiller_over.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdGetTiller_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/VcmdGetTiller.dds not found
command icon mod:UI/Game/Icons/Commands/DummyGetTiller_disable.dds not found
command icon mod:UI/Game/Icons/Commands/DummyGetTiller_normal.dds not found
command icon mod:UI/Game/Icons/Commands/DummyGetTiller_over.dds not found
command icon mod:UI/Game/Icons/Commands/DummyGetTiller_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/DummyGetTiller.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdTillerBasketUp_disable.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdTillerBasketUp_normal.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdTillerBasketUp_over.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdTillerBasketUp_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/VcmdTillerBasketUp.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdTillerBasketDown_disable.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdTillerBasketDown_normal.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdTillerBasketDown_over.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdTillerBasketDown_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/VcmdTillerBasketDown.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdTillerCheck_disable.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdTillerCheck_normal.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdTillerCheck_over.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdTillerCheck_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/VcmdTillerCheck.dds not found
command icon mod:UI/Game/Icons/Commands/DummyTillerCheck_disable.dds not found
command icon mod:UI/Game/Icons/Commands/DummyTillerCheck_normal.dds not found
command icon mod:UI/Game/Icons/Commands/DummyTillerCheck_over.dds not found
command icon mod:UI/Game/Icons/Commands/DummyTillerCheck_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/DummyTillerCheck.dds not found
command icon mod:UI/Game/Icons/Commands/DummyTillerGoHome_disable.dds not found
command icon mod:UI/Game/Icons/Commands/DummyTillerGoHome_normal.dds not found
command icon mod:UI/Game/Icons/Commands/DummyTillerGoHome_over.dds not found
command icon mod:UI/Game/Icons/Commands/DummyTillerGoHome_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/DummyTillerGoHome.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdToFireStation_disable.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdToFireStation_normal.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdToFireStation_over.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdToFireStation_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/VcmdToFireStation.dds not found
command icon mod:UI/Game/Icons/Commands/DummyCheckParked_disable.dds not found
command icon mod:UI/Game/Icons/Commands/DummyCheckParked_normal.dds not found
command icon mod:UI/Game/Icons/Commands/DummyCheckParked_over.dds not found
command icon mod:UI/Game/Icons/Commands/DummyCheckParked_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/DummyCheckParked.dds not found
command icon mod:UI/Game/Icons/Commands/DummyAtFireStation_disable.dds not found
command icon mod:UI/Game/Icons/Commands/DummyAtFireStation_normal.dds not found
command icon mod:UI/Game/Icons/Commands/DummyAtFireStation_over.dds not found
command icon mod:UI/Game/Icons/Commands/DummyAtFireStation_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/DummyAtFireStation.dds not found
command icon mod:UI/Game/Icons/Commands/DummyEngine_disable.dds not found
command icon mod:UI/Game/Icons/Commands/DummyEngine_normal.dds not found
command icon mod:UI/Game/Icons/Commands/DummyEngine_over.dds not found
command icon mod:UI/Game/Icons/Commands/DummyEngine_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/DummyEngine.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdToHospital_disable.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdToHospital_normal.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdToHospital_over.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdToHospital_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/VcmdToHospital.dds not found
command icon mod:UI/Game/Icons/Commands/DummyAtHospital_disable.dds not found
command icon mod:UI/Game/Icons/Commands/DummyAtHospital_normal.dds not found
command icon mod:UI/Game/Icons/Commands/DummyAtHospital_over.dds not found
command icon mod:UI/Game/Icons/Commands/DummyAtHospital_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/DummyAtHospital.dds not found
command icon mod:UI/Game/Icons/Commands/DummyGoHome_disable.dds not found
command icon mod:UI/Game/Icons/Commands/DummyGoHome_normal.dds not found
command icon mod:UI/Game/Icons/Commands/DummyGoHome_over.dds not found
command icon mod:UI/Game/Icons/Commands/DummyGoHome_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/DummyGoHome.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdToPoliceStation_disable.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdToPoliceStation_normal.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdToPoliceStation_over.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdToPoliceStation_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/VcmdToPoliceStation.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdTrafficConeGet_disable.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdTrafficConeGet_normal.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdTrafficConeGet_over.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdTrafficConeGet_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/PcmdTrafficConeGet.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdTrafficConeRemove_disable.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdTrafficConeRemove_normal.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdTrafficConeRemove_over.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdTrafficConeRemove_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/PcmdTrafficConeRemove.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdTrafficConePlace_disable.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdTrafficConePlace_normal.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdTrafficConePlace_over.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdTrafficConePlace_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/PcmdTrafficConePlace.dds not found
command icon mod:UI/Game/Icons/Commands/DummyTrafficCone_disable.dds not found
command icon mod:UI/Game/Icons/Commands/DummyTrafficCone_normal.dds not found
command icon mod:UI/Game/Icons/Commands/DummyTrafficCone_over.dds not found
command icon mod:UI/Game/Icons/Commands/DummyTrafficCone_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/DummyTrafficCone.dds not found
command icon mod:UI/Game/Icons/Commands/Dummy3Cones_disable.dds not found
command icon mod:UI/Game/Icons/Commands/Dummy3Cones_normal.dds not found
command icon mod:UI/Game/Icons/Commands/Dummy3Cones_over.dds not found
command icon mod:UI/Game/Icons/Commands/Dummy3Cones_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/Dummy3Cones.dds not found
command icon mod:UI/Game/Icons/Commands/Dummy2Cones_disable.dds not found
command icon mod:UI/Game/Icons/Commands/Dummy2Cones_normal.dds not found
command icon mod:UI/Game/Icons/Commands/Dummy2Cones_over.dds not found
command icon mod:UI/Game/Icons/Commands/Dummy2Cones_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/Dummy2Cones.dds not found
command icon mod:UI/Game/Icons/Commands/Dummy1Cone_disable.dds not found
command icon mod:UI/Game/Icons/Commands/Dummy1Cone_normal.dds not found
command icon mod:UI/Game/Icons/Commands/Dummy1Cone_over.dds not found
command icon mod:UI/Game/Icons/Commands/Dummy1Cone_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/Dummy1Cone.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdTrailer_disable.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdTrailer_normal.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdTrailer_over.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdTrailer_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/VcmdTrailer.dds not found
command icon mod:UI/Game/Icons/Commands/DummyGetTrailer_disable.dds not found
command icon mod:UI/Game/Icons/Commands/DummyGetTrailer_normal.dds not found
command icon mod:UI/Game/Icons/Commands/DummyGetTrailer_over.dds not found
command icon mod:UI/Game/Icons/Commands/DummyGetTrailer_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/DummyGetTrailer.dds not found
command icon mod:UI/Game/Icons/Commands/DummyIsTrailed_disable.dds not found
command icon mod:UI/Game/Icons/Commands/DummyIsTrailed_normal.dds not found
command icon mod:UI/Game/Icons/Commands/DummyIsTrailed_over.dds not found
command icon mod:UI/Game/Icons/Commands/DummyIsTrailed_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/DummyIsTrailed.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdWarningLightsOn_disable.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdWarningLightsOn_normal.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdWarningLightsOn_over.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdWarningLightsOn_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/VcmdWarningLightsOn.dds not found
cursor mod:UI/Game/Icons/Cursor/warningon.dds not found
command icon mod:UI/Game/Icons/Commands/DummyHasWarningLights_disable.dds not found
command icon mod:UI/Game/Icons/Commands/DummyHasWarningLights_normal.dds not found
command icon mod:UI/Game/Icons/Commands/DummyHasWarningLights_over.dds not found
command icon mod:UI/Game/Icons/Commands/DummyHasWarningLights_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/DummyHasWarningLights.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdWaterOn_disable.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdWaterOn_normal.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdWaterOn_over.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdWaterOn_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/VcmdWaterOn.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdWaterOff_disable.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdWaterOff_normal.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdWaterOff_over.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdWaterOff_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/VcmdWaterOff.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdWye_disable.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdWye_normal.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdWye_over.dds not found
command icon mod:UI/Game/Icons/Commands/PcmdWye_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/PcmdWye.dds not found
cursor mod:UI/Game/Icons/Cursor/wye.dds not found
command icon mod:UI/Game/Icons/Commands/Lift_disable.dds not found
command icon mod:UI/Game/Icons/Commands/Lift_normal.dds not found
command icon mod:UI/Game/Icons/Commands/Lift_over.dds not found
command icon mod:UI/Game/Icons/Commands/Lift_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/Lift.dds not found
command icon mod:UI/Game/Icons/Commands/DummyLife_disable.dds not found
command icon mod:UI/Game/Icons/Commands/DummyLife_normal.dds not found
command icon mod:UI/Game/Icons/Commands/DummyLife_over.dds not found
command icon mod:UI/Game/Icons/Commands/DummyLife_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/DummyLife.dds not found
command icon mod:UI/Game/Icons/Commands/LoadUp_disable.dds not found
command icon mod:UI/Game/Icons/Commands/LoadUp_normal.dds not found
command icon mod:UI/Game/Icons/Commands/LoadUp_over.dds not found
command icon mod:UI/Game/Icons/Commands/LoadUp_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/LoadUp.dds not found
command icon mod:UI/Game/Icons/Commands/M08EmptyCar_disable.dds not found
command icon mod:UI/Game/Icons/Commands/M08EmptyCar_normal.dds not found
command icon mod:UI/Game/Icons/Commands/M08EmptyCar_over.dds not found
command icon mod:UI/Game/Icons/Commands/M08EmptyCar_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/M08EmptyCar.dds not found
command icon mod:UI/Game/Icons/Commands/M08StartConvoy_disable.dds not found
command icon mod:UI/Game/Icons/Commands/M08StartConvoy_normal.dds not found
command icon mod:UI/Game/Icons/Commands/M08StartConvoy_over.dds not found
command icon mod:UI/Game/Icons/Commands/M08StartConvoy_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/M08StartConvoy.dds not found
command icon mod:UI/Game/Icons/Commands/M08StopConvoy_disable.dds not found
command icon mod:UI/Game/Icons/Commands/M08StopConvoy_normal.dds not found
command icon mod:UI/Game/Icons/Commands/M08StopConvoy_over.dds not found
command icon mod:UI/Game/Icons/Commands/M08StopConvoy_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/M08StopConvoy.dds not found
command icon mod:UI/Game/Icons/Commands/M08Use_disable.dds not found
command icon mod:UI/Game/Icons/Commands/M08Use_normal.dds not found
command icon mod:UI/Game/Icons/Commands/M08Use_over.dds not found
command icon mod:UI/Game/Icons/Commands/M08Use_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/M08Use.dds not found
command icon mod:UI/Game/Icons/Commands/OpenDoors2_disable.dds not found
command icon mod:UI/Game/Icons/Commands/OpenDoors2_normal.dds not found
command icon mod:UI/Game/Icons/Commands/OpenDoors2_over.dds not found
command icon mod:UI/Game/Icons/Commands/OpenDoors2_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/OpenDoors2.dds not found
command icon mod:UI/Game/Icons/Commands/PickUp_disable.dds not found
command icon mod:UI/Game/Icons/Commands/PickUp_normal.dds not found
command icon mod:UI/Game/Icons/Commands/PickUp_over.dds not found
command icon mod:UI/Game/Icons/Commands/PickUp_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/PickUp.dds not found
command icon mod:UI/Game/Icons/Commands/Pull_disable.dds not found
command icon mod:UI/Game/Icons/Commands/Pull_normal.dds not found
command icon mod:UI/Game/Icons/Commands/Pull_over.dds not found
command icon mod:UI/Game/Icons/Commands/Pull_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/Pull.dds not found
command icon mod:UI/Game/Icons/Commands/PutInCar_disable.dds not found
command icon mod:UI/Game/Icons/Commands/PutInCar_normal.dds not found
command icon mod:UI/Game/Icons/Commands/PutInCar_over.dds not found
command icon mod:UI/Game/Icons/Commands/PutInCar_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/PutInCar.dds not found
command icon mod:UI/Game/Icons/Commands/RemoveEquipment_disable.dds not found
command icon mod:UI/Game/Icons/Commands/RemoveEquipment_normal.dds not found
command icon mod:UI/Game/Icons/Commands/RemoveEquipment_over.dds not found
command icon mod:UI/Game/Icons/Commands/RemoveEquipment_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/RemoveEquipment.dds not found
command icon mod:UI/Game/Icons/Commands/RemoveFirehose_disable.dds not found
command icon mod:UI/Game/Icons/Commands/ScoutArea_disable.dds not found
command icon mod:UI/Game/Icons/Commands/ScoutArea_normal.dds not found
command icon mod:UI/Game/Icons/Commands/ScoutArea_over.dds not found
command icon mod:UI/Game/Icons/Commands/ScoutArea_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/ScoutArea.dds not found
command icon mod:UI/Game/Icons/Commands/Shotgun_disable.dds not found
command icon mod:UI/Game/Icons/Commands/Shotgun_normal.dds not found
command icon mod:UI/Game/Icons/Commands/Shotgun_over.dds not found
command icon mod:UI/Game/Icons/Commands/Shotgun_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/Shotgun.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdFSTrafficLight_disable.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdFSTrafficLight_normal.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdFSTrafficLight_over.dds not found
command icon mod:UI/Game/Icons/Commands/VcmdFSTrafficLight_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/VcmdFSTrafficLight.dds not found
command icon mod:UI/Game/Icons/Commands/AimedShot_disable.dds not found
command icon mod:UI/Game/Icons/Commands/AimedShot_normal.dds not found
command icon mod:UI/Game/Icons/Commands/AimedShot_over.dds not found
command icon mod:UI/Game/Icons/Commands/AimedShot_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/AimedShot.dds not found
cursor mod:UI/Game/Icons/Cursor/AimEnd.dds not found
command icon mod:UI/Game/Icons/Commands/DummyHosesAreOn_disable.dds not found
command icon mod:UI/Game/Icons/Commands/DummyHosesAreOn_normal.dds not found
command icon mod:UI/Game/Icons/Commands/DummyHosesAreOn_over.dds not found
command icon mod:UI/Game/Icons/Commands/DummyHosesAreOn_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/DummyHosesAreOn.dds not found
command icon mod:UI/Game/Icons/Commands/DropWithCrane_disable.dds not found
command icon mod:UI/Game/Icons/Commands/DropWithCrane_normal.dds not found
command icon mod:UI/Game/Icons/Commands/DropWithCrane_over.dds not found
command icon mod:UI/Game/Icons/Commands/DropWithCrane_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/DropWithCrane.dds not found
command icon mod:UI/Game/Icons/Commands/DummyFullHeal_disable.dds not found
command icon mod:UI/Game/Icons/Commands/DummyFullHeal_normal.dds not found
command icon mod:UI/Game/Icons/Commands/DummyFullHeal_over.dds not found
command icon mod:UI/Game/Icons/Commands/DummyFullHeal_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/DummyFullHeal.dds not found
command icon mod:UI/Game/Icons/Commands/EvacuatePerson_disable.dds not found
command icon mod:UI/Game/Icons/Commands/EvacuatePerson_normal.dds not found
command icon mod:UI/Game/Icons/Commands/EvacuatePerson_over.dds not found
command icon mod:UI/Game/Icons/Commands/EvacuatePerson_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/EvacuatePerson.dds not found
command icon mod:UI/Game/Icons/Commands/FlyTo_disable.dds not found
command icon mod:UI/Game/Icons/Commands/FlyTo_normal.dds not found
command icon mod:UI/Game/Icons/Commands/FlyTo_over.dds not found
command icon mod:UI/Game/Icons/Commands/FlyTo_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/FlyTo.dds not found
command icon mod:UI/Game/Icons/Commands/GetFlashgrenade_disable.dds not found
command icon mod:UI/Game/Icons/Commands/GetFlashgrenade_normal.dds not found
command icon mod:UI/Game/Icons/Commands/GetFlashgrenade_over.dds not found
command icon mod:UI/Game/Icons/Commands/GetFlashgrenade_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/GetFlashgrenade.dds not found
command icon mod:UI/Game/Icons/Commands/Lift_disable.dds not found
command icon mod:UI/Game/Icons/Commands/Lift_normal.dds not found
command icon mod:UI/Game/Icons/Commands/Lift_over.dds not found
command icon mod:UI/Game/Icons/Commands/Lift_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/Lift.dds not found
command icon mod:UI/Game/Icons/Commands/DummyLife_disable.dds not found
command icon mod:UI/Game/Icons/Commands/DummyLife_normal.dds not found
command icon mod:UI/Game/Icons/Commands/DummyLife_over.dds not found
command icon mod:UI/Game/Icons/Commands/DummyLife_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/DummyLife.dds not found
command icon mod:UI/Game/Icons/Commands/LiftWithRope_disable.dds not found
command icon mod:UI/Game/Icons/Commands/LiftWithRope_normal.dds not found
command icon mod:UI/Game/Icons/Commands/LiftWithRope_over.dds not found
command icon mod:UI/Game/Icons/Commands/LiftWithRope_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/LiftWithRope.dds not found
command icon mod:UI/Game/Icons/Commands/LoadUp_disable.dds not found
command icon mod:UI/Game/Icons/Commands/LoadUp_normal.dds not found
command icon mod:UI/Game/Icons/Commands/LoadUp_over.dds not found
command icon mod:UI/Game/Icons/Commands/LoadUp_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/LoadUp.dds not found
command icon mod:UI/Game/Icons/Commands/M10EnterHouse_disable.dds not found
command icon mod:UI/Game/Icons/Commands/M10EnterHouse_normal.dds not found
command icon mod:UI/Game/Icons/Commands/M10EnterHouse_over.dds not found
command icon mod:UI/Game/Icons/Commands/M10EnterHouse_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/M10EnterHouse.dds not found
command icon mod:UI/Game/Icons/Commands/M11EnterStation_disable.dds not found
command icon mod:UI/Game/Icons/Commands/M11EnterStation_normal.dds not found
command icon mod:UI/Game/Icons/Commands/M11EnterStation_over.dds not found
command icon mod:UI/Game/Icons/Commands/M11EnterStation_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/M11EnterStation.dds not found
command icon mod:UI/Game/Icons/Commands/M11EvacuateStation_disable.dds not found
command icon mod:UI/Game/Icons/Commands/M11EvacuateStation_normal.dds not found
command icon mod:UI/Game/Icons/Commands/M11EvacuateStation_over.dds not found
command icon mod:UI/Game/Icons/Commands/M11EvacuateStation_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/M11EvacuateStation.dds not found
command icon mod:UI/Game/Icons/Commands/M14UseShears_disable.dds not found
command icon mod:UI/Game/Icons/Commands/M14UseShears_normal.dds not found
command icon mod:UI/Game/Icons/Commands/M14UseShears_over.dds not found
command icon mod:UI/Game/Icons/Commands/M14UseShears_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/M14UseShears.dds not found
command icon mod:UI/Game/Icons/Commands/M15LiftWithRope_disable.dds not found
command icon mod:UI/Game/Icons/Commands/M15LiftWithRope_normal.dds not found
command icon mod:UI/Game/Icons/Commands/M15LiftWithRope_over.dds not found
command icon mod:UI/Game/Icons/Commands/M15LiftWithRope_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/M15LiftWithRope.dds not found
command icon mod:UI/Game/Icons/Commands/M16UseShears_disable.dds not found
command icon mod:UI/Game/Icons/Commands/M16UseShears_normal.dds not found
command icon mod:UI/Game/Icons/Commands/M16UseShears_over.dds not found
command icon mod:UI/Game/Icons/Commands/M16UseShears_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/M16UseShears.dds not found
command icon mod:UI/Game/Icons/Commands/M18EnterStation_disable.dds not found
command icon mod:UI/Game/Icons/Commands/M18EnterStation_normal.dds not found
command icon mod:UI/Game/Icons/Commands/M18EnterStation_over.dds not found
command icon mod:UI/Game/Icons/Commands/M18EnterStation_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/M18EnterStation.dds not found
command icon mod:UI/Game/Icons/Commands/M18EvacuateStation_disable.dds not found
command icon mod:UI/Game/Icons/Commands/M18EvacuateStation_normal.dds not found
command icon mod:UI/Game/Icons/Commands/M18EvacuateStation_over.dds not found
command icon mod:UI/Game/Icons/Commands/M18EvacuateStation_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/M18EvacuateStation.dds not found
command icon mod:UI/Game/Icons/Commands/M19EnterPanelRoom_disable.dds not found
command icon mod:UI/Game/Icons/Commands/M19EnterPanelRoom_normal.dds not found
command icon mod:UI/Game/Icons/Commands/M19EnterPanelRoom_over.dds not found
command icon mod:UI/Game/Icons/Commands/M19EnterPanelRoom_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/M19EnterPanelRoom.dds not found
command icon mod:UI/Game/Icons/Commands/M19EnterTunnel_disable.dds not found
command icon mod:UI/Game/Icons/Commands/M19EnterTunnel_normal.dds not found
command icon mod:UI/Game/Icons/Commands/M19EnterTunnel_over.dds not found
command icon mod:UI/Game/Icons/Commands/M19EnterTunnel_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/M19EnterTunnel.dds not found
command icon mod:UI/Game/Icons/Commands/M4EnterStation_disable.dds not found
command icon mod:UI/Game/Icons/Commands/M4EnterStation_normal.dds not found
command icon mod:UI/Game/Icons/Commands/M4EnterStation_over.dds not found
command icon mod:UI/Game/Icons/Commands/M4EnterStation_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/M4EnterStation.dds not found
command icon mod:UI/Game/Icons/Commands/OpenDoors2_disable.dds not found
command icon mod:UI/Game/Icons/Commands/OpenDoors2_normal.dds not found
command icon mod:UI/Game/Icons/Commands/OpenDoors2_over.dds not found
command icon mod:UI/Game/Icons/Commands/OpenDoors2_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/OpenDoors2.dds not found
command icon mod:UI/Game/Icons/Commands/PickUp_disable.dds not found
command icon mod:UI/Game/Icons/Commands/PickUp_normal.dds not found
command icon mod:UI/Game/Icons/Commands/PickUp_over.dds not found
command icon mod:UI/Game/Icons/Commands/PickUp_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/PickUp.dds not found
command icon mod:UI/Game/Icons/Commands/Pull_disable.dds not found
command icon mod:UI/Game/Icons/Commands/Pull_normal.dds not found
command icon mod:UI/Game/Icons/Commands/Pull_over.dds not found
command icon mod:UI/Game/Icons/Commands/Pull_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/Pull.dds not found
command icon mod:UI/Game/Icons/Commands/PutInCar_disable.dds not found
command icon mod:UI/Game/Icons/Commands/PutInCar_normal.dds not found
command icon mod:UI/Game/Icons/Commands/PutInCar_over.dds not found
command icon mod:UI/Game/Icons/Commands/PutInCar_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/PutInCar.dds not found
command icon mod:UI/Game/Icons/Commands/RemoveEquipment_disable.dds not found
command icon mod:UI/Game/Icons/Commands/RemoveEquipment_normal.dds not found
command icon mod:UI/Game/Icons/Commands/RemoveEquipment_over.dds not found
command icon mod:UI/Game/Icons/Commands/RemoveEquipment_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/RemoveEquipment.dds not found
command icon mod:UI/Game/Icons/Commands/RemoveFirehose_disable.dds not found
command icon mod:UI/Game/Icons/Commands/SearchLightOff_disable.dds not found
command icon mod:UI/Game/Icons/Commands/SearchLightOff_normal.dds not found
command icon mod:UI/Game/Icons/Commands/SearchLightOff_over.dds not found
command icon mod:UI/Game/Icons/Commands/SearchLightOff_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/SearchLightOff.dds not found
command icon mod:UI/Game/Icons/Commands/SearchLightOn_disable.dds not found
command icon mod:UI/Game/Icons/Commands/SearchLightOn_normal.dds not found
command icon mod:UI/Game/Icons/Commands/SearchLightOn_over.dds not found
command icon mod:UI/Game/Icons/Commands/SearchLightOn_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/SearchLightOn.dds not found
command icon mod:UI/Game/Icons/Commands/StopPull_disable.dds not found
command icon mod:UI/Game/Icons/Commands/StopPull_normal.dds not found
command icon mod:UI/Game/Icons/Commands/StopPull_over.dds not found
command icon mod:UI/Game/Icons/Commands/StopPull_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/StopPull.dds not found
command icon mod:UI/Game/Icons/Commands/MoveToFieldFire_disable.dds not found
command icon mod:UI/Game/Icons/Commands/MoveToFieldFire_normal.dds not found
command icon mod:UI/Game/Icons/Commands/MoveToFieldFire_over.dds not found
command icon mod:UI/Game/Icons/Commands/MoveToFieldFire_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/MoveToFieldFire.dds not found
command icon mod:UI/Game/Icons/Commands/MoveToFieldSmoke_disable.dds not found
command icon mod:UI/Game/Icons/Commands/MoveToFieldSmoke_normal.dds not found
command icon mod:UI/Game/Icons/Commands/MoveToFieldSmoke_over.dds not found
command icon mod:UI/Game/Icons/Commands/MoveToFieldSmoke_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/MoveToFieldSmoke.dds not found
command icon mod:UI/Game/Icons/Commands/MoveToFieldDummy_disable.dds not found
command icon mod:UI/Game/Icons/Commands/MoveToFieldDummy_normal.dds not found
command icon mod:UI/Game/Icons/Commands/MoveToFieldDummy_over.dds not found
command icon mod:UI/Game/Icons/Commands/MoveToFieldDummy_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/MoveToFieldDummy.dds not found
command icon mod:UI/Game/Icons/Commands/MoveToFieldHouse_disable.dds not found
command icon mod:UI/Game/Icons/Commands/MoveToFieldHouse_normal.dds not found
command icon mod:UI/Game/Icons/Commands/MoveToFieldHouse_over.dds not found
command icon mod:UI/Game/Icons/Commands/MoveToFieldHouse_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/MoveToFieldHouse.dds not found
command icon mod:UI/Game/Icons/Commands/TutThrow_disable.dds not found
command icon mod:UI/Game/Icons/Commands/TutThrow_normal.dds not found
command icon mod:UI/Game/Icons/Commands/TutThrow_over.dds not found
command icon mod:UI/Game/Icons/Commands/TutThrow_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/TutThrow.dds not found
command icon mod:UI/Game/Icons/Commands/Unload_disable.dds not found
command icon mod:UI/Game/Icons/Commands/Unload_normal.dds not found
command icon mod:UI/Game/Icons/Commands/Unload_over.dds not found
command icon mod:UI/Game/Icons/Commands/Unload_mousedown.dds not found
cursor mod:UI/Game/Icons/Cursor/Unload.dds not found
Deleting units...
Scanning units...
Scanning equipment...
Loading equipment mod:Units/Equipment/F010Fire Extinguisher/...
Loading equipment mod:Units/Equipment/F020Fire Hose/...
Loading equipment mod:Units/Equipment/F030Jaws Of Life/...
Loading equipment mod:Units/Equipment/F040Chain Saw/...
Loading equipment mod:Units/Equipment/F050Axe/...
Loading equipment mod:Units/Equipment/F060Jump Pad/...
Loading equipment mod:Units/Equipment/P010Flash Grenade/...
Loading equipment mod:Units/Equipment/P020Road Block/...
Scanning personnel...
Loading personnel mod:Units/Personnel/Fire Department/010battalionchief/...
Loading personnel mod:Units/Personnel/Fire Department/010Fire Fighter/...
Loading personnel mod:Units/Personnel/Fire Department/020Fire Fighter Masked/...
Loading personnel mod:Units/Personnel/Fire Department/020firefighter/...
Loading personnel mod:Units/Personnel/Fire Department/030Fire Fighter ABC/...
Loading personnel mod:Units/Personnel/Fire Department/030firefighterstretcher/...
Loading personnel mod:Units/Personnel/Fire Department/040Diver/...
Loading personnel mod:Units/Personnel/Fire Department/040firefighterscba/...
Loading personnel mod:Units/Personnel/Fire Department/050firefighterhazmat/...
Loading personnel mod:Units/Personnel/Fire Department/060diver2/...
Loading personnel mod:Units/Personnel/Fire Department/070usarfirefighter/...
Loading personnel mod:Units/Personnel/Fire Department/080usfsfirefighter/...
Loading personnel mod:Units/Personnel/Fire Department/090usfsfirefighterscba/...
Scanning personnel...
Loading personnel mod:Units/Personnel/Ambulance/010Doctor/...
Loading personnel mod:Units/Personnel/Ambulance/010emscaptain/...
Loading personnel mod:Units/Personnel/Ambulance/020paramedic/...
Loading personnel mod:Units/Personnel/Ambulance/020Paramedics/...
Loading personnel mod:Units/Personnel/Ambulance/021countyp1/...
Loading personnel mod:Units/Personnel/Ambulance/030Dog Leader/...
Loading personnel mod:Units/Personnel/Ambulance/030paramedicstretcher/...
Loading personnel mod:Units/Personnel/Ambulance/040paramedicscba/...
Loading personnel mod:Units/Personnel/Ambulance/050dogleader/...
Loading personnel mod:Units/Personnel/Ambulance/060coroners/...
Scanning personnel...
Loading personnel mod:Units/Personnel/Police/010lapdmotorcycleofficer/...
?Prototype not found: mod:Prototypes/Persons/03 LA Police/lapd_motorcycle_officer.e4p
Precaching of prototype mod:Prototypes/Persons/03 LA Police/lapd_motorcycle_officer.e4p failed.
?Prototype not found: mod:Prototypes/Persons/03 LA Police/lapd_motorcycle_officer.e4p
Precaching of prototype mod:Prototypes/Persons/03 LA Police/lapd_motorcycle_officer.e4p failed.
?Prototype not found: mod:Prototypes/Persons/03 LA Police/lapd_motorcycle_officer.e4p
Precaching of prototype mod:Prototypes/Persons/03 LA Police/lapd_motorcycle_officer.e4p failed.
?Prototype not found: mod:Prototypes/Persons/03 LA Police/lapd_motorcycle_officer.e4p
Precaching of prototype mod:Prototypes/Persons/03 LA Police/lapd_motorcycle_officer.e4p failed.
?Prototype not found: mod:Prototypes/Persons/03 LA Police/lapd_motorcycle_officer.e4p
Precaching of prototype mod:Prototypes/Persons/03 LA Police/lapd_motorcycle_officer.e4p failed.
?Prototype not found: mod:Prototypes/Persons/03 LA Police/lapd_motorcycle_officer.e4p
Precaching of prototype mod:Prototypes/Persons/03 LA Police/lapd_motorcycle_officer.e4p failed.
?Prototype not found: mod:Prototypes/Persons/03 LA Police/lapd_motorcycle_officer.e4p
Precaching of prototype mod:Prototypes/Persons/03 LA Police/lapd_motorcycle_officer.e4p failed.
?Prototype not found: mod:Prototypes/Persons/03 LA Police/lapd_motorcycle_officer.e4p
Precaching of prototype mod:Prototypes/Persons/03 LA Police/lapd_motorcycle_officer.e4p failed.
Loading personnel mod:Units/Personnel/Police/010Policeman/...
Loading personnel mod:Units/Personnel/Police/020lapdofficer/...
Loading personnel mod:Units/Personnel/Police/020Shooter/...
Loading personnel mod:Units/Personnel/Police/021ccpdtacofficer/...
Loading personnel mod:Units/Personnel/Police/025lapddogleader/...
Loading personnel mod:Units/Personnel/Police/030lapdswat/...
Loading personnel mod:Units/Personnel/Police/030Sharp Shooter/...
Loading personnel mod:Units/Personnel/Police/031ccsdswat/...
Loading personnel mod:Units/Personnel/Police/032Sharp Shooter/...
Loading personnel mod:Units/Personnel/Police/040lapdswatsharpshooter/...
Loading personnel mod:Units/Personnel/Police/040Scout/...
Loading personnel mod:Units/Personnel/Police/050chpofficer/...
Loading personnel mod:Units/Personnel/Police/050Profiler/...
Loading personnel mod:Units/Personnel/Police/060lasdofficer/...
Loading personnel mod:Units/Personnel/Police/070bombsquad/...
Loading personnel mod:Units/Personnel/Police/180negotiator/...
Loading personnel mod:Units/Personnel/Police/190scout/...
Loading personnel mod:Units/Personnel/Police/200usarmysoldier/...
Loading personnel mod:Units/Personnel/Police/210usarmysharpshooter/...
Loading personnel mod:Units/Personnel/Police/220fbiagent/...
Loading personnel mod:Units/Personnel/Police/230fbiagenttac/...
Loading personnel mod:Units/Personnel/Police/240ssagent/...
Loading personnel mod:Units/Personnel/Police/250atfagent/...
Loading personnel mod:Units/Personnel/Police/260atfswat/...
Loading personnel mod:Units/Personnel/Police/270atfsharpshooter/...
Loading personnel mod:Units/Personnel/Police/280bpofficer/...
Scanning personnel...
Loading personnel mod:Units/Personnel/TEC/010engineer/...
Loading personnel mod:Units/Personnel/TEC/020uscgrescue/...
Scanning vehicles...
Loading vehicle mod:Units/Vehicles/Fire Department/010RW/...
Loading vehicle mod:Units/Vehicles/Fire Department/020GTF/...
Loading vehicle mod:Units/Vehicles/Fire Department/030TLF/...
Loading vehicle mod:Units/Vehicles/Fire Department/040DLK/...
Loading vehicle mod:Units/Vehicles/Fire Department/050LPF/...
Loading vehicle mod:Units/Vehicles/Fire Department/060DEKON/...
Loading vehicle mod:Units/Vehicles/Fire Department/070FMB/...
Loading vehicle mod:Units/Vehicles/Fire Department/080TFMB/...
Loading vehicle mod:Units/Vehicles/Fire Department/090FLB/...
Loading vehicle mod:Units/Vehicles/Fire Department/100LF/...
Loading vehicle mod:Units/Vehicles/Fire Department/105bcv/...
Loading vehicle mod:Units/Vehicles/Fire Department/107battalion2/...
Loading vehicle mod:Units/Vehicles/Fire Department/108brush/...
Loading vehicle mod:Units/Vehicles/Fire Department/110fireengine1/...
Loading vehicle mod:Units/Vehicles/Fire Department/120fireengine2/...
Loading vehicle mod:Units/Vehicles/Fire Department/121Engine 2/...
Loading vehicle mod:Units/Vehicles/Fire Department/130foamtender/...
Loading vehicle mod:Units/Vehicles/Fire Department/131foamtender 2/...
Loading vehicle mod:Units/Vehicles/Fire Department/135aerialladder/...
Loading vehicle mod:Units/Vehicles/Fire Department/140aerialladder2/...
Loading vehicle mod:Units/Vehicles/Fire Department/140usarsquad/...
Loading vehicle mod:Units/Vehicles/Fire Department/150hes/...
Loading vehicle mod:Units/Vehicles/Fire Department/170hazmatsquad/...
Loading vehicle mod:Units/Vehicles/Fire Department/171hazmattent/...
Loading vehicle mod:Units/Vehicles/Fire Department/172usarsquad02/...
Loading vehicle mod:Units/Vehicles/Fire Department/200swr/...
Loading vehicle mod:Units/Vehicles/Fire Department/205swrboat/...
Loading vehicle mod:Units/Vehicles/Fire Department/208rescueboat/...
Loading vehicle mod:Units/Vehicles/Fire Department/210crashtender/...
Loading vehicle mod:Units/Vehicles/Fire Department/220usfsutility/...
Loading vehicle mod:Units/Vehicles/Fire Department/230usfsengine/...
Loading vehicle mod:Units/Vehicles/Fire Department/240firefightboat/...
Loading vehicle mod:Units/Vehicles/Fire Department/250firefightplane/...
Loading vehicle mod:Units/Vehicles/Fire Department/260trailer/...
Scanning vehicles...
Loading vehicle mod:Units/Vehicles/Ambulance/010NEF/...
Loading vehicle mod:Units/Vehicles/Ambulance/020RTW/...
Loading vehicle mod:Units/Vehicles/Ambulance/030RHF/...
Loading vehicle mod:Units/Vehicles/Ambulance/040ITW/...
Loading vehicle mod:Units/Vehicles/Ambulance/050RHC/...
Loading vehicle mod:Units/Vehicles/Ambulance/060emscar/...
Loading vehicle mod:Units/Vehicles/Ambulance/061ambulance01/...
Loading vehicle mod:Units/Vehicles/Ambulance/069ambulance03/...
Loading vehicle mod:Units/Vehicles/Ambulance/070ambulance02/...
Loading vehicle mod:Units/Vehicles/Ambulance/071amrambulance07/...
Loading vehicle mod:Units/Vehicles/Ambulance/072topkickambulance/...
Loading vehicle mod:Units/Vehicles/Ambulance/100ambulance04/...
Loading vehicle mod:Units/Vehicles/Ambulance/110coronersvan/...
Loading vehicle mod:Units/Vehicles/Ambulance/110mcu/...
?Prototype not found: mod:Prototypes/Vehicles/01 LA Ambulance/mass_casualty_unit.e4p
Precaching of prototype mod:Prototypes/Vehicles/01 LA Ambulance/mass_casualty_unit.e4p failed.
Loading vehicle mod:Units/Vehicles/Ambulance/130rescuehelicopter/...
Loading vehicle mod:Units/Vehicles/Ambulance/140rescuedogvehicle/...
Scanning vehicles...
Loading vehicle mod:Units/Vehicles/Police/001ccpd100cvpi/...
Loading vehicle mod:Units/Vehicles/Police/002ccpd105van/...
Loading vehicle mod:Units/Vehicles/Police/003ccpd110cvpi/...
Loading vehicle mod:Units/Vehicles/Police/004ccpd115impala/...
Loading vehicle mod:Units/Vehicles/Police/005ccpd120impala/...
Loading vehicle mod:Units/Vehicles/Police/006ccpd125cvpi/...
Loading vehicle mod:Units/Vehicles/Police/007ccpd130charger/...
Loading vehicle mod:Units/Vehicles/Police/008ccpd135cvpi/...
Loading vehicle mod:Units/Vehicles/Police/009ccpd140cvpi_k9/...
Loading vehicle mod:Units/Vehicles/Police/010ccpd145cvpi/...
Loading vehicle mod:Units/Vehicles/Police/010STW/...
Loading vehicle mod:Units/Vehicles/Police/011ccpd150cvpi_slick/...
Loading vehicle mod:Units/Vehicles/Police/012ccpd155excursion/...
Loading vehicle mod:Units/Vehicles/Police/012ccpd160ford_suv/...
Loading vehicle mod:Units/Vehicles/Police/013ccpd165charger/...
Loading vehicle mod:Units/Vehicles/Police/013ccpd170taurus/...
Loading vehicle mod:Units/Vehicles/Police/014ccpd175swatexcursion/...
Loading vehicle mod:Units/Vehicles/Police/015lapdhelicopter/...
Loading vehicle mod:Units/Vehicles/Police/016unmarkedcvpi/...
Loading vehicle mod:Units/Vehicles/Police/017ccpd_swat_EOD-truck/...
Loading vehicle mod:Units/Vehicles/Police/018swattruck/...
Loading vehicle mod:Units/Vehicles/Police/020MTW/...
Loading vehicle mod:Units/Vehicles/Police/030SW/...
Loading vehicle mod:Units/Vehicles/Police/040WAW/...
Loading vehicle mod:Units/Vehicles/Police/050GTW/...
Loading vehicle mod:Units/Vehicles/Police/060phc/...
Loading vehicle mod:Units/Vehicles/Police/070FLIGHT/...
Loading vehicle mod:Units/Vehicles/Police/113ccpd_swat_EOD-bombrobot/...
Loading vehicle mod:Units/Vehicles/Police/138ccsd_helicopter/...
Loading vehicle mod:Units/Vehicles/Police/155mhp_helicopter/...
Loading vehicle mod:Units/Vehicles/Police/300natguard_hmmwv/...
Loading vehicle mod:Units/Vehicles/Police/301natguard_oshkoshTPV/...
Loading vehicle mod:Units/Vehicles/Police/330bombrobot/...
Loading vehicle mod:Units/Vehicles/Police/999getaway/...
Loading vehicle mod:Units/Vehicles/Police/999STW/...
Scanning vehicles...
Loading vehicle mod:Units/Vehicles/TEC/010FGRI/...
Loading vehicle mod:Units/Vehicles/TEC/020ASF/...
Loading vehicle mod:Units/Vehicles/TEC/030FGRR/...
Loading vehicle mod:Units/Vehicles/TEC/040FGRB/...
Loading vehicle mod:Units/Vehicles/TEC/050FGRT/...
Loading vehicle mod:Units/Vehicles/TEC/060RL/...
Loading vehicle mod:Units/Vehicles/TEC/070TRL/...
Loading vehicle mod:Units/Vehicles/TEC/080engineer/...
Loading vehicle mod:Units/Vehicles/TEC/090towtruck/...
Loading vehicle mod:Units/Vehicles/TEC/100crane/...
Loading vehicle mod:Units/Vehicles/TEC/110pontoon/...
Loading vehicle mod:Units/Vehicles/TEC/120rescuehelicopter/...
Loading vehicle mod:Units/Vehicles/TEC/125dolphin/...
Loading vehicle mod:Units/Vehicles/TEC/130bulldozer/...
Loading vehicle mod:Units/Vehicles/TEC/140bulldozertransporter/...
Loading vehicle mod:Units/Vehicles/TEC/150uscgboat/...
mod found: BFEMP
mod found: Blues And Twos Mod
mod found: Borough Of Fire Brooklyn Modification
mod found: Boston Mod
mod found: BOSTON MOD 2014
mod found: Boston Mod Beta
mod found: Copenhagen Airport Modification 1.0
mod found: Emergency City
mod found: Fairfax County MOD 1.1.5
mod found: Falkenburg FHZ Mod
mod found: Harbor City 4.0 REMAKE
mod found: Harbor City 4.6.1 Public
mod found: Harbor City 5
mod found: London Mod v1.3
mod found: London Multiplayer Mod 1.0
mod found: Los Angeles Mod v2.1 singleplayer
mod found: Manchester Mod v1.1.0
mod found: Manhattan Modification - Midtown
mod found: Mayberry Mod V1.4.1
mod found: Mentor Fire Modification
mod found: Montana Mod 2.0.1
mod found: Northview - South County v2.0.4
mod found: NYC MOD 1.01
mod found: Ocean City Modification V1.3
mod found: Ocean City Modification V1.4
mod found: River Falls V0.5
mod found: RockPort Mod
mod found: The Riverside Modification V1.5
mod found: The Riverside Modification V2.0
mod found: Tri-County Mod
|Loading Model mod:Models\Objects\07 Scenery\labridge.v3o
|[VNUM=1.43]
|Model contains 3795 vertices, 2408 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Stones\boulder06b.v3o
|[VNUM=1.43]
|Model contains 25 vertices, 33 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Stones\boulder07b.v3o
|[VNUM=1.43]
|Model contains 25 vertices, 33 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Stones\boulder09b.v3o
|[VNUM=1.43]
|Model contains 108 vertices, 99 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Bushes\bush05.v3o
|[VNUM=1.43]
|Model contains 112 vertices, 60 polygons, 0 bones, 25 muscleanimframes
|Loading Model mod:Models\Objects\Bushes\cuppedbush03.v3o
|[VNUM=1.43]
|Model contains 72 vertices, 64 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\07 Scenery\lariver.v3o
|[VNUM=1.43]
|Model contains 160 vertices, 80 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Railway\rail01.v3o
|[VNUM=1.43]
|Model contains 380 vertices, 190 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Railway\railend01.v3o
|[VNUM=1.43]
|Model contains 156 vertices, 80 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Fences\industryfence01_straight.v3o
|[VNUM=1.43]
|Model contains 102 vertices, 42 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Industry\crane02.v3o
|[VNUM=1.43]
|Model contains 1801 vertices, 1135 polygons, 0 bones, 1 muscleanimframes
|Loading Model mod:Models\Objects\Industry\container01_single_green.v3o
|[VNUM=1.43]
|Model contains 24 vertices, 12 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\ObjectChildren\container01_child.v3o
|[VNUM=1.43]
|Model contains 4 vertices, 2 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Industry\container01_single_red.v3o
|[VNUM=1.43]
|Model contains 24 vertices, 12 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\ObjectChildren\container01b_child.v3o
|[VNUM=1.43]
|Model contains 4 vertices, 2 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Industry\container01_single_blue.v3o
|[VNUM=1.43]
|Model contains 24 vertices, 12 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Misc\landingstage03.v3o
|[VNUM=1.43]
|Model contains 65 vertices, 35 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Street\landingstage01_post.v3o
|[VNUM=1.43]
|Model contains 46 vertices, 35 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Industry\dangerpipeset01_angle01.v3o
|[VNUM=1.43]
|Model contains 177 vertices, 180 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Industry\dangerpipeset01_pipe01.v3o
|[VNUM=1.43]
|Model contains 82 vertices, 66 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Road Signs\sign_limit01.v3o
|[VNUM=1.43]
|Model contains 30 vertices, 14 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Street\hydrant01.v3o
|[VNUM=1.43]
|Model contains 74 vertices, 56 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Misc\landingstage04.v3o
|[VNUM=1.43]
|Model contains 125 vertices, 46 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\ObjectChildren\landingstage06_pipe.v3o
|[VNUM=1.43]
|Model contains 58 vertices, 38 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Water Craft\tanker01.v3o
|[VNUM=1.43]
|Model contains 2140 vertices, 1056 polygons, 0 bones, 22 muscleanimframes
|Loading Model mod:Models\Vehicles\Water Craft\barge10.v3o
|[VNUM=1.43]
|Model contains 1525 vertices, 993 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Water Craft\barge01.v3o
|[VNUM=1.43]
|Model contains 2639 vertices, 1684 polygons, 0 bones, 8 muscleanimframes
|Loading Model mod:Models\Objects\Industry\container01_single_yellow.v3o
|[VNUM=1.43]
|Model contains 24 vertices, 12 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Houses\Industry\depot04b.v3o
|[VNUM=1.43]
|Model contains 1677 vertices, 733 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\depot04_ladder02.v3o
|[VNUM=1.43]
|Model contains 30 vertices, 18 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\facility04_burningpipe.v3o
|[VNUM=1.43]
|Model contains 114 vertices, 60 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Houses\Industry\depot02.v3o
|[VNUM=1.43]
|Model contains 1001 vertices, 551 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\depot02_meterbox.v3o
|[VNUM=1.43]
|Model contains 56 vertices, 40 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\depot02_roofwindows.v3o
|[VNUM=1.43]
|Model contains 36 vertices, 22 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\depot02_ventilation01.v3o
|[VNUM=1.43]
|Model contains 24 vertices, 12 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\depot02_ventilation02.v3o
|[VNUM=1.43]
|Model contains 16 vertices, 8 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\ObjectChildren\housedirt02.v3o
|[VNUM=1.43]
|Model contains 4 vertices, 2 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Houses\Industry\factory01.v3o
|[VNUM=1.43]
|Model contains 3084 vertices, 1737 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\factory01_entranceroof.v3o
|[VNUM=1.43]
|Model contains 24 vertices, 12 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\factory01_glassroof.v3o
|[VNUM=1.43]
|Model contains 56 vertices, 28 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\factory01_ladder01.v3o
|[VNUM=1.43]
|Model contains 28 vertices, 16 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\factory01_ladder02.v3o
|[VNUM=1.43]
|Model contains 8 vertices, 4 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\factory01_ventilationbox01.v3o
|[VNUM=1.43]
|Model contains 76 vertices, 38 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\factory01_ventilationbox02.v3o
|[VNUM=1.43]
|Model contains 20 vertices, 10 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\factory01_ventilationbox03.v3o
|[VNUM=1.43]
|Model contains 40 vertices, 20 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\ObjectChildren\housedirt08.v3o
|[VNUM=1.43]
|Model contains 4 vertices, 2 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Trucks\civiltruck08_yellow.v3o
|[VNUM=1.43]
|Model contains 916 vertices, 618 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Trucks\civiltruck08_yellow_wheel01.v3o
|[VNUM=1.43]
|Model contains 60 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Trucks\civiltruck08_yellow_wheel02.v3o
|[VNUM=1.43]
|Model contains 60 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Trucks\civiltruck08_yellow_door01.v3o
|[VNUM=1.43]
|Model contains 100 vertices, 60 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Walls\wall05_straight.v3o
|[VNUM=1.43]
|Model contains 48 vertices, 26 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\ObjectChildren\graffiti03.v3o
|[VNUM=1.43]
|Model contains 4 vertices, 2 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\ObjectChildren\graffiti02.v3o
|[VNUM=1.43]
|Model contains 4 vertices, 2 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\ObjectChildren\graffiti01.v3o
|[VNUM=1.43]
|Model contains 4 vertices, 2 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\chevrolet_express01.v3o
|[VNUM=1.43]
|Model contains 1278 vertices, 2086 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\fec_wheel01.v3o
|[VNUM=1.43]
|Model contains 186 vertices, 256 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Construction\forklifttruck01.v3o
|[VNUM=1.43]
|Model contains 1060 vertices, 675 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Construction\forklifttruck01_wheel01.v3o
|[VNUM=1.43]
|Model contains 90 vertices, 96 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Construction\forklifttruck01_wheel02.v3o
|[VNUM=1.43]
|Model contains 48 vertices, 44 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Construction\forklifttruck01_door01.v3o
|[VNUM=1.43]
|Model contains 102 vertices, 60 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Construction\plasticcontainer01_closed.v3o
|[VNUM=1.43]
|Model contains 70 vertices, 76 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\fseries01.v3o
|[VNUM=1.43]
|Model contains 1864 vertices, 2443 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\fseries_wheel01.v3o
|[VNUM=1.43]
|Model contains 182 vertices, 256 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\fseries01_door01.v3o
|[VNUM=1.43]
|Model contains 168 vertices, 195 polygons, 0 bones, 0 muscleanimframes
|Vision Core: Resized memory for Entities to  189 kB.
|Loading Model mod:Models\Objects\Lanterns\streetlight02.v3o
|[VNUM=1.43]
|Model contains 46 vertices, 54 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Trucks\civiltruck08_grey.v3o
|[VNUM=1.43]
|Model contains 927 vertices, 618 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Trucks\civiltruck08_grey_wheel01.v3o
|[VNUM=1.43]
|Model contains 60 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Trucks\civiltruck08_grey_wheel02.v3o
|[VNUM=1.43]
|Model contains 60 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Trucks\civiltruck08_grey_door01.v3o
|[VNUM=1.43]
|Model contains 100 vertices, 60 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Industry\woodbox01.v3o
|[VNUM=1.43]
|Model contains 24 vertices, 12 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Trucks\transporttruck01_white.v3o
|[VNUM=1.43]
|Model contains 1297 vertices, 616 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Trucks\transporttruck01_red_wheel.v3o
|[VNUM=1.43]
|Model contains 74 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Industry\oiltank02.v3o
|[VNUM=1.43]
|Model contains 693 vertices, 523 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Street\stair01a.v3o
|[VNUM=1.43]
|Model contains 114 vertices, 70 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Road Signs\sign_limit02.v3o
|[VNUM=1.43]
|Model contains 30 vertices, 14 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Industry\dangerpipeset01_angle03.v3o
|[VNUM=1.43]
|Model contains 177 vertices, 180 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Industry\gasbottle01.v3o
|[VNUM=1.43]
|Model contains 54 vertices, 68 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Industry\oilrig_container01.v3o
|[VNUM=1.43]
|Model contains 224 vertices, 148 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Construction\depot01_barrel.v3o
|[VNUM=1.43]
|Model contains 38 vertices, 32 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Construction\depot01_pallet.v3o
|[VNUM=1.43]
|Model contains 84 vertices, 42 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Construction\pipes01.v3o
|[VNUM=1.43]
|Model contains 126 vertices, 138 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Houses\Industry\electricity20.v3o
|[VNUM=1.43]
|Model contains 1902 vertices, 1068 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\electricity01_pipes.v3o
|[VNUM=1.43]
|Model contains 393 vertices, 240 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\electricity01_alpha.v3o
|[VNUM=1.43]
|Model contains 27 vertices, 12 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\ObjectChildren\solarcell01.v3o
|[VNUM=1.43]
|Model contains 134 vertices, 52 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\depot04_ladder.v3o
|[VNUM=1.43]
|Model contains 14 vertices, 16 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\depot04_roofchild.v3o
|[VNUM=1.43]
|Model contains 176 vertices, 88 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\electricity01_logo.v3o
|[VNUM=1.43]
|Model contains 89 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Houses\Industry\depot01.v3o
|[VNUM=1.43]
|Model contains 918 vertices, 504 polygons, 0 bones, 0 muscleanimframes
?Prototype not found: mod:Prototypes/Objects/HouseChildren/depot01_ventilationshaft.e4p
?Prototype not found: mod:Prototypes/Objects/HouseChildren/depot01_ventilationshaft.e4p
|Loading Model mod:Models\Objects\HouseChildren\depot01_roofwindows.v3o
|[VNUM=1.43]
|Model contains 36 vertices, 18 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\depot01_ventilationbox.v3o
|[VNUM=1.43]
|Model contains 30 vertices, 16 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\chevrolet_express02.v3o
|[VNUM=1.43]
|Model contains 1278 vertices, 2086 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\fec_utils01.v3o
|[VNUM=1.43]
|Model contains 1864 vertices, 2367 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\fec_utils01_door01.v3o
|[VNUM=1.43]
|Model contains 134 vertices, 160 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\fec_utils01_door02.v3o
|[VNUM=1.43]
|Model contains 84 vertices, 92 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\fec_utils01_door03.v3o
|[VNUM=1.43]
|Model contains 60 vertices, 72 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\fec_utils01_door04.v3o
|[VNUM=1.43]
|Model contains 60 vertices, 72 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Industry\oilrig_container01b.v3o
|[VNUM=1.43]
|Model contains 184 vertices, 116 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Houses\Industry\factory02.v3o
|[VNUM=1.43]
|Model contains 1999 vertices, 1134 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\factory02_cooling01.v3o
|[VNUM=1.43]
|Model contains 44 vertices, 22 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\factory02_cooling02.v3o
|[VNUM=1.43]
|Model contains 60 vertices, 30 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\factory02_cooling03.v3o
|[VNUM=1.43]
|Model contains 64 vertices, 32 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\factory02_cylinders.v3o
|[VNUM=1.43]
|Model contains 148 vertices, 124 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\factory02_glassroof.v3o
|[VNUM=1.43]
|Model contains 40 vertices, 20 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\factory02_ladder.v3o
|[VNUM=1.43]
|Model contains 14 vertices, 8 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\factory03_ladder.v3o
|[VNUM=1.43]
|Model contains 36 vertices, 40 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\factory02_ventilation02_box.v3o
|[VNUM=1.43]
|Model contains 78 vertices, 38 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\factory02_ventilation01_box.v3o
|[VNUM=1.43]
|Model contains 140 vertices, 76 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\factory02_ventilation02_fan02.v3o
|[VNUM=1.43]
|Model contains 34 vertices, 18 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\factory02_ventilation01_fan.v3o
|[VNUM=1.43]
|Model contains 4 vertices, 2 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Houses\Industry\depot04.v3o
|[VNUM=1.43]
|Model contains 906 vertices, 544 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\factory05_roofwindows.v3o
|[VNUM=1.43]
|Model contains 37 vertices, 14 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\ObjectChildren\factoryinv03_ventilation.v3o
|[VNUM=1.43]
|Model contains 46 vertices, 18 polygons, 0 bones, 5 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\branch_bank01_child02.v3o
|[VNUM=1.43]
|Model contains 40 vertices, 20 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\branch_bank01_child03.v3o
|[VNUM=1.43]
|Model contains 36 vertices, 18 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\branch_bank10_funnel.v3o
|[VNUM=1.43]
|Model contains 27 vertices, 10 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Industry\gastank01.v3o
|[VNUM=1.43]
|Model contains 300 vertices, 232 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\ObjectChildren\gastank01_alfa.v3o
|[VNUM=1.43]
|Model contains 31 vertices, 16 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Fences\generatorfence01.v3o
|[VNUM=1.43]
|Model contains 64 vertices, 34 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\accord02.v3o
|[VNUM=1.43]
|Model contains 1042 vertices, 1476 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\accord01_wheel01.v3o
|[VNUM=1.43]
|Model contains 93 vertices, 130 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\accord02_door01.v3o
|[VNUM=1.43]
|Model contains 104 vertices, 115 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar05_blue.v3o
|[VNUM=1.43]
|Model contains 499 vertices, 420 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar05_wheel01.v3o
|[VNUM=1.43]
|Model contains 50 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar05_blue_door01.v3o
|[VNUM=1.43]
|Model contains 48 vertices, 24 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar30_orange.v3o
|[VNUM=1.43]
|Model contains 443 vertices, 345 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar30_orange_wheel01.v3o
|[VNUM=1.43]
|Model contains 50 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar30_orange_door01.v3o
|[VNUM=1.43]
|Model contains 48 vertices, 38 polygons, 0 bones, 0 muscleanimframes
|Vision Core: Resized memory for Entities to  208 kB.
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar31_silver.v3o
|[VNUM=1.43]
|Model contains 473 vertices, 442 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar31_silver_wheel01.v3o
|[VNUM=1.43]
|Model contains 50 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar31_silver_door01.v3o
|[VNUM=1.43]
|Model contains 44 vertices, 24 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\fec_pass_blue.v3o
|[VNUM=1.43]
|Model contains 1740 vertices, 2276 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\fec_pass_blue_door01.v3o
|[VNUM=1.43]
|Model contains 134 vertices, 160 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Houses\Industry\electricity01.v3o
|[VNUM=1.43]
|Model contains 2623 vertices, 1068 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Bushes\bush07.v3o
|[VNUM=1.43]
|Model contains 162 vertices, 88 polygons, 0 bones, 28 muscleanimframes
|Loading Model mod:Models\Objects\Bushes\bush15.v3o
|[VNUM=1.43]
|Model contains 368 vertices, 204 polygons, 0 bones, 23 muscleanimframes
|Loading Model mod:Models\Objects\Missionspec\gastank01_table.v3o
|[VNUM=1.43]
|Model contains 110 vertices, 56 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Missionspec\gastank01.v3o
|[VNUM=1.43]
|Model contains 168 vertices, 155 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\07 Scenery\trafficlight01.v3o
|[VNUM=1.43]
|Model contains 479 vertices, 405 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\07 Scenery\streetname01.v3o
|[VNUM=1.43]
|Model contains 40 vertices, 28 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\07 Scenery\streetname02.v3o
|[VNUM=1.43]
|Model contains 40 vertices, 28 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\07 Scenery\streetname03.v3o
|[VNUM=1.43]
|Model contains 40 vertices, 28 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\07 Scenery\streetname04.v3o
|[VNUM=1.43]
|Model contains 40 vertices, 28 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\07 Scenery\trafficlight03.v3o
|[VNUM=1.43]
|Model contains 270 vertices, 265 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\07 Scenery\trafficlight02.v3o
|[VNUM=1.43]
|Model contains 333 vertices, 305 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\07 Scenery\trafficlight04.v3o
|[VNUM=1.43]
|Model contains 166 vertices, 138 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\07 Scenery\streetlight02.v3o
|[VNUM=1.43]
|Model contains 78 vertices, 99 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Houses\02 Civil\la_small_apts_1a.v3o
|[VNUM=1.43]
|Model contains 1488 vertices, 874 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\apartmentbuilding04_flowerbasket.v3o
|[VNUM=1.43]
|Model contains 36 vertices, 18 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\apartment_building_1970_child04.v3o
|[VNUM=1.43]
|Model contains 119 vertices, 96 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\apartmentbuilding04_vbox.v3o
|[VNUM=1.43]
|Model contains 72 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\depot02_meterbox01.v3o
|[VNUM=1.43]
|Model contains 28 vertices, 14 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\shop03_ventilationbox.v3o
|[VNUM=1.43]
|Model contains 72 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Houses\02 Civil\la_small_apts_1b.v3o
|[VNUM=1.43]
|Model contains 1488 vertices, 874 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Houses\02 Civil\la_small_apts_1d.v3o
|[VNUM=1.43]
|Model contains 1488 vertices, 874 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Houses\02 Civil\la_small_apts_1c.v3o
|[VNUM=1.43]
|Model contains 1488 vertices, 874 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Fences\constrfence01.v3o
|[VNUM=1.43]
|Model contains 56 vertices, 28 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\07 Scenery\desert_plant01.v3o
|[VNUM=1.43]
|Model contains 92 vertices, 66 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\07 Scenery\desert_plant03.v3o
|[VNUM=1.43]
|Model contains 92 vertices, 66 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Lanterns\streetlight03.v3o
|[VNUM=1.43]
|Model contains 110 vertices, 126 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\dtssed_black.v3o
|[VNUM=1.43]
|Model contains 1307 vertices, 1569 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\dts_wheel02.v3o
|[VNUM=1.43]
|Model contains 182 vertices, 256 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\dtssed_black_door01.v3o
|[VNUM=1.43]
|Model contains 138 vertices, 146 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\dtssed_black_door02.v3o
|[VNUM=1.43]
|Model contains 105 vertices, 116 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar30_red.v3o
|[VNUM=1.43]
|Model contains 443 vertices, 345 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar30_red_door01.v3o
|[VNUM=1.43]
|Model contains 48 vertices, 38 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\grand_cherokee03.v3o
|[VNUM=1.43]
|Model contains 1756 vertices, 2890 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\grand_cherokee01_wheel01.v3o
|[VNUM=1.43]
|Model contains 369 vertices, 384 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar22_white.v3o
|[VNUM=1.43]
|Model contains 566 vertices, 515 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar22_black_wheel01.v3o
|[VNUM=1.43]
|Model contains 44 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar22_white_door01.v3o
|[VNUM=1.43]
|Model contains 50 vertices, 42 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar20_red.v3o
|[VNUM=1.43]
|Model contains 404 vertices, 373 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar20_blue_wheel01.v3o
|[VNUM=1.43]
|Model contains 76 vertices, 44 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar20_red_door01.v3o
|[VNUM=1.43]
|Model contains 45 vertices, 31 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\fordltd03.v3o
|[VNUM=1.43]
|Model contains 1113 vertices, 1704 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\fordltd01_wheel01.v3o
|[VNUM=1.43]
|Model contains 166 vertices, 192 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\audi_a8_black.v3o
|[VNUM=1.43]
|Model contains 1156 vertices, 1494 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\audi_a8_silver_wheel01.v3o
|[VNUM=1.43]
|Model contains 100 vertices, 128 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\audi_a8_black_door01.v3o
|[VNUM=1.43]
|Model contains 104 vertices, 131 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar02_blue.v3o
|[VNUM=1.43]
|Model contains 734 vertices, 449 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar02_wheel01.v3o
|[VNUM=1.43]
|Model contains 77 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar02_blue_door.v3o
|[VNUM=1.43]
|Model contains 64 vertices, 33 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\chevrolet_caprice01.v3o
|[VNUM=1.43]
|Model contains 958 vertices, 1004 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\chevrolet_caprice01_wheel01.v3o
|[VNUM=1.43]
|Model contains 74 vertices, 64 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\chevrolet_caprice01_door01.v3o
|[VNUM=1.43]
|Model contains 149 vertices, 142 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar02_brown.v3o
|[VNUM=1.43]
|Model contains 734 vertices, 449 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar02_brown_door.v3o
|[VNUM=1.43]
|Model contains 64 vertices, 33 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\dodge_charger02.v3o
|[VNUM=1.43]
|Model contains 1239 vertices, 1250 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\dodge_charger_wheel01.v3o
|[VNUM=1.43]
|Model contains 118 vertices, 120 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\dodge_charger02_door01.v3o
|[VNUM=1.43]
|Model contains 85 vertices, 76 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar07_red.v3o
|[VNUM=1.43]
|Model contains 439 vertices, 405 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar07_wheel01.v3o
|[VNUM=1.43]
|Model contains 48 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Vision Core: Resized memory for Entities to  226 kB.
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar07_red_door01.v3o
|[VNUM=1.43]
|Model contains 64 vertices, 46 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\dtssed_white.v3o
|[VNUM=1.43]
|Model contains 1307 vertices, 1569 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\dtssed_white_door01.v3o
|[VNUM=1.43]
|Model contains 138 vertices, 146 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\dtssed_white_door02.v3o
|[VNUM=1.43]
|Model contains 105 vertices, 116 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar32_red.v3o
|[VNUM=1.43]
|Model contains 443 vertices, 398 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar32_red_wheel01.v3o
|[VNUM=1.43]
|Model contains 73 vertices, 44 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar32_red_door01.v3o
|[VNUM=1.43]
|Model contains 54 vertices, 34 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\07 Scenery\streetlight03.v3o
|[VNUM=1.43]
|Model contains 64 vertices, 75 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Road Signs\sign_parking01.v3o
|[VNUM=1.43]
|Model contains 30 vertices, 14 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\07 Scenery\desert_plant02.v3o
|[VNUM=1.43]
|Model contains 92 vertices, 66 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Street\parkingfence01.v3o
|[VNUM=1.43]
|Model contains 76 vertices, 30 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\boxtruck01.v3o
|[VNUM=1.43]
|Model contains 1572 vertices, 2249 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\boxtruck01_wheel01.v3o
|[VNUM=1.43]
|Model contains 182 vertices, 256 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\boxtruck01_wheel02.v3o
|[VNUM=1.43]
|Model contains 137 vertices, 192 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\boxtruck01_door01.v3o
|[VNUM=1.43]
|Model contains 130 vertices, 167 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\fec_utilbex03.v3o
|[VNUM=1.43]
|Model contains 1785 vertices, 2298 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\fec_utilbex03_door01.v3o
|[VNUM=1.43]
|Model contains 134 vertices, 160 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\07 Scenery\pylon_cable2.v3o
|[VNUM=1.43]
|Model contains 40 vertices, 32 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\07 Scenery\pylon1.v3o
|[VNUM=1.43]
|Model contains 148 vertices, 98 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\07 Scenery\pylon2.v3o
|[VNUM=1.43]
|Model contains 132 vertices, 90 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\07 Scenery\pylon_cable1.v3o
|[VNUM=1.43]
|Model contains 40 vertices, 32 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\07 Scenery\sign01.v3o
|[VNUM=1.43]
|Model contains 43 vertices, 18 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\07 Scenery\desert_plant04.v3o
|[VNUM=1.43]
|Model contains 92 vertices, 66 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\06 LA Misc\fire_station_gate.v3o
|[VNUM=1.43]
|Model contains 18 vertices, 16 polygons, 0 bones, 20 muscleanimframes
|Loading Model mod:Models\Objects\Equipment\chainsaw.v3o
|[VNUM=1.43]
|Model contains 222 vertices, 138 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\01 LA Equipment\emcase.v3o
|[VNUM=1.43]
|Model contains 104 vertices, 96 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Equipment\fireextinguisher.v3o
|[VNUM=1.43]
|Model contains 191 vertices, 88 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Equipment\jawsoflife.v3o
|[VNUM=1.43]
|Model contains 292 vertices, 160 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Equipment\megaphone.v3o
|[VNUM=1.43]
|Model contains 212 vertices, 132 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Houses\01 LA Emergency Service\police_station_walkable_helipad.v3o
|[VNUM=1.43]
|Model contains 300 vertices, 242 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Street\transformerhouse01.v3o
|[VNUM=1.43]
|Model contains 356 vertices, 164 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Houses\01 LA Emergency Service\hospital_walkable.v3o
|[VNUM=1.43]
|Model contains 48 vertices, 24 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Houses\01 LA Emergency Service\hospital_walkable_helipad.v3o
|[VNUM=1.43]
|Model contains 300 vertices, 242 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Street\citypole.v3o
|[VNUM=1.43]
|Model contains 72 vertices, 28 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Street\litterbox02.v3o
|[VNUM=1.43]
|Model contains 66 vertices, 44 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Street\phonebooth01.v3o
|[VNUM=1.43]
|Model contains 92 vertices, 48 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Houses\01 LA Emergency Service\hospital2.v3o
|[VNUM=1.43]
|Model contains 18587 vertices, 9451 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\02 LA HouseChildren\cable01.v3o
|[VNUM=1.43]
|Model contains 4 vertices, 2 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\02 LA HouseChildren\ladder01.v3o
|[VNUM=1.43]
|Model contains 62 vertices, 68 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\02 LA HouseChildren\security_camera01.v3o
|[VNUM=1.43]
|Model contains 184 vertices, 128 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\branch_bank01_child01.v3o
|[VNUM=1.43]
|Model contains 40 vertices, 20 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\depot03_roofventilations01.v3o
|[VNUM=1.43]
|Model contains 138 vertices, 76 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\mall01_aircon.v3o
|[VNUM=1.43]
|Model contains 28 vertices, 14 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\officeblock02_satelite.v3o
|[VNUM=1.43]
|Model contains 103 vertices, 87 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\07 Scenery\tunnel.v3o
|[VNUM=1.43]
|Model contains 691 vertices, 582 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Street\vat03.v3o
|[VNUM=1.43]
|Model contains 20 vertices, 10 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Houses\Town - Apartment\twofamilyhouse03.v3o
|[VNUM=1.43]
|Model contains 940 vertices, 591 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\twofamilyhouse03_balconydoor.v3o
|[VNUM=1.43]
|Model contains 4 vertices, 2 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\twofamilyhouse03_foorgazebo01.v3o
|[VNUM=1.43]
|Model contains 36 vertices, 18 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\twofamilyhouse03_funnel01.v3o
|[VNUM=1.43]
|Model contains 68 vertices, 32 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\twofamilyhouse03_roofwindow.v3o
|[VNUM=1.43]
|Model contains 4 vertices, 2 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\ObjectChildren\housedirt01.v3o
|[VNUM=1.43]
|Model contains 4 vertices, 2 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\ObjectChildren\housedirt03.v3o
|[VNUM=1.43]
|Model contains 4 vertices, 2 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\ObjectChildren\housedeco03.v3o
|[VNUM=1.43]
|Model contains 99 vertices, 54 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\ObjectChildren\housedeco04.v3o
|[VNUM=1.43]
|Model contains 108 vertices, 82 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\ObjectChildren\housedeco01.v3o
|[VNUM=1.43]
|Model contains 96 vertices, 54 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Bushes\bush04_a.v3o
|[VNUM=1.43]
|Model contains 64 vertices, 34 polygons, 0 bones, 29 muscleanimframes
|Loading Model mod:Models\Objects\Bushes\bush03.v3o
|[VNUM=1.43]
|Model contains 86 vertices, 46 polygons, 0 bones, 23 muscleanimframes
|Loading Model mod:Models\Objects\Bushes\bush06.v3o
|[VNUM=1.43]
|Model contains 186 vertices, 98 polygons, 0 bones, 25 muscleanimframes
|Loading Model mod:Models\Objects\Bushes\bush50.v3o
|[VNUM=1.43]
|Model contains 98 vertices, 60 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Road Signs\firesign01.v3o
|[VNUM=1.43]
|Model contains 100 vertices, 50 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Road Signs\sign_passing01.v3o
|[VNUM=1.43]
|Model contains 30 vertices, 14 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Street\balustrade03.v3o
|[VNUM=1.43]
|Model contains 178 vertices, 114 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\07 Scenery\streetlight04.v3o
|[VNUM=1.43]
|Model contains 45 vertices, 61 polygons, 0 bones, 0 muscleanimframes
|Vision Core: Resized memory for Entities to  244 kB.
|Loading Model mod:Models\Objects\07 Scenery\streetlight01.v3o
|[VNUM=1.43]
|Model contains 79 vertices, 101 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Houses\Town - Apartment\singlefamily11.v3o
|[VNUM=1.43]
|Model contains 1440 vertices, 848 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\singlefamily11_balcony.v3o
|[VNUM=1.43]
|Model contains 56 vertices, 32 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\singlefamily11_balcony02.v3o
|[VNUM=1.43]
|Model contains 148 vertices, 68 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\singlefamily11_funnel.v3o
|[VNUM=1.43]
|Model contains 20 vertices, 10 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\singlefamily11_flowerpot_big.v3o
|[VNUM=1.43]
|Model contains 48 vertices, 26 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\singlefamily11_gazebo.v3o
|[VNUM=1.43]
|Model contains 85 vertices, 49 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\singlefamily11_small.v3o
|[VNUM=1.43]
|Model contains 48 vertices, 26 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\singlefamily11_window_big.v3o
|[VNUM=1.43]
|Model contains 20 vertices, 10 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Garages\garage03.v3o
|[VNUM=1.43]
|Model contains 196 vertices, 98 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar27_blue.v3o
|[VNUM=1.43]
|Model contains 472 vertices, 439 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar27_blue_wheel01.v3o
|[VNUM=1.43]
|Model contains 50 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar27_blue_door01.v3o
|[VNUM=1.43]
|Model contains 74 vertices, 56 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Street\litterbox01.v3o
|[VNUM=1.43]
|Model contains 78 vertices, 52 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Street\litterbox01b.v3o
|[VNUM=1.43]
|Model contains 78 vertices, 52 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Street\litterbox01c.v3o
|[VNUM=1.43]
|Model contains 78 vertices, 52 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Misc\terrace01b.v3o
|[VNUM=1.43]
|Model contains 232 vertices, 120 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Bushes\bush01.v3o
|[VNUM=1.43]
|Model contains 34 vertices, 20 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Street\sunshade01.v3o
|[VNUM=1.43]
|Model contains 132 vertices, 68 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Houses\Town - Apartment\town_family_house_ni_01.v3o
|[VNUM=1.43]
|Model contains 830 vertices, 376 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\two_family_house_ni_01_balcony.v3o
|[VNUM=1.43]
|Model contains 64 vertices, 34 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\tfhi01_balcony.v3o
|[VNUM=1.43]
|Model contains 77 vertices, 34 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\TFHI01_gazeboroof.v3o
|[VNUM=1.43]
|Model contains 19 vertices, 8 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\tfhi01_roofwindow.v3o
|[VNUM=1.43]
|Model contains 35 vertices, 16 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\ObjectChildren\housedirt04.v3o
|[VNUM=1.43]
|Model contains 4 vertices, 2 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\ObjectChildren\housedeco06.v3o
|[VNUM=1.43]
|Model contains 81 vertices, 58 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\ObjectChildren\housedeco02.v3o
|[VNUM=1.43]
|Model contains 92 vertices, 50 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\ObjectChildren\housead10.v3o
|[VNUM=1.43]
|Model contains 34 vertices, 14 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Garages\garage02.v3o
|[VNUM=1.43]
|Model contains 113 vertices, 60 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\grand_cherokee02.v3o
|[VNUM=1.43]
|Model contains 1756 vertices, 2890 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Fences\industryfence01_corner.v3o
|[VNUM=1.43]
|Model contains 174 vertices, 86 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Houses\City - Office\officeblock03b.v3o
|[VNUM=1.43]
|Model contains 1894 vertices, 1024 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\fitness01_digitalsign.v3o
|[VNUM=1.43]
|Model contains 24 vertices, 12 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\hotel_i_solarsmall01.v3o
|[VNUM=1.43]
|Model contains 156 vertices, 104 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Trees\foresttree11.v3o
|[VNUM=1.43]
|Model contains 194 vertices, 145 polygons, 0 bones, 31 muscleanimframes
|Loading Model mod:Models\Objects\Trees\foresttree10.v3o
|[VNUM=1.43]
|Model contains 220 vertices, 151 polygons, 0 bones, 30 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\tahoe01.v3o
|[VNUM=1.43]
|Model contains 1132 vertices, 1419 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\09 Government\fbi_suv_wheel01.v3o
|[VNUM=1.43]
|Model contains 186 vertices, 256 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\tahoe01_door01.v3o
|[VNUM=1.43]
|Model contains 112 vertices, 116 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar31_brown.v3o
|[VNUM=1.43]
|Model contains 473 vertices, 442 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar31_black_wheel01.v3o
|[VNUM=1.43]
|Model contains 50 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar31_brown_door01.v3o
|[VNUM=1.43]
|Model contains 44 vertices, 24 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Street\bicycle03.v3o
|[VNUM=1.43]
|Model contains 193 vertices, 105 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Park\treeholder01.v3o
|[VNUM=1.43]
|Model contains 57 vertices, 27 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Trees\cuppedtree01.v3o
|[VNUM=1.43]
|Model contains 220 vertices, 187 polygons, 0 bones, 30 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar13_red.v3o
|[VNUM=1.43]
|Model contains 481 vertices, 431 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar13_red_wheel01.v3o
|[VNUM=1.43]
|Model contains 52 vertices, 28 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar13_red_door01.v3o
|[VNUM=1.43]
|Model contains 64 vertices, 42 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar16_blue.v3o
|[VNUM=1.43]
|Model contains 497 vertices, 483 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar16_blue_wheel01.v3o
|[VNUM=1.43]
|Model contains 46 vertices, 40 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar16_blue_door01.v3o
|[VNUM=1.43]
|Model contains 54 vertices, 42 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\accord01.v3o
|[VNUM=1.43]
|Model contains 1042 vertices, 1476 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\accord01_door01.v3o
|[VNUM=1.43]
|Model contains 104 vertices, 115 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Street\parkingbox01.v3o
|[VNUM=1.43]
|Model contains 99 vertices, 74 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\bank_la\bank_floor.v3o
|[VNUM=1.43]
|Model contains 112 vertices, 43 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\bank_la\bank_ceiling.v3o
|[VNUM=1.43]
|Model contains 668 vertices, 364 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\bank_la\bank_walls.v3o
|[VNUM=1.43]
|Model contains 822 vertices, 470 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\bank_la\bank_walls_windows.v3o
|[VNUM=1.43]
|Model contains 60 vertices, 30 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\bank_k\bank_k_door_l.v3o
|[VNUM=1.43]
|Model contains 9 vertices, 4 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\bank_k\bank_k_door_r.v3o
|[VNUM=1.43]
|Model contains 9 vertices, 4 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\bank_k\bank_k_door03.v3o
|[VNUM=1.43]
|Model contains 27 vertices, 10 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\bank_k\bank_k_vault_door01.v3o
|[VNUM=1.43]
|Model contains 166 vertices, 68 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\bank_k\bank_k_vault_door02.v3o
|[VNUM=1.43]
|Model contains 166 vertices, 68 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\bank_k_gold.v3o
|[VNUM=1.43]
|Model contains 247 vertices, 96 polygons, 0 bones, 0 muscleanimframes
|Vision Core: Resized memory for Entities to  262 kB.
|Loading Model mod:Models\Objects\HouseFurniture\bankmain01_bancomat03.v3o
|[VNUM=1.43]
|Model contains 57 vertices, 22 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\bankmain01_chair01.v3o
|[VNUM=1.43]
|Model contains 60 vertices, 40 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\bankmain01_standtable.v3o
|[VNUM=1.43]
|Model contains 99 vertices, 38 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\st_bigshop05_pay.v3o
|[VNUM=1.43]
|Model contains 645 vertices, 242 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\ap_shop01_plant09.v3o
|[VNUM=1.43]
|Model contains 101 vertices, 76 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\st_bigshop05_cabinet.v3o
|[VNUM=1.43]
|Model contains 77 vertices, 30 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\st_bigshop05_infopoint.v3o
|[VNUM=1.43]
|Model contains 124 vertices, 44 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\bankmain01_bancomat04.v3o
|[VNUM=1.43]
|Model contains 135 vertices, 48 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\office_g_divider01.v3o
|[VNUM=1.43]
|Model contains 28 vertices, 16 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\st_bigshop05_table01.v3o
|[VNUM=1.43]
|Model contains 69 vertices, 38 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Equipment\tvcamera.v3o
|[VNUM=1.43]
|Model contains 155 vertices, 143 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Construction\constr_cementbag01.v3o
|[VNUM=1.43]
|Model contains 39 vertices, 22 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Equipment\packet01.v3o
|[VNUM=1.43]
|Model contains 32 vertices, 12 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\guesthouse01_couch01.v3o
|[VNUM=1.43]
|Model contains 102 vertices, 64 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\st_bigshop05_table02.v3o
|[VNUM=1.43]
|Model contains 75 vertices, 40 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\guesthouse01_couch02.v3o
|[VNUM=1.43]
|Model contains 137 vertices, 92 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\st_bigshop03_carpet.v3o
|[VNUM=1.43]
|Model contains 24 vertices, 10 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\guesthouse01_plant01.v3o
|[VNUM=1.43]
|Model contains 46 vertices, 40 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\st_bigshop05_periodicals02.v3o
|[VNUM=1.43]
|Model contains 94 vertices, 34 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\ps_dome_rack01.v3o
|[VNUM=1.43]
|Model contains 20 vertices, 10 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Houses\02 Civil\pawnshop.v3o
|[VNUM=1.43]
|Model contains 2382 vertices, 1880 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Houses\City - Shopping\shopping_center_10.v3o
|[VNUM=1.43]
|Model contains 2605 vertices, 1341 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\shopping_center_10_alphas.v3o
|[VNUM=1.43]
|Model contains 76 vertices, 38 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\shopping_center_10_DIY01.v3o
|[VNUM=1.43]
|Model contains 202 vertices, 124 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\shopping_center_10_DIY02.v3o
|[VNUM=1.43]
|Model contains 4 vertices, 2 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\shopping_center_10_plakat01.v3o
|[VNUM=1.43]
|Model contains 152 vertices, 66 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\shopping_center_10_plakat02.v3o
|[VNUM=1.43]
|Model contains 152 vertices, 66 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\shopping_center_10_roof_tunnel02.v3o
|[VNUM=1.43]
|Model contains 63 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Houses\City - Office\office_g_withoutgazebo.v3o
|[VNUM=1.43]
|Model contains 3167 vertices, 1735 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\apartmentbuilding05_funnel.v3o
|[VNUM=1.43]
|Model contains 40 vertices, 20 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\depot04_roofwindow.v3o
|[VNUM=1.43]
|Model contains 28 vertices, 18 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Trees\leafedtree_03.v3o
|[VNUM=1.43]
|Model contains 234 vertices, 177 polygons, 0 bones, 23 muscleanimframes
|Loading Model mod:Models\Objects\Walls\wall10_straight.v3o
|[VNUM=1.43]
|Model contains 88 vertices, 50 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Walls\wall10_corner.v3o
|[VNUM=1.43]
|Model contains 65 vertices, 38 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Hedges\hedge01_middle.v3o
|[VNUM=1.43]
|Model contains 38 vertices, 24 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Hedges\hedge01_corner.v3o
|[VNUM=1.43]
|Model contains 72 vertices, 48 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Hedges\hedge01_end.v3o
|[VNUM=1.43]
|Model contains 38 vertices, 24 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Playground\swing02.v3o
|[VNUM=1.43]
|Model contains 286 vertices, 184 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Playground\wip01.v3o
|[VNUM=1.43]
|Model contains 192 vertices, 122 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Playground\sandbox01.v3o
|[VNUM=1.43]
|Model contains 84 vertices, 42 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Park\parkbench_01.v3o
|[VNUM=1.43]
|Model contains 80 vertices, 58 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Street\phonebooth02.v3o
|[VNUM=1.43]
|Model contains 118 vertices, 58 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Bushes\cuppedbush11.v3o
|[VNUM=1.43]
|Model contains 220 vertices, 138 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\cafe01_tablesmall.v3o
|[VNUM=1.43]
|Model contains 46 vertices, 32 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\cafe01_tablebig.v3o
|[VNUM=1.43]
|Model contains 64 vertices, 38 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\cafe01_chair.v3o
|[VNUM=1.43]
|Model contains 32 vertices, 38 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Persons\Civil\civilman02_silver.v3o
|[VNUM=1.41]
|Model contains 348 vertices, 448 polygons, 20 bones, 0 muscleanimframes
|Loading Model mod:Models\Persons\Civil\civilwoman01_red.v3o
|[VNUM=1.41]
|Model contains 401 vertices, 502 polygons, 20 bones, 0 muscleanimframes
|Loading Model mod:Models\Persons\Civil\civilwoman03_white.v3o
|[VNUM=1.43]
|Model contains 428 vertices, 515 polygons, 20 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Street\ebox01.v3o
|[VNUM=1.43]
|Model contains 36 vertices, 18 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Street\kiosk03a.v3o
|[VNUM=1.43]
|Model contains 324 vertices, 182 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\ObjectChildren\kiosk03a_snacks.v3o
|[VNUM=1.43]
|Model contains 26 vertices, 16 polygons, 0 bones, 4 muscleanimframes
|Loading Model mod:Models\Objects\Fences\wall01_door.v3o
|[VNUM=1.43]
|Model contains 11 vertices, 5 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Fences\industryfence01_pole.v3o
|[VNUM=1.43]
|Model contains 26 vertices, 10 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Park\statue01.v3o
|[VNUM=1.43]
|Model contains 308 vertices, 176 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Park\statue02.v3o
|[VNUM=1.43]
|Model contains 388 vertices, 204 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Bushes\cuppedflowerbush02.v3o
|[VNUM=1.43]
|Model contains 66 vertices, 44 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Bushes\cuppedflowerbush01.v3o
|[VNUM=1.43]
|Model contains 72 vertices, 56 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Persons\Civil\civilwoman02_red.v3o
|[VNUM=1.41]
|Model contains 424 vertices, 536 polygons, 20 bones, 0 muscleanimframes
|Loading Model mod:Models\Persons\Civil\civilwoman05.v3o
|[VNUM=1.41]
|Model contains 407 vertices, 524 polygons, 20 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Park\bench01.v3o
|[VNUM=1.43]
|Model contains 108 vertices, 64 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Signs\advert03.v3o
|[VNUM=1.43]
|Model contains 215 vertices, 114 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Signs\advert04.v3o
|[VNUM=1.43]
|Model contains 216 vertices, 114 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Signs\advert07.v3o
|[VNUM=1.43]
|Model contains 214 vertices, 114 polygons, 0 bones, 0 muscleanimframes
|Vision Core: Resized memory for Entities to  280 kB.
|Loading Model mod:Models\Objects\Street\citypole01.v3o
|[VNUM=1.43]
|Model contains 26 vertices, 10 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Playground\merrygoround01.v3o
|[VNUM=1.43]
|Model contains 184 vertices, 116 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Trees\leafedtree_02.v3o
|[VNUM=1.43]
|Model contains 236 vertices, 212 polygons, 0 bones, 14 muscleanimframes
|Loading Model mod:Models\Objects\Trees\leafedtree_01.v3o
|[VNUM=1.43]
|Model contains 268 vertices, 210 polygons, 0 bones, 32 muscleanimframes
|Loading Model mod:Models\Objects\Bushes\bush02.v3o
|[VNUM=1.43]
|Model contains 56 vertices, 28 polygons, 0 bones, 27 muscleanimframes
|Loading Model mod:Models\Objects\Bushes\cuppedbush02.v3o
|[VNUM=1.43]
|Model contains 25 vertices, 20 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Street\litterbox03.v3o
|[VNUM=1.43]
|Model contains 152 vertices, 102 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Trees\cuppedtree02.v3o
|[VNUM=1.43]
|Model contains 238 vertices, 203 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\hotel02\hotel02_floor.v3o
|[VNUM=1.43]
|Model contains 401 vertices, 244 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\hotel02\hotel02_ceiling.v3o
|[VNUM=1.43]
|Model contains 2612 vertices, 1438 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\hotel02\hotel02_walls.v3o
|[VNUM=1.43]
|Model contains 1132 vertices, 618 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\hotel02\hotel02_door04.v3o
|[VNUM=1.43]
|Model contains 20 vertices, 10 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\hotel02\hotel02_door03.v3o
|[VNUM=1.43]
|Model contains 20 vertices, 10 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\hotel02\hotel02_door01.v3o
|[VNUM=1.43]
|Model contains 20 vertices, 10 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\hotel02\hotel02_door05.v3o
|[VNUM=1.43]
|Model contains 26 vertices, 10 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\hotel02_toilet.v3o
|[VNUM=1.43]
|Model contains 90 vertices, 56 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\hotel02_washbasin.v3o
|[VNUM=1.43]
|Model contains 56 vertices, 46 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\hotel02_armchair.v3o
|[VNUM=1.43]
|Model contains 57 vertices, 54 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\hotel02_couch.v3o
|[VNUM=1.43]
|Model contains 76 vertices, 66 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\tfhi01_lamp.v3o
|[VNUM=1.43]
|Model contains 53 vertices, 45 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\hotel02_wardrobe.v3o
|[VNUM=1.43]
|Model contains 33 vertices, 19 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\hotel02_tv.v3o
|[VNUM=1.43]
|Model contains 38 vertices, 20 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\hotel02_carpet.v3o
|[VNUM=1.43]
|Model contains 40 vertices, 20 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\hotel02_logo.v3o
|[VNUM=1.43]
|Model contains 4 vertices, 2 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\hotel02_restrictionrobe.v3o
|[VNUM=1.43]
|Model contains 48 vertices, 32 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\restaurant01_bar.v3o
|[VNUM=1.43]
|Model contains 212 vertices, 134 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\hotel_i_table.v3o
|[VNUM=1.43]
|Model contains 52 vertices, 40 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\st_smallshop02_chair.v3o
|[VNUM=1.43]
|Model contains 15 vertices, 12 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\hotel02_mirror.v3o
|[VNUM=1.43]
|Model contains 4 vertices, 2 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\mall02_mobilewall_small.v3o
|[VNUM=1.43]
|Model contains 20 vertices, 10 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\hotel02_bed.v3o
|[VNUM=1.43]
|Model contains 70 vertices, 50 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\skyscraper02_monitor01.v3o
|[VNUM=1.43]
|Model contains 72 vertices, 24 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\hotel02_receptiondesk.v3o
|[VNUM=1.43]
|Model contains 112 vertices, 56 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\hotel02_recepitonsign.v3o
|[VNUM=1.43]
|Model contains 16 vertices, 8 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\hotel02_table.v3o
|[VNUM=1.43]
|Model contains 20 vertices, 10 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Houses\City - Office\officeblock05.v3o
|[VNUM=1.43]
|Model contains 2603 vertices, 1424 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Wrecks_sliceable\twinkletruck02.v3o
|[VNUM=1.43]
|Model contains 2262 vertices, 972 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Wrecks_sliceable\twinkletruck02_sliceable_door01.v3o
|[VNUM=1.43]
|Model contains 208 vertices, 102 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Wrecks_sliceable\civillimowreck01.v3o
|[VNUM=1.43]
|Model contains 715 vertices, 533 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Wrecks_sliceable\civillimowreck01_sliceable_door01.v3o
|[VNUM=1.43]
|Model contains 55 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Wrecks_sliceable\carwreck13b.v3o
|[VNUM=1.43]
|Model contains 635 vertices, 524 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Wrecks_sliceable\carwreck13b_door01.v3o
|[VNUM=1.43]
|Model contains 59 vertices, 44 polygons, 0 bones, 8 muscleanimframes
|Loading Model mod:Models\Vehicles\Wrecks_sliceable\carwreck09.v3o
|[VNUM=1.43]
|Model contains 666 vertices, 543 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Wrecks_sliceable\carwreck09_sliceable_door01.v3o
|[VNUM=1.43]
|Model contains 81 vertices, 42 polygons, 0 bones, 7 muscleanimframes
|Loading Model mod:Models\Persons\Civil\civilman01_white2.v3o
|[VNUM=1.43]
|Model contains 348 vertices, 448 polygons, 20 bones, 0 muscleanimframes
|Loading Model mod:Models\Persons\Civil\civilminister01.v3o
|[VNUM=1.41]
|Model contains 366 vertices, 436 polygons, 20 bones, 0 muscleanimframes
|Loading Model mod:Models\Persons\Civil\civilpizza01.v3o
|[VNUM=1.41]
|Model contains 390 vertices, 452 polygons, 20 bones, 0 muscleanimframes
|Loading Model mod:Models\Persons\Civil\civilwomanold01.v3o
|[VNUM=1.43]
|Model contains 443 vertices, 524 polygons, 20 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Debris\skidmarks03.v3o
|[VNUM=1.43]
|Model contains 4 vertices, 2 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Debris\skidmarks02.v3o
|[VNUM=1.43]
|Model contains 4 vertices, 2 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Debris\burned_spot02.v3o
|[VNUM=1.43]
|Model contains 4 vertices, 2 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Debris\scratches01.v3o
|[VNUM=1.43]
|Model contains 4 vertices, 2 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Debris\glas01.v3o
|[VNUM=1.43]
|Model contains 4 vertices, 2 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Misc\tutplane4.v3o
|[VNUM=1.43]
|Model contains 4 vertices, 2 polygons, 0 bones, 5 muscleanimframes
|Loading Model mod:Models\Objects\Walls\tutwall01.v3o
|[VNUM=1.43]
|Model contains 20 vertices, 10 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar05_red.v3o
|[VNUM=1.43]
|Model contains 499 vertices, 420 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar05_red_door01.v3o
|[VNUM=1.43]
|Model contains 48 vertices, 24 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\tahoe02.v3o
|[VNUM=1.43]
|Model contains 1132 vertices, 1419 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\tahoe02_door01.v3o
|[VNUM=1.43]
|Model contains 112 vertices, 116 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Plants\grass01.v3o
|[VNUM=1.43]
|Model contains 112 vertices, 56 polygons, 0 bones, 21 muscleanimframes
|Loading Model mod:Models\Objects\Plants\grass02.v3o
|[VNUM=1.43]
|Model contains 112 vertices, 56 polygons, 0 bones, 19 muscleanimframes
|Loading Model mod:Models\Houses\02 Civil\walmart.v3o
|[VNUM=1.43]
|Model contains 1217 vertices, 629 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\06 LA Misc\walmartflag.v3o
|[VNUM=1.43]
|Model contains 168 vertices, 170 polygons, 0 bones, 14 muscleanimframes
|Vision Core: Resized memory for Entities to  298 kB.
|Loading Model mod:Models\Objects\06 LA Misc\usa_flag.v3o
|[VNUM=1.43]
|Model contains 156 vertices, 116 polygons, 0 bones, 15 muscleanimframes
|Loading Model mod:Models\Houses\City - Apartment\cityapartment10.v3o
|[VNUM=1.43]
|Model contains 1923 vertices, 990 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\apartment_building_corner01_balustrade.v3o
|[VNUM=1.43]
|Model contains 72 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\guesthouse01_flowerpot01.v3o
|[VNUM=1.43]
|Model contains 40 vertices, 20 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\ObjectChildren\housead06.v3o
|[VNUM=1.43]
|Model contains 60 vertices, 24 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Street\citypole02_chain_450cm.v3o
|[VNUM=1.43]
|Model contains 10 vertices, 8 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Misc\fireextinguisherbox.v3o
|[VNUM=1.43]
|Model contains 148 vertices, 88 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Misc\firehosebox.v3o
|[VNUM=1.43]
|Model contains 192 vertices, 122 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Misc\flag01.v3o
|[VNUM=1.43]
|Model contains 150 vertices, 125 polygons, 0 bones, 8 muscleanimframes
|Loading Model mod:Models\Objects\Misc\travelvan01.v3o
|[VNUM=1.43]
|Model contains 1070 vertices, 474 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Street\garbagebag01.v3o
|[VNUM=1.43]
|Model contains 71 vertices, 76 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Bushes\tropicalbush01.v3o
|[VNUM=1.43]
|Model contains 74 vertices, 42 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Street\bicycle02.v3o
|[VNUM=1.43]
|Model contains 193 vertices, 105 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Street\glasscontainer01.v3o
|[VNUM=1.43]
|Model contains 140 vertices, 72 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Street\glasscontainer02.v3o
|[VNUM=1.43]
|Model contains 140 vertices, 72 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Street\gritbox01.v3o
|[VNUM=1.43]
|Model contains 28 vertices, 12 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Street\newsbox01.v3o
|[VNUM=1.43]
|Model contains 78 vertices, 38 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\gasstation\gasstation_pumps.v3o
|[VNUM=1.43]
|Model contains 710 vertices, 836 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\gasstation\gasstation_pumproof.v3o
|[VNUM=1.43]
|Model contains 1260 vertices, 1332 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\gasstation\gasstation_floor.v3o
|[VNUM=1.43]
|Model contains 131 vertices, 93 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\gasstation\gasstation_ceiling.v3o
|[VNUM=1.43]
|Model contains 399 vertices, 365 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\gasstation\gasstation_walls.v3o
|[VNUM=1.43]
|Model contains 650 vertices, 626 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\gasstation\gasstation_walls_windows.v3o
|[VNUM=1.43]
|Model contains 68 vertices, 116 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\gasstation\gasstation_door01.v3o
|[VNUM=1.43]
|Model contains 85 vertices, 50 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\gasstation\gasstation_door02.v3o
|[VNUM=1.43]
|Model contains 68 vertices, 50 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\gasstation\gasstation_door03.v3o
|[VNUM=1.43]
|Model contains 24 vertices, 12 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\gasstation\gasstation_door04.v3o
|[VNUM=1.43]
|Model contains 12 vertices, 12 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\gasstation\gasstation_counter.v3o
|[VNUM=1.43]
|Model contains 232 vertices, 152 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\gasstation\gasstation_drinkstation.v3o
|[VNUM=1.43]
|Model contains 218 vertices, 138 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\gasstation\gasstation_shelf01.v3o
|[VNUM=1.43]
|Model contains 1735 vertices, 1047 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\gasstation\gasstation_shelf02.v3o
|[VNUM=1.43]
|Model contains 2883 vertices, 2925 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\gasstation\gasstation_trashcan.v3o
|[VNUM=1.43]
|Model contains 116 vertices, 112 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\miningbarrack_toilet.v3o
|[VNUM=1.43]
|Model contains 53 vertices, 40 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\cinema01_washingbasin.v3o
|[VNUM=1.43]
|Model contains 41 vertices, 30 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\ap_shop01_plant01.v3o
|[VNUM=1.43]
|Model contains 92 vertices, 68 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Bushes\cuppedbush01.v3o
|[VNUM=1.43]
|Model contains 81 vertices, 72 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Street\balustrade02.v3o
|[VNUM=1.43]
|Model contains 78 vertices, 30 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar07_black.v3o
|[VNUM=1.43]
|Model contains 439 vertices, 405 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar07_black_door01.v3o
|[VNUM=1.43]
|Model contains 64 vertices, 46 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar08_grey.v3o
|[VNUM=1.43]
|Model contains 496 vertices, 457 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar08_grey_wheel01.v3o
|[VNUM=1.43]
|Model contains 50 vertices, 28 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar08_grey_door01.v3o
|[VNUM=1.43]
|Model contains 55 vertices, 40 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\mitsubishi_lancer02.v3o
|[VNUM=1.43]
|Model contains 1557 vertices, 1101 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\mitsubishi_lancer01_wheel01.v3o
|[VNUM=1.43]
|Model contains 121 vertices, 88 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\mitsubishi_lancer02_door01.v3o
|[VNUM=1.43]
|Model contains 163 vertices, 88 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\ford_cv02.v3o
|[VNUM=1.43]
|Model contains 1557 vertices, 1992 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\ford_cv_taxi_wheel01.v3o
|[VNUM=1.43]
|Model contains 44 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\ford_cv02_door01.v3o
|[VNUM=1.43]
|Model contains 187 vertices, 237 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\dodge_charger03.v3o
|[VNUM=1.43]
|Model contains 1239 vertices, 1250 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\dodge_charger03_door01.v3o
|[VNUM=1.43]
|Model contains 85 vertices, 76 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\fordltd01.v3o
|[VNUM=1.43]
|Model contains 1113 vertices, 1704 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar12_green.v3o
|[VNUM=1.43]
|Model contains 573 vertices, 454 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar12_green_wheel01.v3o
|[VNUM=1.43]
|Model contains 76 vertices, 44 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar12_green_door01.v3o
|[VNUM=1.43]
|Model contains 58 vertices, 40 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar05_green.v3o
|[VNUM=1.43]
|Model contains 499 vertices, 420 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar05_green_door01.v3o
|[VNUM=1.43]
|Model contains 48 vertices, 24 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\gasstation\gasstation_sign.v3o
|[VNUM=1.43]
|Model contains 61 vertices, 78 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\06 LA Misc\busstop.v3o
|[VNUM=1.43]
|Model contains 288 vertices, 224 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\06 LA Misc\mcdonalds_sign.v3o
|[VNUM=1.43]
|Model contains 214 vertices, 186 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Houses\02 Civil\restaurant03.v3o
|[VNUM=1.43]
|Model contains 778 vertices, 534 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Houses\02 Civil\restaurant01.v3o
|[VNUM=1.43]
|Model contains 735 vertices, 412 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\dtslimo.v3o
|[VNUM=1.43]
|Model contains 1476 vertices, 1721 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\dtslimo_door01.v3o
|[VNUM=1.43]
|Model contains 138 vertices, 146 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\dtslimo_door02.v3o
|[VNUM=1.43]
|Model contains 105 vertices, 116 polygons, 0 bones, 0 muscleanimframes
|Vision Core: Resized memory for Entities to  316 kB.
|Loading Model mod:Models\Vehicles\07 Civil\ford_cv_taxi.v3o
|[VNUM=1.43]
|Model contains 1583 vertices, 2006 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\ford_cv_taxi_door01.v3o
|[VNUM=1.43]
|Model contains 187 vertices, 237 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Persons\Civil\driver.v3o
|[VNUM=1.43]
|Model contains 416 vertices, 512 polygons, 20 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\dtsdip_body.v3o
|[VNUM=1.43]
|Model contains 1577 vertices, 1928 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\dts_wheel01.v3o
|[VNUM=1.43]
|Model contains 182 vertices, 256 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\dtsdip_door01.v3o
|[VNUM=1.43]
|Model contains 138 vertices, 146 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\dtsdip_door02.v3o
|[VNUM=1.43]
|Model contains 82 vertices, 76 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Persons\Civil\vman.v3o
|[VNUM=1.43]
|Model contains 367 vertices, 468 polygons, 20 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Hedges\hedge05_middle.v3o
|[VNUM=1.43]
|Model contains 50 vertices, 32 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar08_white.v3o
|[VNUM=1.43]
|Model contains 496 vertices, 457 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar08_white_wheel01.v3o
|[VNUM=1.43]
|Model contains 50 vertices, 28 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar08_white_door01.v3o
|[VNUM=1.43]
|Model contains 55 vertices, 40 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar31_black.v3o
|[VNUM=1.43]
|Model contains 473 vertices, 442 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar31_black_door01.v3o
|[VNUM=1.43]
|Model contains 44 vertices, 24 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar32_blue.v3o
|[VNUM=1.43]
|Model contains 443 vertices, 398 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar32_blue_wheel01.v3o
|[VNUM=1.43]
|Model contains 73 vertices, 44 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar32_blue_door01.v3o
|[VNUM=1.43]
|Model contains 54 vertices, 34 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\ford_cv03.v3o
|[VNUM=1.43]
|Model contains 1557 vertices, 1992 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\ford_cv03_door01.v3o
|[VNUM=1.43]
|Model contains 187 vertices, 237 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\dtssed_silver.v3o
|[VNUM=1.43]
|Model contains 1307 vertices, 1569 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\dtssed_silver_door01.v3o
|[VNUM=1.43]
|Model contains 138 vertices, 146 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\dtssed_silver_door02.v3o
|[VNUM=1.43]
|Model contains 105 vertices, 116 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar27_orange.v3o
|[VNUM=1.43]
|Model contains 472 vertices, 439 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar27_orange_wheel01.v3o
|[VNUM=1.43]
|Model contains 50 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar27_orange_door01.v3o
|[VNUM=1.43]
|Model contains 74 vertices, 56 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar21_blue.v3o
|[VNUM=1.43]
|Model contains 520 vertices, 451 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar21_blue_wheel01.v3o
|[VNUM=1.43]
|Model contains 52 vertices, 28 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar21_blue_door01.v3o
|[VNUM=1.43]
|Model contains 66 vertices, 44 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar22_black.v3o
|[VNUM=1.43]
|Model contains 566 vertices, 515 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar22_black_door01.v3o
|[VNUM=1.43]
|Model contains 50 vertices, 42 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar20_blue.v3o
|[VNUM=1.43]
|Model contains 404 vertices, 373 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar20_blue_door01.v3o
|[VNUM=1.43]
|Model contains 45 vertices, 31 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar17_grey.v3o
|[VNUM=1.43]
|Model contains 426 vertices, 397 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar17_green_wheel01.v3o
|[VNUM=1.43]
|Model contains 72 vertices, 44 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar17_grey_door01.v3o
|[VNUM=1.43]
|Model contains 64 vertices, 35 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\freestar02.v3o
|[VNUM=1.43]
|Model contains 1617 vertices, 2107 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\freestar_wheel01.v3o
|[VNUM=1.43]
|Model contains 182 vertices, 256 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\freestar02_door01.v3o
|[VNUM=1.43]
|Model contains 132 vertices, 165 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\audi_a8_blue.v3o
|[VNUM=1.43]
|Model contains 1156 vertices, 1494 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\audi_a8_blue_door01.v3o
|[VNUM=1.43]
|Model contains 104 vertices, 131 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Road Signs\noparkingzone.v3o
|[VNUM=1.43]
|Model contains 28 vertices, 20 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Road Signs\blocked.v3o
|[VNUM=1.43]
|Model contains 28 vertices, 20 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Street\signalbox01.v3o
|[VNUM=1.43]
|Model contains 68 vertices, 26 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Street\sunshade02.v3o
|[VNUM=1.43]
|Model contains 132 vertices, 68 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Street\citypole02_chain_300cm.v3o
|[VNUM=1.43]
|Model contains 8 vertices, 6 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Road Signs\Bus.v3o
|[VNUM=1.43]
|Model contains 22 vertices, 14 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\fordltd02.v3o
|[VNUM=1.43]
|Model contains 1113 vertices, 1704 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\impala03.v3o
|[VNUM=1.43]
|Model contains 914 vertices, 1360 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\impala01_wheel01.v3o
|[VNUM=1.43]
|Model contains 273 vertices, 302 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\dodge_charger01.v3o
|[VNUM=1.43]
|Model contains 1239 vertices, 1250 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\dodge_charger01_door01.v3o
|[VNUM=1.43]
|Model contains 85 vertices, 76 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar30_purple.v3o
|[VNUM=1.43]
|Model contains 443 vertices, 345 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar30_purple_door01.v3o
|[VNUM=1.43]
|Model contains 48 vertices, 38 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar02_silver.v3o
|[VNUM=1.43]
|Model contains 734 vertices, 449 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar02_silver_door.v3o
|[VNUM=1.43]
|Model contains 64 vertices, 33 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar12_yellow.v3o
|[VNUM=1.43]
|Model contains 573 vertices, 454 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar12_yellow_wheel01.v3o
|[VNUM=1.43]
|Model contains 76 vertices, 44 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar12_yellow_door01.v3o
|[VNUM=1.43]
|Model contains 58 vertices, 40 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\fec_utilbex02.v3o
|[VNUM=1.43]
|Model contains 1785 vertices, 2298 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\fec_utilbex02_door01.v3o
|[VNUM=1.43]
|Model contains 134 vertices, 160 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Houses\City - Shopping\fashionhouse01.v3o
|[VNUM=1.43]
|Model contains 1524 vertices, 874 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Street\advertflag03.v3o
|[VNUM=1.43]
|Model contains 168 vertices, 170 polygons, 0 bones, 14 muscleanimframes
|Loading Model mod:Models\Objects\ObjectChildren\housedirt05.v3o
|[VNUM=1.43]
|Model contains 4 vertices, 2 polygons, 0 bones, 0 muscleanimframes
|Vision Core: Resized memory for Entities to  334 kB.
|Loading Model mod:Models\Houses\City - Shopping\carpark01.v3o
|[VNUM=1.43]
|Model contains 3721 vertices, 2490 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Street\advertflag02.v3o
|[VNUM=1.43]
|Model contains 152 vertices, 165 polygons, 0 bones, 15 muscleanimframes
|Loading Model mod:Models\Houses\City - Shopping\cinema20.v3o
|[VNUM=1.43]
|Model contains 3283 vertices, 2249 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\ObjectChildren\cinema20_alpha.v3o
|[VNUM=1.43]
|Model contains 645 vertices, 546 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Houses\City - Apartment\hotel01.v3o
|[VNUM=1.43]
|Model contains 1597 vertices, 865 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\hotel_i_roofchair01.v3o
|[VNUM=1.43]
|Model contains 56 vertices, 28 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\hotel_i_roofchair.v3o
|[VNUM=1.43]
|Model contains 56 vertices, 28 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\hotel02_plant01.v3o
|[VNUM=1.43]
|Model contains 35 vertices, 25 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Trees\palm01.v3o
|[VNUM=1.43]
|Model contains 154 vertices, 171 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Street\railwaybridge02_side.v3o
|[VNUM=1.43]
|Model contains 286 vertices, 128 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\fitness01_glassroof.v3o
|[VNUM=1.43]
|Model contains 26 vertices, 14 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Fences\barrier10.v3o
|[VNUM=1.43]
|Model contains 206 vertices, 110 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Street\basement_garage20.v3o
|[VNUM=1.43]
|Model contains 570 vertices, 337 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Trees\cuppedtree03.v3o
|[VNUM=1.43]
|Model contains 126 vertices, 65 polygons, 0 bones, 34 muscleanimframes
|Loading Model mod:Models\Objects\Bushes\cuppedflowerbush06.v3o
|[VNUM=1.43]
|Model contains 36 vertices, 24 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar07_silver.v3o
|[VNUM=1.43]
|Model contains 439 vertices, 405 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar07_silver_door01.v3o
|[VNUM=1.43]
|Model contains 64 vertices, 46 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\mitsubishi_lancer01.v3o
|[VNUM=1.43]
|Model contains 1557 vertices, 1101 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\mitsubishi_lancer01_door01.v3o
|[VNUM=1.43]
|Model contains 163 vertices, 88 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Park\classicfountain01a.v3o
|[VNUM=1.43]
|Model contains 629 vertices, 413 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Park\classicfountain01b.v3o
|[VNUM=1.43]
|Model contains 329 vertices, 248 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Street\grillstand01.v3o
|[VNUM=1.43]
|Model contains 597 vertices, 361 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\ObjectChildren\grillstand01_roof.v3o
|[VNUM=1.43]
|Model contains 72 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Street\kiosk04.v3o
|[VNUM=1.43]
|Model contains 428 vertices, 222 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\ObjectChildren\kiosk04_flag01.v3o
|[VNUM=1.43]
|Model contains 30 vertices, 28 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\ObjectChildren\kiosk04_flag02.v3o
|[VNUM=1.43]
|Model contains 24 vertices, 20 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Houses\Construction\builthouse01.v3o
|[VNUM=1.43]
|Model contains 5382 vertices, 3283 polygons, 0 bones, 11 muscleanimframes
|Loading Model mod:Models\Objects\Construction\constrcontainer01.v3o
|[VNUM=1.43]
|Model contains 55 vertices, 70 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Construction\constrcontainer02.v3o
|[VNUM=1.43]
|Model contains 147 vertices, 163 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Construction\cementmixer01.v3o
|[VNUM=1.43]
|Model contains 290 vertices, 194 polygons, 0 bones, 17 muscleanimframes
|Loading Model mod:Models\Objects\Construction\constrtiles02b.v3o
|[VNUM=1.43]
|Model contains 247 vertices, 96 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Construction\constrtiles02a.v3o
|[VNUM=1.43]
|Model contains 131 vertices, 52 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Construction\constr_ladder01.v3o
|[VNUM=1.43]
|Model contains 118 vertices, 48 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Construction\wheelbarrow01.v3o
|[VNUM=1.43]
|Model contains 234 vertices, 150 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Construction\rubble03.v3o
|[VNUM=1.43]
|Model contains 50 vertices, 46 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Debris\highrise10_debris_small01.v3o
|[VNUM=1.43]
|Model contains 207 vertices, 83 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Houses\02 Civil\restaurant02.v3o
|[VNUM=1.43]
|Model contains 1881 vertices, 1445 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Houses\City - Apartment\cityapartment22.v3o
|[VNUM=1.43]
|Model contains 2128 vertices, 1128 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\mall02_glassroof_small.v3o
|[VNUM=1.43]
|Model contains 26 vertices, 14 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\ObjectChildren\roofad01.v3o
|[VNUM=1.43]
|Model contains 258 vertices, 108 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\ObjectChildren\roofad02.v3o
|[VNUM=1.43]
|Model contains 258 vertices, 108 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Houses\02 Civil\stripmall.v3o
|[VNUM=1.43]
|Model contains 1426 vertices, 868 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\office_g\office_g_floor.v3o
|[VNUM=1.43]
|Model contains 180 vertices, 102 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\office_g\office_g_ceiling.v3o
|[VNUM=1.43]
|Model contains 2860 vertices, 1683 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\office_g\office_g_walls.v3o
|[VNUM=1.43]
|Model contains 1040 vertices, 568 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\office_g\office_g_walls_windows.v3o
|[VNUM=1.43]
|Model contains 22 vertices, 16 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\office_g\office_g_door_l.v3o
|[VNUM=1.43]
|Model contains 4 vertices, 2 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\office_g\office_g_door_r.v3o
|[VNUM=1.43]
|Model contains 4 vertices, 2 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\office_g_desk01.v3o
|[VNUM=1.43]
|Model contains 218 vertices, 114 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\office_g_desk02.v3o
|[VNUM=1.43]
|Model contains 148 vertices, 78 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\office_g_divider02.v3o
|[VNUM=1.43]
|Model contains 29 vertices, 16 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\office_g_divider03.v3o
|[VNUM=1.43]
|Model contains 57 vertices, 30 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\office_g_divider04.v3o
|[VNUM=1.43]
|Model contains 45 vertices, 24 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\office_g_waterdispenser.v3o
|[VNUM=1.43]
|Model contains 63 vertices, 43 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\office_g_basket.v3o
|[VNUM=1.43]
|Model contains 44 vertices, 38 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\stable_pitchfork.v3o
|[VNUM=1.43]
|Model contains 24 vertices, 16 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\cinema01_table01.v3o
|[VNUM=1.43]
|Model contains 150 vertices, 88 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\branch_bank01_housepalm01.v3o
|[VNUM=1.43]
|Model contains 60 vertices, 60 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\hotel02_painting01.v3o
|[VNUM=1.43]
|Model contains 4 vertices, 2 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\bankmain01_shelf01.v3o
|[VNUM=1.43]
|Model contains 82 vertices, 31 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\bankmain01_shelf02.v3o
|[VNUM=1.43]
|Model contains 139 vertices, 52 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\cityapartment01_table01.v3o
|[VNUM=1.43]
|Model contains 26 vertices, 16 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Equipment\bottle.v3o
|[VNUM=1.43]
|Model contains 74 vertices, 28 polygons, 0 bones, 0 muscleanimframes
|Vision Core: Resized memory for Entities to  352 kB.
|Loading Model mod:Models\Objects\Equipment\pizza01.v3o
|[VNUM=1.43]
|Model contains 24 vertices, 12 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\cityapartment01_chair02.v3o
|[VNUM=1.43]
|Model contains 27 vertices, 16 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\cinema01_walldrawers.v3o
|[VNUM=1.43]
|Model contains 78 vertices, 40 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\st_bigshop05_periodicals03.v3o
|[VNUM=1.43]
|Model contains 94 vertices, 34 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\st_bigshop01_table01.v3o
|[VNUM=1.43]
|Model contains 448 vertices, 165 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\ap_shop01_plant04.v3o
|[VNUM=1.43]
|Model contains 92 vertices, 74 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\mall02_comp.v3o
|[VNUM=1.43]
|Model contains 180 vertices, 90 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\ap_shop01_plant05.v3o
|[VNUM=1.43]
|Model contains 92 vertices, 74 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\guesthouse01_picture01.v3o
|[VNUM=1.43]
|Model contains 4 vertices, 2 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\tirewarehouse01_electroheaterbig.v3o
|[VNUM=1.43]
|Model contains 22 vertices, 12 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\tirewarehouse01_electroheatersmall.v3o
|[VNUM=1.43]
|Model contains 16 vertices, 8 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Misc\beer01.v3o
|[VNUM=1.43]
|Model contains 172 vertices, 128 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Equipment\dealerbag.v3o
|[VNUM=1.43]
|Model contains 86 vertices, 36 polygons, 0 bones, 40 muscleanimframes
|Loading Model mod:Models\OpenHouses\tirewarehouse01\tirewarehouse01_floor.v3o
|[VNUM=1.43]
|Model contains 243 vertices, 152 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\tirewarehouse01\tirewarehouse01_ceiling.v3o
|[VNUM=1.43]
|Model contains 863 vertices, 448 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\tirewarehouse01\tirewarehouse01_walls.v3o
|[VNUM=1.43]
|Model contains 956 vertices, 604 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\tirewarehouse01\tirewarehouse01_door01.v3o
|[VNUM=1.43]
|Model contains 20 vertices, 10 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\tirewarehouse01\tirewarehouse01_door02.v3o
|[VNUM=1.43]
|Model contains 20 vertices, 10 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\tirewarehouse01_aircompressor.v3o
|[VNUM=1.43]
|Model contains 326 vertices, 208 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\tirewarehouse01_putmachine.v3o
|[VNUM=1.43]
|Model contains 183 vertices, 105 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\tirewarehouse01_rim01.v3o
|[VNUM=1.43]
|Model contains 38 vertices, 32 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\tirewarehouse01_rim02.v3o
|[VNUM=1.43]
|Model contains 38 vertices, 32 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\tirewarehouse01_shelf01.v3o
|[VNUM=1.43]
|Model contains 256 vertices, 160 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\tirewarehouse01_shelf02.v3o
|[VNUM=1.43]
|Model contains 462 vertices, 306 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\tirewarehouse01_tire01.v3o
|[VNUM=1.43]
|Model contains 82 vertices, 72 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\tirewarehouse01_tire02.v3o
|[VNUM=1.43]
|Model contains 44 vertices, 32 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\tirewarehouse01_washbasin.v3o
|[VNUM=1.43]
|Model contains 76 vertices, 45 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\tirewarehouse01_workbench.v3o
|[VNUM=1.43]
|Model contains 178 vertices, 92 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\branch_bank01_chair01.v3o
|[VNUM=1.43]
|Model contains 60 vertices, 32 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\hotel02_refrigerator.v3o
|[VNUM=1.43]
|Model contains 20 vertices, 10 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\cityapartment01_kitchen.v3o
|[VNUM=1.43]
|Model contains 134 vertices, 59 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\st_smallshop03_table02.v3o
|[VNUM=1.43]
|Model contains 53 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\cityapartment01_chair01.v3o
|[VNUM=1.43]
|Model contains 24 vertices, 12 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\hotel02_painting04.v3o
|[VNUM=1.43]
|Model contains 4 vertices, 2 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\hotel02_plant.v3o
|[VNUM=1.43]
|Model contains 43 vertices, 29 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\bankmain01_bancomat05.v3o
|[VNUM=1.43]
|Model contains 49 vertices, 18 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\hotel_i_couch.v3o
|[VNUM=1.43]
|Model contains 123 vertices, 80 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\tfhi01_plant.v3o
|[VNUM=1.43]
|Model contains 115 vertices, 121 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\tirewarehouse01\tirewarehouse01_walls_windows.v3o
|[VNUM=1.43]
|Model contains 64 vertices, 32 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar09_yellow.v3o
|[VNUM=1.43]
|Model contains 610 vertices, 401 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar09_yellow_wheel01.v3o
|[VNUM=1.43]
|Model contains 80 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar09_yellow_door01.v3o
|[VNUM=1.43]
|Model contains 87 vertices, 44 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar17_green.v3o
|[VNUM=1.43]
|Model contains 426 vertices, 397 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar17_green_door01.v3o
|[VNUM=1.43]
|Model contains 64 vertices, 35 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar24_green.v3o
|[VNUM=1.43]
|Model contains 347 vertices, 336 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar24_blue_wheel01.v3o
|[VNUM=1.43]
|Model contains 50 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar24_green_door01.v3o
|[VNUM=1.43]
|Model contains 54 vertices, 34 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\audi_a8_silver.v3o
|[VNUM=1.43]
|Model contains 1156 vertices, 1494 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\audi_a8_silver_door01.v3o
|[VNUM=1.43]
|Model contains 104 vertices, 131 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar19_sandorange.v3o
|[VNUM=1.43]
|Model contains 429 vertices, 381 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar19_wheel01.v3o
|[VNUM=1.43]
|Model contains 44 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar19_sandorange_door01.v3o
|[VNUM=1.43]
|Model contains 66 vertices, 46 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar22_red.v3o
|[VNUM=1.43]
|Model contains 566 vertices, 515 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar22_red_door01.v3o
|[VNUM=1.43]
|Model contains 50 vertices, 42 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar21_silver.v3o
|[VNUM=1.43]
|Model contains 520 vertices, 451 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar21_silver_wheel01.v3o
|[VNUM=1.43]
|Model contains 52 vertices, 28 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar21_silver_door01.v3o
|[VNUM=1.43]
|Model contains 66 vertices, 44 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\accord03.v3o
|[VNUM=1.43]
|Model contains 1042 vertices, 1476 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\accord03_door01.v3o
|[VNUM=1.43]
|Model contains 104 vertices, 115 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\freestar03.v3o
|[VNUM=1.43]
|Model contains 1617 vertices, 2107 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\freestar03_door01.v3o
|[VNUM=1.43]
|Model contains 132 vertices, 165 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\impala02.v3o
|[VNUM=1.43]
|Model contains 914 vertices, 1360 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar27_green.v3o
|[VNUM=1.43]
|Model contains 472 vertices, 439 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar27_green_wheel01.v3o
|[VNUM=1.43]
|Model contains 50 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Vision Core: Resized memory for Entities to  370 kB.
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar27_green_door01.v3o
|[VNUM=1.43]
|Model contains 74 vertices, 56 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Special\twinkletruck01.v3o
|[VNUM=1.43]
|Model contains 1907 vertices, 824 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Special\twinkletruck01_wheel02.v3o
|[VNUM=1.43]
|Model contains 98 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Special\twinkletruck01_wheel01.v3o
|[VNUM=1.43]
|Model contains 68 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Special\twinkletruck01_door01.v3o
|[VNUM=1.43]
|Model contains 132 vertices, 58 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Trucks\civiljeep01_army.v3o
|[VNUM=1.43]
|Model contains 1415 vertices, 665 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Trucks\civiljeep01_army_wheel01.v3o
|[VNUM=1.43]
|Model contains 80 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Trucks\civiljeep01_army_door01.v3o
|[VNUM=1.43]
|Model contains 130 vertices, 56 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Trucks\civiljeep01_brown.v3o
|[VNUM=1.43]
|Model contains 1415 vertices, 665 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Trucks\civiljeep01_brown_wheel01.v3o
|[VNUM=1.43]
|Model contains 80 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Trucks\civiljeep01_brown_door01.v3o
|[VNUM=1.43]
|Model contains 130 vertices, 56 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\fec_pass_red.v3o
|[VNUM=1.43]
|Model contains 1740 vertices, 2276 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\fec_pass_red_door01.v3o
|[VNUM=1.43]
|Model contains 134 vertices, 160 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\fec_pass_white.v3o
|[VNUM=1.43]
|Model contains 1740 vertices, 2276 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\fec_pass_white_door01.v3o
|[VNUM=1.43]
|Model contains 134 vertices, 160 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\fec_pass_grey.v3o
|[VNUM=1.43]
|Model contains 1740 vertices, 2276 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\fec_pass_grey_door01.v3o
|[VNUM=1.43]
|Model contains 134 vertices, 160 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\fec_pass_black.v3o
|[VNUM=1.43]
|Model contains 1740 vertices, 2276 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\fec_pass_black_door01.v3o
|[VNUM=1.43]
|Model contains 133 vertices, 159 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar16_green.v3o
|[VNUM=1.43]
|Model contains 497 vertices, 483 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar16_green_wheel01.v3o
|[VNUM=1.43]
|Model contains 46 vertices, 40 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar16_green_door01.v3o
|[VNUM=1.43]
|Model contains 54 vertices, 42 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar19_blue.v3o
|[VNUM=1.43]
|Model contains 429 vertices, 381 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar19_blue_door01.v3o
|[VNUM=1.43]
|Model contains 66 vertices, 46 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\fec_utils02.v3o
|[VNUM=1.43]
|Model contains 1740 vertices, 2276 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\fec_utils02_door01.v3o
|[VNUM=1.43]
|Model contains 134 vertices, 160 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\fec_utils03.v3o
|[VNUM=1.43]
|Model contains 1740 vertices, 2276 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\fec_utils03_door01.v3o
|[VNUM=1.43]
|Model contains 134 vertices, 160 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Fences\constrfence02.v3o
|[VNUM=1.43]
|Model contains 56 vertices, 32 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Fences\constrfence02_singlefoot.v3o
|[VNUM=1.43]
|Model contains 24 vertices, 12 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Construction\constructionhole02.v3o
|[VNUM=1.43]
|Model contains 24 vertices, 26 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Construction\constrsign.v3o
|Model contains 130 vertices, 68 polygons, 0 bones, 0 muscleanimframes
?ERROR: Model mod:Models\Objects\Construction\constrsign does not contain version number information.
|Loading Model mod:Models\Objects\Construction\constrcontainer03_full.v3o
|[VNUM=1.43]
|Model contains 264 vertices, 169 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Construction\plasticcontainer01_open.v3o
|[VNUM=1.43]
|Model contains 44 vertices, 54 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Construction\crane01.v3o
|[VNUM=1.43]
|Model contains 775 vertices, 393 polygons, 4 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Construction\lorry_01.v3o
|[VNUM=1.43]
|Model contains 818 vertices, 519 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Construction\lorry_01_wheel02.v3o
|[VNUM=1.43]
|Model contains 50 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Construction\lorry_01_wheel01.v3o
|[VNUM=1.43]
|Model contains 50 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Construction\bulldozer_01.v3o
|[VNUM=1.43]
|Model contains 1069 vertices, 710 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Construction\portacabin01.v3o
|[VNUM=1.43]
|Model contains 599 vertices, 389 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\impala01.v3o
|[VNUM=1.43]
|Model contains 914 vertices, 1360 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar17_red.v3o
|[VNUM=1.43]
|Model contains 426 vertices, 397 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar17_red_wheel01.v3o
|[VNUM=1.43]
|Model contains 72 vertices, 44 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar17_red_door01.v3o
|[VNUM=1.43]
|Model contains 64 vertices, 35 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Bushes\bush04_b.v3o
|[VNUM=1.43]
|Model contains 88 vertices, 46 polygons, 0 bones, 29 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar13_silver.v3o
|[VNUM=1.43]
|Model contains 481 vertices, 431 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar13_silver_wheel01.v3o
|[VNUM=1.43]
|Model contains 52 vertices, 28 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar13_silver_door01.v3o
|[VNUM=1.43]
|Model contains 64 vertices, 42 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Lanterns\streetlight01b.v3o
|[VNUM=1.43]
|Model contains 124 vertices, 144 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Street\balustrade01.v3o
|[VNUM=1.43]
|Model contains 44 vertices, 22 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Walls\wall01_straight.v3o
|[VNUM=1.43]
|Model contains 20 vertices, 10 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Walls\wall01_column.v3o
|[VNUM=1.43]
|Model contains 57 vertices, 26 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Street\glasscontainer03.v3o
|[VNUM=1.43]
|Model contains 140 vertices, 72 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Street\vat01.v3o
|[VNUM=1.43]
|Model contains 98 vertices, 90 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Garages\garage01.v3o
|[VNUM=1.43]
|Model contains 104 vertices, 68 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Houses\City - Apartment\apartment_building_corner01_a.v3o
|[VNUM=1.43]
|Model contains 1395 vertices, 801 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\apartment_building_corner01_glassroof.v3o
|[VNUM=1.43]
|Model contains 10 vertices, 4 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\apartmentbuilding04_funnel.v3o
|[VNUM=1.43]
|Model contains 20 vertices, 10 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\apartmentbuilding04_roofwindow01.v3o
|[VNUM=1.43]
|Model contains 48 vertices, 28 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\apartmentbuilding05_balcony.v3o
|[VNUM=1.43]
|Model contains 50 vertices, 30 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\ObjectChildren\housedeco11.v3o
|[VNUM=1.43]
|Model contains 40 vertices, 24 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\ObjectChildren\housead05.v3o
|[VNUM=1.43]
|Model contains 60 vertices, 24 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Houses\City - Apartment\apartment_building_corner01_b.v3o
|[VNUM=1.43]
|Model contains 2180 vertices, 1234 polygons, 0 bones, 0 muscleanimframes
|Vision Core: Resized memory for Entities to  388 kB.
|Loading Model mod:Models\Objects\ObjectChildren\housead02.v3o
|[VNUM=1.43]
|Model contains 60 vertices, 24 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\ObjectChildren\marquee01.v3o
|[VNUM=1.43]
|Model contains 26 vertices, 18 polygons, 0 bones, 9 muscleanimframes
|Loading Model mod:Models\Objects\Street\marketstand01_vegetables.v3o
|[VNUM=1.43]
|Model contains 406 vertices, 214 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Street\luncheonette01.v3o
|[VNUM=1.43]
|Model contains 556 vertices, 239 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\st_smallshop01\st_smallshop01_floor.v3o
|[VNUM=1.43]
|Model contains 36 vertices, 18 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\st_smallshop01\st_smallshop01_ceiling.v3o
|[VNUM=1.43]
|Model contains 128 vertices, 102 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\st_smallshop01\st_smallshop01_wall01.v3o
|[VNUM=1.43]
|Model contains 607 vertices, 353 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\st_smallshop01\st_smallshop01_wall02.v3o
|[VNUM=1.43]
|Model contains 86 vertices, 54 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\st_smallshop01\st_smallshop01_wall03.v3o
|[VNUM=1.43]
|Model contains 78 vertices, 44 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\st_smallshop01\st_smallshop01_wall04.v3o
|[VNUM=1.43]
|Model contains 86 vertices, 54 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\st_smallshop01\st_smallshop01_wall01b.v3o
|[VNUM=1.43]
|Model contains 20 vertices, 12 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\Dummy\virtual_door01.v3o
|[VNUM=1.43]
|Model contains 24 vertices, 12 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\st_smallshop01_cab02.v3o
|[VNUM=1.43]
|Model contains 284 vertices, 142 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\st_smallshop01_cab03.v3o
|[VNUM=1.43]
|Model contains 100 vertices, 52 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\st_smallshop01_cab04.v3o
|[VNUM=1.43]
|Model contains 100 vertices, 52 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\st_smallshop01_paydesk.v3o
|[VNUM=1.43]
|Model contains 274 vertices, 144 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\st_smallshop01_smallshop01_cab01.v3o
|[VNUM=1.43]
|Model contains 256 vertices, 128 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Street\marketstand03.v3o
|[VNUM=1.43]
|Model contains 353 vertices, 188 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Street\marketstand02.v3o
|[VNUM=1.43]
|Model contains 374 vertices, 198 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\villa\villa01_floor.v3o
|[VNUM=1.43]
|Model contains 82 vertices, 48 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\villa\villa01_ceiling.v3o
|[VNUM=1.43]
|Model contains 2959 vertices, 1223 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\villa\villa01_walls.v3o
|[VNUM=1.43]
|Model contains 3137 vertices, 1376 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\villa\villa01_walls_windows.v3o
|[VNUM=1.43]
|Model contains 84 vertices, 42 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\villa\villa01_door.v3o
|[VNUM=1.43]
|Model contains 26 vertices, 10 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\guesthouse01_bookcase01.v3o
|[VNUM=1.43]
|Model contains 40 vertices, 24 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\cityapartment01_carpet.v3o
|[VNUM=1.43]
|Model contains 9 vertices, 4 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\hotel_i_armchair.v3o
|[VNUM=1.43]
|Model contains 96 vertices, 60 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\cinema01_speakerbig.v3o
|[VNUM=1.43]
|Model contains 20 vertices, 10 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\apartmentbuilding_i_TV.v3o
|[VNUM=1.43]
|Model contains 16 vertices, 8 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\guesthouse01_picture02.v3o
|[VNUM=1.43]
|Model contains 4 vertices, 2 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\cityapartment01_picture01.v3o
|[VNUM=1.43]
|Model contains 4 vertices, 2 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\miningbarrack_kitchen04.v3o
|[VNUM=1.43]
|Model contains 20 vertices, 10 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\miningbarrack_kitchen05.v3o
|[VNUM=1.43]
|Model contains 20 vertices, 10 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\miningbarrack_kitchen01.v3o
|[VNUM=1.43]
|Model contains 20 vertices, 10 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\apartmentbuilding_i_hifi.v3o
|[VNUM=1.43]
|Model contains 148 vertices, 88 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\st_smallshop03_chair01.v3o
|[VNUM=1.43]
|Model contains 32 vertices, 14 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\hotel02_painting02.v3o
|[VNUM=1.43]
|Model contains 4 vertices, 2 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\one_family_house_i_01_solarcell.v3o
|[VNUM=1.43]
|Model contains 36 vertices, 18 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\boutique_carpet01.v3o
|[VNUM=1.43]
|Model contains 4 vertices, 2 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\hotel02_coffeemachine.v3o
|[VNUM=1.43]
|Model contains 74 vertices, 44 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\cityapartment01_table02.v3o
|[VNUM=1.43]
|Model contains 26 vertices, 16 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\singlefamily10_flowerpot_medium.v3o
|[VNUM=1.43]
|Model contains 20 vertices, 10 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\one_family_house_i_01_weathercock.v3o
|[VNUM=1.43]
|Model contains 38 vertices, 20 polygons, 0 bones, 8 muscleanimframes
|Loading Model mod:Models\Objects\Misc\football01.v3o
|[VNUM=1.43]
|Model contains 375 vertices, 300 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\villa01_stairs.v3o
|[VNUM=1.43]
|Model contains 237 vertices, 131 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Misc\swimmingpool01.v3o
|[VNUM=1.43]
|Model contains 323 vertices, 176 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Misc\landingstage06.v3o
|[VNUM=1.43]
|Model contains 67 vertices, 37 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Misc\terrace02b.v3o
|[VNUM=1.43]
|Model contains 477 vertices, 346 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Misc\terrace02a.v3o
|[VNUM=1.43]
|Model contains 769 vertices, 544 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Fences\fence12_post.v3o
|[VNUM=1.43]
|Model contains 25 vertices, 13 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Bushes\destroyedbush.v3o
|[VNUM=1.43]
|Model contains 68 vertices, 34 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Fences\fence12_part.v3o
|[VNUM=1.43]
|Model contains 32 vertices, 12 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\safehouse01_armchair.v3o
|[VNUM=1.43]
|Model contains 72 vertices, 40 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\deckchair01.v3o
|[VNUM=1.43]
|Model contains 60 vertices, 32 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Fences\wall01_part.v3o
|[VNUM=1.43]
|Model contains 20 vertices, 10 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Fences\wall01_post.v3o
|[VNUM=1.43]
|Model contains 57 vertices, 26 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Trees\leafedtree_04.v3o
|[VNUM=1.43]
|Model contains 261 vertices, 205 polygons, 0 bones, 31 muscleanimframes
|Loading Model mod:Models\Objects\Construction\constrcontainer03_empty.v3o
|[VNUM=1.43]
|Model contains 244 vertices, 146 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Missionspec\oldtires01.v3o
|[VNUM=1.43]
|Model contains 844 vertices, 728 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Missionspec\oldtires02.v3o
|[VNUM=1.43]
|Model contains 1376 vertices, 1136 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Construction\rubble02.v3o
|[VNUM=1.43]
|Model contains 42 vertices, 20 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Construction\rubble01.v3o
|[VNUM=1.43]
|Model contains 16 vertices, 8 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Misc\tires02.v3o
|[VNUM=1.43]
|Model contains 594 vertices, 540 polygons, 0 bones, 0 muscleanimframes
|Vision Core: Resized memory for Entities to  406 kB.
|Loading Model mod:Models\Objects\Signs\advert02.v3o
|[VNUM=1.43]
|Model contains 216 vertices, 114 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Bushes\bush08a.v3o
|[VNUM=1.43]
|Model contains 92 vertices, 46 polygons, 0 bones, 26 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\grand_cherokee01.v3o
|[VNUM=1.43]
|Model contains 1756 vertices, 2890 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Street\petrolstation01_pressure.v3o
|[VNUM=1.43]
|Model contains 187 vertices, 94 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar12_blue.v3o
|[VNUM=1.43]
|Model contains 573 vertices, 454 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar12_blue_wheel01.v3o
|[VNUM=1.43]
|Model contains 76 vertices, 44 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar12_blue_door01.v3o
|[VNUM=1.43]
|Model contains 58 vertices, 40 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Houses\Town - Apartment\singlefamily10.v3o
|[VNUM=1.43]
|Model contains 1795 vertices, 995 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\singlefamily10_flowerpot_small.v3o
|[VNUM=1.43]
|Model contains 20 vertices, 10 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\singlefamily10_funnel.v3o
|[VNUM=1.43]
|Model contains 36 vertices, 18 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\singlefamily10_shutter.v3o
|[VNUM=1.43]
|Model contains 4 vertices, 2 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\singlefamily10_window_medium.v3o
|[VNUM=1.43]
|Model contains 20 vertices, 10 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\singlefamily10_window_small.v3o
|[VNUM=1.43]
|Model contains 20 vertices, 10 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\ObjectChildren\housedirt07.v3o
|[VNUM=1.43]
|Model contains 4 vertices, 2 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\ObjectChildren\housedeco08.v3o
|[VNUM=1.43]
|Model contains 79 vertices, 68 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Trees\foresttree02.v3o
|[VNUM=1.43]
|Model contains 260 vertices, 193 polygons, 0 bones, 35 muscleanimframes
|Loading Model mod:Models\Houses\Town - Apartment\town_family_house_ni_02.v3o
|[VNUM=1.43]
|Model contains 997 vertices, 571 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Walls\wall04_straight.v3o
|[VNUM=1.43]
|Model contains 20 vertices, 10 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Walls\wall04_corner.v3o
|[VNUM=1.43]
|Model contains 32 vertices, 16 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Hedges\hedge03_middle.v3o
|[VNUM=1.43]
|Model contains 38 vertices, 24 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Hedges\hedge03_end.v3o
|[VNUM=1.43]
|Model contains 38 vertices, 24 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Hedges\hedge03_corner.v3o
|[VNUM=1.43]
|Model contains 76 vertices, 48 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Playground\swing01.v3o
|[VNUM=1.43]
|Model contains 80 vertices, 72 polygons, 0 bones, 17 muscleanimframes
|Loading Model mod:Models\Objects\Misc\oa_tent02.v3o
|[VNUM=1.43]
|Model contains 101 vertices, 57 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Street\busstop02.v3o
|[VNUM=1.43]
|Model contains 314 vertices, 130 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Road Signs\busstop01.v3o
|[VNUM=1.43]
|Model contains 22 vertices, 14 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Street\letterbox01.v3o
|[VNUM=1.43]
|Model contains 86 vertices, 42 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Bushes\tropicalbush02.v3o
|[VNUM=1.43]
|Model contains 82 vertices, 44 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Misc\clotheshorse01.v3o
|[VNUM=1.43]
|Model contains 65 vertices, 39 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Hedges\hedge05_gate.v3o
|[VNUM=1.43]
|Model contains 124 vertices, 88 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Houses\Village\summerhouse01.v3o
|[VNUM=1.43]
|Model contains 54 vertices, 26 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\guesthouse01_flowerpot02.v3o
|[VNUM=1.43]
|Model contains 48 vertices, 24 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Street\vat10.v3o
|[VNUM=1.43]
|Model contains 20 vertices, 10 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Houses\City - Apartment\cityapartment11b.v3o
|[VNUM=1.43]
|Model contains 746 vertices, 436 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\cityapartment11_funnel.v3o
|[VNUM=1.43]
|Model contains 20 vertices, 10 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\cityapartment11_roofgazebo.v3o
|[VNUM=1.43]
|Model contains 26 vertices, 12 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\ObjectChildren\housead03.v3o
|[VNUM=1.43]
|Model contains 20 vertices, 8 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\ObjectChildren\housedeco05.v3o
|[VNUM=1.43]
|Model contains 72 vertices, 50 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\ObjectChildren\housedeco14.v3o
|[VNUM=1.43]
|Model contains 92 vertices, 74 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\apartmentbuilding_i\apartmentbuilding_i_floor.v3o
|[VNUM=1.43]
|Model contains 141 vertices, 78 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\apartmentbuilding_i\apartmentbuilding_i_ceiling.v3o
|[VNUM=1.43]
|Model contains 3172 vertices, 1402 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\apartmentbuilding_i\apartmentbuilding_i_walls.v3o
|[VNUM=1.43]
|Model contains 2009 vertices, 880 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\apartmentbuilding_i\apartmentbuilding_i_wall_window01.v3o
|[VNUM=1.43]
|Model contains 4 vertices, 2 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\apartmentbuilding_i\apartmentbuilding_i_wall_window02.v3o
|[VNUM=1.43]
|Model contains 4 vertices, 2 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\apartmentbuilding_i\apartmentbuilding_i_wall_window03.v3o
|[VNUM=1.43]
|Model contains 4 vertices, 2 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\apartmentbuilding_i\apartmentbuilding_i_wall_window04.v3o
|[VNUM=1.43]
|Model contains 4 vertices, 2 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\apartmentbuilding_i\apartmentbuilding_i_wall_window05.v3o
|[VNUM=1.43]
|Model contains 4 vertices, 2 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\apartmentbuilding_i\apartmentbuilding_i_wall_window06.v3o
|[VNUM=1.43]
|Model contains 4 vertices, 2 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\apartmentbuilding_i\apartmentbuilding_i_wall_window07.v3o
|[VNUM=1.43]
|Model contains 4 vertices, 2 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\apartmentbuilding_i\apartmentbuilding_i_wall_window08.v3o
|[VNUM=1.43]
|Model contains 4 vertices, 2 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\apartmentbuilding_i\apartmentbuilding_i_wall_window09.v3o
|[VNUM=1.43]
|Model contains 4 vertices, 2 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\apartmentbuilding_i\apartmentbuilding_i_wall_window10.v3o
|[VNUM=1.43]
|Model contains 4 vertices, 2 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\apartmentbuilding_i\apartmentbuilding_i_wall_window11.v3o
|[VNUM=1.43]
|Model contains 4 vertices, 2 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\apartmentbuilding_i\apartmentbuilding_i_wall_window12.v3o
|[VNUM=1.43]
|Model contains 4 vertices, 2 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\apartmentbuilding_i\apartmentbuilding_i_wall_window13.v3o
|[VNUM=1.43]
|Model contains 4 vertices, 2 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\apartmentbuilding_i\apartmentbuilding_i_door.v3o
|[VNUM=1.43]
|Model contains 33 vertices, 12 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\apartmentbuilding_i_balcony2.v3o
|[VNUM=1.43]
|Model contains 208 vertices, 92 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\apartmentbuilding_i_gazebo.v3o
|[VNUM=1.43]
|Model contains 133 vertices, 56 polygons, 0 bones, 0 muscleanimframes
|Vision Core: Resized memory for Entities to  424 kB.
|Loading Model mod:Models\Objects\01 LA Equipment\rifle.v3o
|[VNUM=1.43]
|Model contains 128 vertices, 186 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\one_family_house_i_01_bed.v3o
|[VNUM=1.43]
|Model contains 42 vertices, 30 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Street\streetpost01.v3o
|[VNUM=1.43]
|Model contains 14 vertices, 10 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\ObjectChildren\trafficlights_pedestrian.v3o
|[VNUM=1.43]
|Model contains 110 vertices, 57 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\st_bigshop01ruin_flyer01.v3o
|[VNUM=1.43]
|Model contains 44 vertices, 22 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\tfhi01_wardrobe.v3o
|[VNUM=1.43]
|Model contains 20 vertices, 10 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Equipment\fireaxe.v3o
|[VNUM=1.43]
|Model contains 111 vertices, 73 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Construction\constr_bucket01.v3o
|[VNUM=1.43]
|Model contains 89 vertices, 39 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Misc\basket01.v3o
|[VNUM=1.43]
|Model contains 326 vertices, 160 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\apartmentbuilding_i_stairs.v3o
|[VNUM=1.43]
|Model contains 64 vertices, 32 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Fences\fence01_part.v3o
|[VNUM=1.43]
|Model contains 74 vertices, 44 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Fences\fence01_post.v3o
|[VNUM=1.43]
|Model contains 20 vertices, 10 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Street\vat02.v3o
|[VNUM=1.43]
|Model contains 110 vertices, 90 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Bushes\cuppedflowerbush07.v3o
|[VNUM=1.43]
|Model contains 36 vertices, 24 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Fences\fence03_part.v3o
|[VNUM=1.43]
|Model contains 76 vertices, 40 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Garages\garage02_2.v3o
|[VNUM=1.43]
|Model contains 113 vertices, 60 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Bushes\cuppedbush10.v3o
|[VNUM=1.43]
|Model contains 419 vertices, 194 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\ap_shop04_sign01.v3o
|[VNUM=1.43]
|Model contains 21 vertices, 8 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Persons\Civil\gangster03.v3o
|[VNUM=1.43]
|Model contains 367 vertices, 468 polygons, 20 bones, 0 muscleanimframes
|Loading Model mod:Models\Houses\City - Apartment\apartment_building_corner01_c.v3o
|[VNUM=1.43]
|Model contains 1734 vertices, 988 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\ObjectChildren\housead07.v3o
|[VNUM=1.43]
|Model contains 57 vertices, 22 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Street\litterbox04.v3o
|[VNUM=1.43]
|Model contains 224 vertices, 140 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Misc\gravestone01.v3o
|[VNUM=1.43]
|Model contains 50 vertices, 40 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Misc\gravestone02.v3o
|[VNUM=1.43]
|Model contains 20 vertices, 10 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Park\statue03b.v3o
|[VNUM=1.43]
|Model contains 792 vertices, 705 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Fences\oilrig_fence01.v3o
|[VNUM=1.43]
|Model contains 104 vertices, 52 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Street\elecswitch01.v3o
|[VNUM=1.43]
|Model contains 68 vertices, 34 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Street\landingstage01_bench.v3o
|[VNUM=1.43]
|Model contains 60 vertices, 30 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Houses\City - Office\officeblock04.v3o
|[VNUM=1.43]
|Model contains 1314 vertices, 727 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\officeblock04_roofwindow.v3o
|[VNUM=1.43]
|Model contains 20 vertices, 10 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\officeblock04_ventilation.v3o
|[VNUM=1.43]
|Model contains 126 vertices, 68 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Missionspec\palace01_flag.v3o
|[VNUM=1.43]
|Model contains 68 vertices, 54 polygons, 0 bones, 15 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar21_mystic.v3o
|[VNUM=1.43]
|Model contains 520 vertices, 451 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar21_blue2_wheel01.v3o
|[VNUM=1.43]
|Model contains 52 vertices, 28 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar21_blue2_door01.v3o
|[VNUM=1.43]
|Model contains 66 vertices, 44 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar24_blue.v3o
|[VNUM=1.43]
|Model contains 347 vertices, 336 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar24_blue_door01.v3o
|[VNUM=1.43]
|Model contains 54 vertices, 34 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Fences\paddock01_gate01.v3o
|[VNUM=1.43]
|Model contains 165 vertices, 110 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Fences\fence01b_part.v3o
|[VNUM=1.43]
|Model contains 80 vertices, 44 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Fences\fence01b_post.v3o
|[VNUM=1.43]
|Model contains 20 vertices, 10 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Park\bench03.v3o
|[VNUM=1.43]
|Model contains 132 vertices, 76 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Persons\Civil\civilman03_red.v3o
|[VNUM=1.41]
|Model contains 576 vertices, 468 polygons, 20 bones, 0 muscleanimframes
|Loading Model mod:Models\Persons\Civil\civilmother01_purple.v3o
|[VNUM=1.41]
|Model contains 659 vertices, 516 polygons, 20 bones, 0 muscleanimframes
|Loading Model mod:Models\Persons\Animals\cat01.v3o
|[VNUM=1.43]
|Model contains 327 vertices, 430 polygons, 17 bones, 0 muscleanimframes
?Cannot add default animation set to C: incompatible bone structure?
|Loading Model mod:Models\Objects\Plants\grass03.v3o
|[VNUM=1.43]
|Model contains 145 vertices, 67 polygons, 0 bones, 22 muscleanimframes
|Loading Model mod:Models\Persons\Civil\civilman02_blue.v3o
|[VNUM=1.41]
|Model contains 348 vertices, 448 polygons, 20 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Garages\garage05.v3o
|[VNUM=1.43]
|Model contains 148 vertices, 60 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Trees\cherrytree01.v3o
|[VNUM=1.43]
|Model contains 429 vertices, 334 polygons, 0 bones, 20 muscleanimframes
|Loading Model mod:Models\Objects\Trees\appletree01.v3o
|[VNUM=1.43]
|Model contains 195 vertices, 140 polygons, 0 bones, 21 muscleanimframes
|Loading Model mod:Models\Objects\Fences\fence02_part.v3o
|[VNUM=1.43]
|Model contains 20 vertices, 8 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Fences\fence02_post.v3o
|[VNUM=1.43]
|Model contains 20 vertices, 10 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Fences\fence02_door.v3o
|[VNUM=1.43]
|Model contains 72 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Road Signs\newcitysign02a.v3o
|[VNUM=1.43]
|Model contains 65 vertices, 37 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Signs\advert05.v3o
|[VNUM=1.43]
|Model contains 216 vertices, 114 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Signs\advert08.v3o
|[VNUM=1.43]
|Model contains 216 vertices, 114 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Signs\bpbillboard01.v3o
|[VNUM=1.43]
|Model contains 71 vertices, 42 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Street\bicyclestand01.v3o
|[VNUM=1.43]
|Model contains 774 vertices, 417 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Road Signs\sign_noparking01.v3o
|[VNUM=1.43]
|Model contains 30 vertices, 14 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Houses\Town - Shopping\shop01a.v3o
|[VNUM=1.43]
|Model contains 1547 vertices, 673 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\shop01_backdoors.v3o
|[VNUM=1.43]
|Model contains 22 vertices, 12 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\shop01_blinds.v3o
|[VNUM=1.43]
|Model contains 20 vertices, 10 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\shop01_funnel.v3o
|[VNUM=1.43]
|Model contains 38 vertices, 20 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\shop01_gsm.v3o
|[VNUM=1.43]
|Model contains 41 vertices, 18 polygons, 0 bones, 0 muscleanimframes
|Vision Core: Resized memory for Entities to  442 kB.
|Loading Model mod:Models\Objects\HouseChildren\shop01_perfumes.v3o
|[VNUM=1.43]
|Model contains 246 vertices, 118 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\shop01_ventilation.v3o
|[VNUM=1.43]
|Model contains 39 vertices, 22 polygons, 0 bones, 21 muscleanimframes
|Loading Model mod:Models\Objects\Bushes\cuppedflowerbush03.v3o
|[VNUM=1.43]
|Model contains 72 vertices, 64 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Plants\grass03b.v3o
|[VNUM=1.43]
|Model contains 145 vertices, 67 polygons, 0 bones, 21 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar19_silver.v3o
|[VNUM=1.43]
|Model contains 429 vertices, 381 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar19_silver_door01.v3o
|[VNUM=1.43]
|Model contains 66 vertices, 46 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Misc\doghouse.v3o
|[VNUM=1.43]
|Model contains 47 vertices, 18 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\st_smallshop03_bench.v3o
|[VNUM=1.43]
|Model contains 26 vertices, 16 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Persons\Civil\civilman01.v3o
|[VNUM=1.41]
|Model contains 366 vertices, 468 polygons, 20 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Misc\flowerbed01.v3o
|[VNUM=1.43]
|Model contains 288 vertices, 175 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Trees\stump01.v3o
|[VNUM=1.43]
|Model contains 44 vertices, 50 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Playground\wip02.v3o
|[VNUM=1.43]
|Model contains 314 vertices, 196 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\one_family_house_i_02\one_family_house_i_02_floor.v3o
|[VNUM=1.43]
|Model contains 168 vertices, 96 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\one_family_house_i_02\one_family_house_i_02_ceiling.v3o
|[VNUM=1.43]
|Model contains 440 vertices, 222 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\one_family_house_i_02\one_family_house_i_02_walls.v3o
|[VNUM=1.43]
|Model contains 517 vertices, 332 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\one_family_house_i_02\one_family_house_i_02_walls_windows.v3o
|[VNUM=1.43]
|Model contains 32 vertices, 16 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\one_family_house_i_02\one_family_house_i_02_door01.v3o
|[VNUM=1.43]
|Model contains 20 vertices, 10 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\cityapartment01_wardrobe03.v3o
|[VNUM=1.43]
|Model contains 44 vertices, 28 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\one_family_house_i_01_hifi.v3o
|[VNUM=1.43]
|Model contains 60 vertices, 30 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\one_family_house_i_01_wardrobe.v3o
|[VNUM=1.43]
|Model contains 25 vertices, 10 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\one_family_house_i_01_bookshelf03.v3o
|[VNUM=1.43]
|Model contains 28 vertices, 16 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\ruin01_armchair.v3o
|[VNUM=1.43]
|Model contains 109 vertices, 76 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\one_family_house_i_01_bookshelf04.v3o
|[VNUM=1.43]
|Model contains 38 vertices, 20 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\bankmain01_trashcan05.v3o
|[VNUM=1.43]
|Model contains 40 vertices, 32 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\one_family_house_i_01_bookshelf02.v3o
|[VNUM=1.43]
|Model contains 20 vertices, 10 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\town_residential_01_tv.v3o
|[VNUM=1.43]
|Model contains 24 vertices, 12 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\rowhouse01_funnel01.v3o
|[VNUM=1.43]
|Model contains 40 vertices, 20 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\one_family_house_i_02_stairs.v3o
|[VNUM=1.43]
|Model contains 48 vertices, 24 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\06 Objects\fire_station_controlpanel01.v3o
|[VNUM=1.43]
|Model contains 176 vertices, 104 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\06 LA Misc\goldbar.v3o
|[VNUM=1.43]
|Model contains 20 vertices, 12 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Trees\forest02.v3o
|[VNUM=1.43]
|Model contains 3058 vertices, 2050 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Trees\forest01.v3o
|[VNUM=1.43]
|Model contains 3058 vertices, 2050 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\06 LA Misc\damaged_car.v3o
|[VNUM=1.43]
|Model contains 1798 vertices, 2323 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Persons\Civil\civilrocker02.v3o
|[VNUM=1.43]
|Model contains 567 vertices, 468 polygons, 20 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar32_white.v3o
|[VNUM=1.43]
|Model contains 443 vertices, 398 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar32_white_wheel01.v3o
|[VNUM=1.43]
|Model contains 73 vertices, 44 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar32_white_door01.v3o
|[VNUM=1.43]
|Model contains 54 vertices, 34 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\ford_cv01.v3o
|[VNUM=1.43]
|Model contains 1557 vertices, 1992 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\ford_cv01_door01.v3o
|[VNUM=1.43]
|Model contains 187 vertices, 237 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Persons\Civil\dealer02.v3o
|[VNUM=1.43]
|Model contains 347 vertices, 452 polygons, 20 bones, 0 muscleanimframes
|Loading Model mod:Models\Persons\Civil\dealer01.v3o
|[VNUM=1.43]
|Model contains 347 vertices, 452 polygons, 20 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\07 Scenery\palmtree02.v3o
|[VNUM=1.43]
|Model contains 208 vertices, 212 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Fences\Industryfence03_single_b.v3o
|[VNUM=1.43]
|Model contains 277 vertices, 149 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Misc\lightgoround01.v3o
|[VNUM=1.43]
|Model contains 116 vertices, 44 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Fences\industryfence03_single.v3o
|[VNUM=1.43]
|Model contains 277 vertices, 149 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\freestar01.v3o
|[VNUM=1.43]
|Model contains 1617 vertices, 2107 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\freestar01_door01.v3o
|[VNUM=1.43]
|Model contains 132 vertices, 165 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar20_green.v3o
|[VNUM=1.43]
|Model contains 404 vertices, 373 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar20_green_door01.v3o
|[VNUM=1.43]
|Model contains 45 vertices, 31 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\09 Government\fbi_suv.v3o
|[VNUM=1.43]
|Model contains 1148 vertices, 1442 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\09 Government\fbi_suv_door01.v3o
|[VNUM=1.43]
|Model contains 113 vertices, 120 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\09 Government\fbi_suv_door02.v3o
|[VNUM=1.43]
|Model contains 105 vertices, 120 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\09 Government\fbi_suv_door04.v3o
|[VNUM=1.43]
|Model contains 69 vertices, 84 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\09 Government\fbi_suv_door03.v3o
|[VNUM=1.43]
|Model contains 69 vertices, 84 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\09 Government\fbi_suv_door05.v3o
|[VNUM=1.43]
|Model contains 82 vertices, 160 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\metro_local_bus.v3o
|[VNUM=1.43]
|Model contains 695 vertices, 665 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\metro_local_bus_wheel01.v3o
|[VNUM=1.43]
|Model contains 176 vertices, 180 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\metro_local_bus_door01.v3o
|[VNUM=1.43]
|Model contains 4 vertices, 2 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\metro_local_bus_door02.v3o
|[VNUM=1.43]
|Model contains 4 vertices, 2 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\metro_local_bus_door03.v3o
|[VNUM=1.43]
|Model contains 4 vertices, 2 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\metro_local_bus_door04.v3o
|[VNUM=1.43]
|Model contains 4 vertices, 2 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Trucks\civiltruck13.v3o
|[VNUM=1.43]
|Model contains 1123 vertices, 521 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Trucks\civiltruck13_wheel01.v3o
|[VNUM=1.43]
|Model contains 98 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Trucks\civiltruck13_wheel02.v3o
|[VNUM=1.43]
|Model contains 98 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Vision Core: Resized memory for Entities to  460 kB.
|Loading Model mod:Models\Objects\ObjectChildren\civiltruck13_logo.v3o
|[VNUM=1.43]
|Model contains 8 vertices, 4 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Persons\Civil\civilman01_white.v3o
|[VNUM=1.41]
|Model contains 348 vertices, 448 polygons, 20 bones, 0 muscleanimframes
|Loading Model mod:Models\Persons\Civil\civilmother01_green.v3o
|[VNUM=1.41]
|Model contains 659 vertices, 516 polygons, 20 bones, 0 muscleanimframes
|Loading Model mod:Models\Persons\Civil\civilgirl01_blue.v3o
|[VNUM=1.41]
|Model contains 520 vertices, 508 polygons, 20 bones, 0 muscleanimframes
|Loading Model mod:Models\Persons\Civil\civilman03_grey.v3o
|[VNUM=1.41]
|Model contains 576 vertices, 468 polygons, 20 bones, 0 muscleanimframes
|Loading Model mod:Models\Persons\Civil\civilworker03.v3o
|[VNUM=1.43]
|Model contains 368 vertices, 484 polygons, 20 bones, 0 muscleanimframes
|Loading Model mod:Models\Persons\Civil\civilboy01_blue.v3o
|[VNUM=1.41]
|Model contains 351 vertices, 450 polygons, 20 bones, 0 muscleanimframes
|Loading Model mod:Models\Persons\Civil\civilboy02_white.v3o
|[VNUM=1.41]
|Model contains 582 vertices, 472 polygons, 20 bones, 0 muscleanimframes
|Loading Model mod:Models\Persons\Civil\civilwoman03_blue.v3o
|[VNUM=1.41]
|Model contains 428 vertices, 515 polygons, 20 bones, 0 muscleanimframes
|Loading Model mod:Models\Persons\Civil\civilmanold01.v3o
|[VNUM=1.41]
|Model contains 363 vertices, 436 polygons, 20 bones, 0 muscleanimframes
|Loading Model mod:Models\Persons\Civil\civilman03_green.v3o
|[VNUM=1.41]
|Model contains 576 vertices, 468 polygons, 20 bones, 0 muscleanimframes
|Loading Model mod:Models\Persons\Civil\civildeliveryman.v3o
|[VNUM=1.41]
|Model contains 380 vertices, 452 polygons, 20 bones, 0 muscleanimframes
|Loading Model mod:Models\Persons\Civil\fatman01.v3o
|[VNUM=1.43]
|Model contains 384 vertices, 486 polygons, 20 bones, 0 muscleanimframes
|Loading Model mod:Models\Persons\Civil\civilwoman06_red.v3o
|[VNUM=1.41]
|Model contains 383 vertices, 500 polygons, 20 bones, 0 muscleanimframes
|Loading Model mod:Models\Persons\Civil\civilgirl01_green.v3o
|[VNUM=1.41]
|Model contains 520 vertices, 508 polygons, 20 bones, 0 muscleanimframes
|Loading Model mod:Models\Persons\Civil\civilworker01.v3o
|[VNUM=1.43]
|Model contains 368 vertices, 484 polygons, 20 bones, 0 muscleanimframes
|Loading Model mod:Models\Persons\Civil\Civilworker02.v3o
|[VNUM=1.43]
|Model contains 396 vertices, 506 polygons, 20 bones, 0 muscleanimframes
|Loading Model mod:Models\Persons\Civil\Civilworker02_a.v3o
|[VNUM=1.43]
|Model contains 396 vertices, 506 polygons, 20 bones, 0 muscleanimframes
|Loading Model mod:Models\Houses\02 Civil\carwash.v3o
|[VNUM=1.43]
|Model contains 8327 vertices, 7573 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\06 LA Misc\stripmall_sign.v3o
|[VNUM=1.43]
|Model contains 436 vertices, 452 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\06 LA Misc\carwash_sign.v3o
|[VNUM=1.43]
|Model contains 1398 vertices, 1220 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\peterbilt_379.v3o
|[VNUM=1.43]
|Model contains 2401 vertices, 3704 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\peterbilt_wheel01.v3o
|[VNUM=1.43]
|Model contains 416 vertices, 416 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\peterbilt_wheel02.v3o
|[VNUM=1.43]
|Model contains 260 vertices, 256 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\trailer01.v3o
|[VNUM=1.43]
|Model contains 1293 vertices, 1220 polygons, 0 bones, 3 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\peterbilt_37902.v3o
|[VNUM=1.43]
|Model contains 2401 vertices, 3704 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Persons\Civil\civildocker01.v3o
|[VNUM=1.41]
|Model contains 386 vertices, 502 polygons, 20 bones, 0 muscleanimframes
|Loading Model mod:Models\Persons\Civil\civilwoman04.v3o
|[VNUM=1.41]
|Model contains 389 vertices, 492 polygons, 20 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Misc\burnedtent01.v3o
|[VNUM=1.43]
|Model contains 165 vertices, 142 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\stable_bucket02.v3o
|[VNUM=1.43]
|Model contains 56 vertices, 48 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Persons\Civil\civilwoman01_yellow.v3o
|[VNUM=1.41]
|Model contains 401 vertices, 502 polygons, 20 bones, 0 muscleanimframes
|Loading Model mod:Models\Persons\Civil\civilman01_red.v3o
|[VNUM=1.41]
|Model contains 348 vertices, 448 polygons, 20 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\fseries03.v3o
|[VNUM=1.43]
|Model contains 1864 vertices, 2443 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\fseries03_door01.v3o
|[VNUM=1.43]
|Model contains 168 vertices, 195 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Persons\Civil\civilwoman01_green.v3o
|[VNUM=1.41]
|Model contains 401 vertices, 502 polygons, 20 bones, 0 muscleanimframes
|Loading Model mod:Models\Persons\Civil\civilwoman02_beige.v3o
|[VNUM=1.41]
|Model contains 424 vertices, 536 polygons, 20 bones, 0 muscleanimframes
|Loading Model mod:Models\Persons\Civil\civilmanold02.v3o
|[VNUM=1.43]
|Model contains 363 vertices, 436 polygons, 20 bones, 0 muscleanimframes
|Loading Model mod:Models\Persons\Civil\civilboy01_green.v3o
|[VNUM=1.41]
|Model contains 351 vertices, 450 polygons, 20 bones, 0 muscleanimframes
|Loading Model mod:Models\Persons\Civil\civilboy02_blue.v3o
|[VNUM=1.41]
|Model contains 372 vertices, 472 polygons, 20 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Street\busstop01.v3o
|[VNUM=1.43]
|Model contains 272 vertices, 141 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Street\vat03b.v3o
|[VNUM=1.43]
|Model contains 20 vertices, 10 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Lanterns\streetlight04.v3o
|[VNUM=1.43]
|Model contains 162 vertices, 158 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Lanterns\streetlight04_2.v3o
|[VNUM=1.43]
|Model contains 108 vertices, 78 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Street\vat04b.v3o
|[VNUM=1.43]
|Model contains 38 vertices, 24 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Signs\advertpillar01.v3o
|[VNUM=1.43]
|Model contains 76 vertices, 68 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\bank_k\bank_k_floor.v3o
|[VNUM=1.43]
|Model contains 180 vertices, 72 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\bank_k\bank_k_ceiling.v3o
|[VNUM=1.43]
|Model contains 2902 vertices, 1135 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\bank_k\bank_k_walls.v3o
|[VNUM=1.43]
|Model contains 1027 vertices, 426 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\bank_k\bank_k_walls_windows.v3o
|[VNUM=1.43]
|Model contains 79 vertices, 56 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\bank_k_roofwindow.v3o
|[VNUM=1.43]
|Model contains 4 vertices, 2 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\07 Scenery\palmtree03.v3o
|[VNUM=1.43]
|Model contains 252 vertices, 255 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Street\vat04.v3o
|[VNUM=1.43]
|Model contains 38 vertices, 24 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Bushes\cuppedflowerbush10.v3o
|[VNUM=1.43]
|Model contains 66 vertices, 44 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Persons\Civil\civilboy01_white.v3o
|[VNUM=1.41]
|Model contains 351 vertices, 450 polygons, 20 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Wrecks_sliceable\carwreck00c.v3o
|[VNUM=1.43]
|Model contains 818 vertices, 673 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Wrecks_sliceable\carwreck00c_sliceable_door01.v3o
|[VNUM=1.43]
|Model contains 83 vertices, 86 polygons, 0 bones, 6 muscleanimframes
|Loading Model mod:Models\Vehicles\Wrecks_sliceable\carwreck02.v3o
|[VNUM=1.43]
|Model contains 762 vertices, 597 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Wrecks_sliceable\carwreck02_sliceable_door01.v3o
|[VNUM=1.43]
|Model contains 82 vertices, 67 polygons, 0 bones, 8 muscleanimframes
|Loading Model mod:Models\Vehicles\Wrecks_sliceable\carwreck02b.v3o
|[VNUM=1.43]
|Model contains 762 vertices, 597 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Wrecks_sliceable\carwreck02b_sliceable_door01.v3o
|[VNUM=1.43]
|Model contains 82 vertices, 67 polygons, 0 bones, 8 muscleanimframes
|Loading Model mod:Models\Vehicles\Wrecks_sliceable\carwreck07.v3o
|[VNUM=1.43]
|Model contains 1234 vertices, 714 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Wrecks_sliceable\carwreck07_sliceable_door01.v3o
|[VNUM=1.43]
|Model contains 94 vertices, 58 polygons, 0 bones, 7 muscleanimframes
|Loading Model mod:Models\Vehicles\Wrecks_sliceable\carwreck08.v3o
|[VNUM=1.43]
|Model contains 678 vertices, 514 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Wrecks_sliceable\carwreck08_sliceable_door01.v3o
|[VNUM=1.43]
|Model contains 82 vertices, 46 polygons, 0 bones, 7 muscleanimframes
|Vision Core: Resized memory for Entities to  478 kB.
|Loading Model mod:Models\Vehicles\Wrecks_sliceable\carwreck08b.v3o
|[VNUM=1.43]
|Model contains 674 vertices, 514 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Wrecks_sliceable\carwreck08b_sliceable_door01.v3o
|[VNUM=1.43]
|Model contains 53 vertices, 46 polygons, 0 bones, 7 muscleanimframes
|Loading Model mod:Models\Vehicles\Wrecks_sliceable\carwreck09b.v3o
|[VNUM=1.43]
|Model contains 630 vertices, 541 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Wrecks_sliceable\carwreck09b_sliceable_door01.v3o
|[VNUM=1.43]
|Model contains 87 vertices, 42 polygons, 0 bones, 7 muscleanimframes
|Loading Model mod:Models\Vehicles\Wrecks_sliceable\carwreck16.v3o
|[VNUM=1.43]
|Model contains 714 vertices, 566 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Wrecks_sliceable\carwreck16_door01.v3o
|[VNUM=1.43]
|Model contains 86 vertices, 64 polygons, 0 bones, 8 muscleanimframes
|Loading Model mod:Models\Persons\Civil\streetwalker02.v3o
|[VNUM=1.43]
|Model contains 402 vertices, 502 polygons, 20 bones, 0 muscleanimframes
|Loading Model mod:Models\Persons\Civil\civilpress02.v3o
|[VNUM=1.41]
|Model contains 371 vertices, 468 polygons, 20 bones, 0 muscleanimframes
|Loading Model mod:Models\Persons\Civil\civilmother01_blue.v3o
|[VNUM=1.41]
|Model contains 659 vertices, 516 polygons, 20 bones, 0 muscleanimframes
|Loading Model mod:Models\Persons\Civil\civilgirl02_blue.v3o
|[VNUM=1.41]
|Model contains 531 vertices, 520 polygons, 20 bones, 0 muscleanimframes
|Loading Model mod:Models\Persons\Civil\civilwoman06_yellow.v3o
|[VNUM=1.41]
|Model contains 383 vertices, 500 polygons, 20 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar07_yellow.v3o
|[VNUM=1.43]
|Model contains 439 vertices, 405 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar07_yellow_door01.v3o
|[VNUM=1.43]
|Model contains 64 vertices, 46 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Persons\Civil\civilman04.v3o
|[VNUM=1.41]
|Model contains 363 vertices, 436 polygons, 20 bones, 0 muscleanimframes
|Loading Model mod:Models\Persons\Civil\civilboy02_green.v3o
|[VNUM=1.41]
|Model contains 372 vertices, 472 polygons, 20 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\fseries02.v3o
|[VNUM=1.43]
|Model contains 1864 vertices, 2443 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\fseries02_door01.v3o
|[VNUM=1.43]
|Model contains 168 vertices, 195 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Misc\landingstage05.v3o
|[VNUM=1.43]
|Model contains 244 vertices, 127 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Wrecks_sliceable\gastruck01.v3o
|[VNUM=1.43]
|Model contains 2262 vertices, 972 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Wrecks_sliceable\gastruck01_sliceable_door01.v3o
|[VNUM=1.43]
|Model contains 208 vertices, 102 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Persons\Civil\civilsailor01.v3o
|[VNUM=1.41]
|Model contains 368 vertices, 468 polygons, 20 bones, 0 muscleanimframes
|Loading Model mod:Models\Persons\Civil\civilwomanold02.v3o
|[VNUM=1.43]
|Model contains 443 vertices, 524 polygons, 20 bones, 0 muscleanimframes
|Loading Model mod:Models\Persons\Civil\civilpress01.v3o
|[VNUM=1.41]
|Model contains 700 vertices, 532 polygons, 20 bones, 0 muscleanimframes
|Loading Model mod:Models\Persons\Civil\streetwalker01.v3o
|[VNUM=1.43]
|Model contains 402 vertices, 502 polygons, 20 bones, 0 muscleanimframes
|Loading Model mod:Models\Persons\Civil\civilwoman03_grey.v3o
|[VNUM=1.41]
|Model contains 428 vertices, 515 polygons, 20 bones, 0 muscleanimframes
|Loading Model mod:Models\Persons\06 Civil\general.v3o
|[VNUM=1.43]
|Model contains 416 vertices, 512 polygons, 20 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Road Signs\sign_dirrightahead01.v3o
|[VNUM=1.43]
|Model contains 30 vertices, 14 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Wrecks_sliceable\carwreck05.v3o
|[VNUM=1.43]
|Model contains 993 vertices, 559 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Wrecks_sliceable\carwreck05_sliceable_door01.v3o
|[VNUM=1.43]
|Model contains 90 vertices, 56 polygons, 0 bones, 8 muscleanimframes
|Loading Model mod:Models\Vehicles\Wrecks_sliceable\carwreck13.v3o
|[VNUM=1.43]
|Model contains 666 vertices, 524 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Wrecks_sliceable\carwreck13_door01.v3o
|[VNUM=1.43]
|Model contains 57 vertices, 44 polygons, 0 bones, 8 muscleanimframes
|Loading Model mod:Models\Vehicles\Wrecks_sliceable\carwreck15.v3o
|[VNUM=1.43]
|Model contains 687 vertices, 600 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Wrecks_sliceable\carwreck15_door01.v3o
|[VNUM=1.43]
|Model contains 55 vertices, 38 polygons, 0 bones, 8 muscleanimframes
|Loading Model mod:Models\Vehicles\Wrecks\carwreck22.v3o
|[VNUM=1.43]
|Model contains 671 vertices, 595 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Persons\Civil\gangster02.v3o
|[VNUM=1.43]
|Model contains 418 vertices, 504 polygons, 20 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Wrecks_sliceable\carwreck00.v3o
|[VNUM=1.41]
|Model contains 767 vertices, 687 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Wrecks_sliceable\carwreck00_sliceable_door01.v3o
|[VNUM=1.41]
|Model contains 80 vertices, 86 polygons, 0 bones, 6 muscleanimframes
|Loading Model mod:Models\Objects\Debris\burned_spot01.v3o
|[VNUM=1.43]
|Model contains 4 vertices, 2 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Wrecks_sliceable\carwreck10b.v3o
|[VNUM=1.43]
|Model contains 670 vertices, 579 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Wrecks_sliceable\carwreck10b_sliceable_door01.v3o
|[VNUM=1.43]
|Model contains 75 vertices, 68 polygons, 0 bones, 8 muscleanimframes
|Loading Model mod:Models\Objects\Debris\tunnel01_debris_alpha01.v3o
|[VNUM=1.43]
|Model contains 4 vertices, 2 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Construction\civiltruck11.v3o
|[VNUM=1.43]
|Model contains 1160 vertices, 760 polygons, 0 bones, 16 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Construction\civiltruck11_wheel.v3o
|[VNUM=1.43]
|Model contains 42 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Construction\civiltruck11_door.v3o
|[VNUM=1.43]
|Model contains 57 vertices, 44 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Persons\Civil\soldier01.v3o
|[VNUM=1.43]
|Model contains 357 vertices, 462 polygons, 20 bones, 0 muscleanimframes
|Loading Model mod:Models\Persons\Civil\civilgirl02_green.v3o
|[VNUM=1.41]
|Model contains 531 vertices, 520 polygons, 20 bones, 0 muscleanimframes
|Loading Model mod:Models\Persons\Civil\civilwoman03_red.v3o
|[VNUM=1.41]
|Model contains 428 vertices, 515 polygons, 20 bones, 0 muscleanimframes
|Loading Model mod:Models\Persons\Civil\civilwoman05_black.v3o
|[VNUM=1.41]
|Model contains 407 vertices, 524 polygons, 20 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Wrecks_sliceable\carwreck00b.v3o
|[VNUM=1.43]
|Model contains 818 vertices, 673 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Wrecks_sliceable\carwreck00b_sliceable_door01.v3o
|[VNUM=1.43]
|Model contains 83 vertices, 86 polygons, 0 bones, 6 muscleanimframes
|Loading Model mod:Models\Vehicles\Wrecks\carwreck06.v3o
|[VNUM=1.43]
|Model contains 1005 vertices, 630 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Wrecks_sliceable\carwreck01.v3o
|[VNUM=1.43]
|Model contains 718 vertices, 589 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Wrecks_sliceable\carwreck01_sliceable_door01.v3o
|[VNUM=1.43]
|Model contains 77 vertices, 60 polygons, 0 bones, 8 muscleanimframes
|Loading Model mod:Models\Vehicles\Wrecks_sliceable\carwreck10.v3o
|[VNUM=1.43]
|Model contains 706 vertices, 579 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Wrecks_sliceable\carwreck10_sliceable_door01.v3o
|[VNUM=1.43]
|Model contains 78 vertices, 68 polygons, 0 bones, 8 muscleanimframes
|Loading Model mod:Models\Vehicles\Wrecks\civillimowreck02.v3o
|[VNUM=1.43]
|Model contains 596 vertices, 494 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Persons\Civil\civilgirl02_red.v3o
|[VNUM=1.41]
|Model contains 531 vertices, 520 polygons, 20 bones, 0 muscleanimframes
|Loading Model mod:Models\Persons\Civil\civilrocker01.v3o
|[VNUM=1.43]
|Model contains 567 vertices, 468 polygons, 20 bones, 0 muscleanimframes
|Loading Model mod:Models\Persons\Civil\civilpress03.v3o
|[VNUM=1.41]
|Model contains 385 vertices, 476 polygons, 20 bones, 0 muscleanimframes
|Loading Model mod:Models\Persons\Civil\civilgirl01_violet.v3o
|[VNUM=1.41]
|Model contains 520 vertices, 508 polygons, 20 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\lamborghini_gallardo_yellow.v3o
|[VNUM=1.43]
|Model contains 862 vertices, 771 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\lamborghini_gallardo_yellow_wheel01.v3o
|[VNUM=1.43]
|Model contains 93 vertices, 110 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\lamborghini_gallardo_yellow_door01.v3o
|[VNUM=1.43]
|Model contains 106 vertices, 69 polygons, 0 bones, 0 muscleanimframes
|Vision Core: Resized memory for Entities to  497 kB.
|Loading Model mod:Models\Vehicles\07 Civil\lamborghini_gallardo_yellow_door02.v3o
|[VNUM=1.43]
|Model contains 106 vertices, 69 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Persons\Animals\dog01.v3o
|[VNUM=1.43]
|Model contains 570 vertices, 494 polygons, 19 bones, 0 muscleanimframes
?Cannot add default animation set to D: incompatible bone structure?
|Loading Model mod:Models\OpenHouses\residential\residential_floor.v3o
|[VNUM=1.43]
|Model contains 358 vertices, 214 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\residential\residential_ceiling.v3o
|[VNUM=1.43]
|Model contains 815 vertices, 468 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\residential\residential_walls.v3o
|[VNUM=1.43]
|Model contains 733 vertices, 407 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\residential\residential_door.v3o
|[VNUM=1.43]
|Model contains 5 vertices, 3 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\residential\residential_door1.v3o
|[VNUM=1.43]
|Model contains 20 vertices, 10 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\holidayhouse\holidayhouse_door01.v3o
|[VNUM=1.43]
|Model contains 20 vertices, 10 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\miningbarrack_shower01.v3o
|[VNUM=1.43]
|Model contains 52 vertices, 50 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\miningbarrack_basin01.v3o
|[VNUM=1.43]
|Model contains 61 vertices, 40 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\cinema01_toilet01.v3o
|[VNUM=1.43]
|Model contains 50 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\cityapartment01_bookstand.v3o
|[VNUM=1.43]
|Model contains 54 vertices, 34 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\cityapartment01_bed02.v3o
|[VNUM=1.43]
|Model contains 50 vertices, 44 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\skyscraper02_chair.v3o
|[VNUM=1.43]
|Model contains 67 vertices, 38 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\cinema01_moviepicture01.v3o
|[VNUM=1.43]
|Model contains 16 vertices, 8 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\skyscraper02_desktop.v3o
|[VNUM=1.43]
|Model contains 33 vertices, 12 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\ruin01_table.v3o
|[VNUM=1.43]
|Model contains 30 vertices, 24 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\schnuffi.v3o
|[VNUM=1.43]
|Model contains 340 vertices, 532 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Missionspec\oa_keyboard01a.v3o
|[VNUM=1.43]
|Model contains 465 vertices, 240 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Missionspec\oa_tv01.v3o
|[VNUM=1.43]
|Model contains 74 vertices, 39 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\freightlinerstep01.v3o
|[VNUM=1.43]
|Model contains 1303 vertices, 1524 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\freightlinerstep01_wheel01.v3o
|[VNUM=1.43]
|Model contains 116 vertices, 154 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\freightlinerstep01_wheel02.v3o
|[VNUM=1.43]
|Model contains 149 vertices, 198 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\freightlinerstep01_door01.v3o
|[VNUM=1.43]
|Model contains 21 vertices, 22 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Trees\fir02.v3o
|[VNUM=1.43]
|Model contains 167 vertices, 111 polygons, 0 bones, 34 muscleanimframes
|Loading Model mod:Models\Objects\Trees\fir01.v3o
|[VNUM=1.43]
|Model contains 197 vertices, 141 polygons, 0 bones, 28 muscleanimframes
|Loading Model mod:Models\Objects\Trees\foresttree01.v3o
|[VNUM=1.43]
|Model contains 183 vertices, 122 polygons, 0 bones, 34 muscleanimframes
|Loading Model mod:Models\Objects\06 LA Misc\csign.v3o
|[VNUM=1.43]
|Model contains 5280 vertices, 1760 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Houses\01 LA Emergency Service\municipal building.v3o
|[VNUM=1.43]
|Model contains 1908 vertices, 636 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\02 LA HouseChildren\fs_floodlights.v3o
|[VNUM=1.43]
|Model contains 828 vertices, 276 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\cityapartment01_funnel.v3o
|[VNUM=1.43]
|Model contains 56 vertices, 20 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\depot02_ventilation.v3o
|[VNUM=1.43]
|Model contains 24 vertices, 12 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\militarybarrack02_child01.v3o
|[VNUM=1.43]
|Model contains 89 vertices, 63 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\06 LA Misc\la_flag.v3o
|[VNUM=1.43]
|Model contains 156 vertices, 116 polygons, 0 bones, 15 muscleanimframes
|Loading Model mod:Models\Objects\Fences\gate10b.v3o
|[VNUM=1.43]
|Model contains 156 vertices, 80 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Misc\movebox01.v3o
|[VNUM=1.43]
|Model contains 52 vertices, 20 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Misc\spotlight01.v3o
|[VNUM=1.43]
|Model contains 479 vertices, 263 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Misc\tire01.v3o
|[VNUM=1.43]
|Model contains 66 vertices, 60 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Missionspec\petrol_can01.v3o
|[VNUM=1.43]
|Model contains 172 vertices, 88 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Plants\desertplant01c.v3o
|[VNUM=1.43]
|Model contains 92 vertices, 66 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Plants\desertplant01b.v3o
|[VNUM=1.43]
|Model contains 92 vertices, 66 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Plants\reed03c.v3o
|[VNUM=1.43]
|Model contains 32 vertices, 16 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Houses\01 LA Emergency Service\volstation.v3o
|[VNUM=1.43]
|Model contains 612 vertices, 204 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\03 LA HouseFurniture\coca_cola_vending_machine.v3o
|[VNUM=1.43]
|Model contains 20 vertices, 10 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\03 LA HouseFurniture\emergencyexit01.v3o
|[VNUM=1.43]
|Model contains 4 vertices, 2 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\03 LA HouseFurniture\locker.v3o
|[VNUM=1.43]
|Model contains 24 vertices, 12 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\03 LA HouseFurniture\shelf01.v3o
|[VNUM=1.43]
|Model contains 152 vertices, 76 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\03 LA HouseFurniture\suits_rack01.v3o
|[VNUM=1.43]
|Model contains 972 vertices, 1022 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\03 LA HouseFurniture\suits_rack02.v3o
|[VNUM=1.43]
|Model contains 678 vertices, 674 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\one_family_house_i_01_bookshelf01.v3o
|[VNUM=1.43]
|Model contains 20 vertices, 10 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\st_bigshop01_cabinet01.v3o
|[VNUM=1.43]
|Model contains 139 vertices, 52 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\ps_dome_desk01.v3o
|[VNUM=1.43]
|Model contains 68 vertices, 34 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\ap_shop02_coffeemachine.v3o
|[VNUM=1.43]
|Model contains 92 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\st_bigshop05_chair.v3o
|[VNUM=1.43]
|Model contains 47 vertices, 18 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\st_bigshop04_chair.v3o
|[VNUM=1.43]
|Model contains 80 vertices, 38 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\apartmentbuilding_i_table.v3o
|[VNUM=1.43]
|Model contains 68 vertices, 34 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Houses\01 LA Emergency Service\fs_window.v3o
|[VNUM=1.43]
|Model contains 132 vertices, 44 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Houses\01 LA Emergency Service\volstation_roof.v3o
|[VNUM=1.43]
|Model contains 6006 vertices, 2002 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\apartment_building_03_funnel.v3o
|[VNUM=1.43]
|Model contains 36 vertices, 18 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Equipment\firehose02.v3o
|[VNUM=1.43]
|Model contains 64 vertices, 52 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Street\pylon02.v3o
|[VNUM=1.43]
|Model contains 148 vertices, 98 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Street\pylon02_rope.v3o
|[VNUM=1.43]
|Model contains 40 vertices, 32 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\09 Montana Props\parkinglot_lantern.v3o
|[VNUM=1.43]
|Model contains 396 vertices, 132 polygons, 0 bones, 0 muscleanimframes
|Vision Core: Resized memory for Entities to  515 kB.
|Loading Model mod:Models\Objects\09 Montana Props\firestation_bricksign.v3o
|[VNUM=1.43]
|Model contains 18636 vertices, 6212 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\06 LA Misc\volstation_lightbox.v3o
|[VNUM=1.43]
|Model contains 1110 vertices, 370 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Road Signs\sign_fs_noparking.v3o
|[VNUM=1.43]
|Model contains 216 vertices, 72 polygons, 0 bones, 0 muscleanimframes
?Prototype not found: mod:Prototypes/Objects/HouseChildren/depot01_ventilationshaft.e4p
?Prototype not found: mod:Prototypes/Objects/HouseChildren/depot01_ventilationshaft.e4p
|Loading Model mod:Models\Houses\Missionspec\ps_mainbuilding01.v3o
|[VNUM=1.43]
|Model contains 716 vertices, 392 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\09 Montana Props\parkingblock.v3o
|[VNUM=1.43]
|Model contains 84 vertices, 28 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\09 Montana Props\roadpole.v3o
|[VNUM=1.43]
|Model contains 150 vertices, 50 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Houses\Missionspec\miningdepot04.v3o
|[VNUM=1.43]
|Model contains 623 vertices, 330 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Walls\wall02_part01.v3o
|[VNUM=1.43]
|Model contains 12 vertices, 6 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Walls\wall02_post01.v3o
|[VNUM=1.43]
|Model contains 52 vertices, 26 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\fec_utilbex01.v3o
|[VNUM=1.43]
|Model contains 1887 vertices, 2410 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\fec_utilbex01_door01.v3o
|[VNUM=1.43]
|Model contains 134 vertices, 160 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\fec_utilbex01_door02.v3o
|[VNUM=1.43]
|Model contains 60 vertices, 72 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\fec_utilbex01_door03.v3o
|[VNUM=1.43]
|Model contains 60 vertices, 72 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Construction\trailer01.v3o
|[VNUM=1.43]
|Model contains 278 vertices, 214 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Road Signs\sign_stop01.v3o
|[VNUM=1.43]
|Model contains 30 vertices, 14 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Road Signs\sign_nodriving01.v3o
|[VNUM=1.43]
|Model contains 30 vertices, 14 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Road Signs\sign_row01.v3o
|[VNUM=1.43]
|Model contains 30 vertices, 14 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Road Signs\pedestriansign01.v3o
|[VNUM=1.43]
|Model contains 94 vertices, 46 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Road Signs\sign_pedest01.v3o
|[VNUM=1.43]
|Model contains 30 vertices, 14 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Hedges\hedge02_middle.v3o
|[VNUM=1.43]
|Model contains 38 vertices, 24 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\09 Montana Props\hospital_infosign.v3o
|[VNUM=1.43]
|Model contains 36 vertices, 12 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\cvpi_pdpatrol.v3o
|[VNUM=1.43]
|Model contains 3441 vertices, 2796 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\cvpi_pdpatrol_door06.v3o
|[VNUM=1.43]
|Model contains 315 vertices, 332 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\depot03i\depot03_floor.v3o
|[VNUM=1.43]
|Model contains 52 vertices, 26 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\depot03i\depot03_ceiling.v3o
|[VNUM=1.43]
|Model contains 979 vertices, 528 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\depot03i\depot03_walls.v3o
|[VNUM=1.43]
|Model contains 1889 vertices, 971 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\depot03i\depot03_door01.v3o
|[VNUM=1.43]
|Model contains 20 vertices, 10 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\depot03_depotinv02.v3o
|[VNUM=1.43]
|Model contains 24 vertices, 12 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\depot03_depotinv01.v3o
|[VNUM=1.43]
|Model contains 272 vertices, 136 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\depot03_depotinv01b.v3o
|[VNUM=1.43]
|Model contains 276 vertices, 176 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseFurniture\depot03_depotinv01c.v3o
|[VNUM=1.43]
|Model contains 390 vertices, 262 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\depot03_stairs.v3o
|[VNUM=1.43]
|Model contains 68 vertices, 42 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\oilrig_controlbuilding01\oilrig_controlbuilding01_floor.v3o
|[VNUM=1.43]
|Model contains 32 vertices, 16 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\oilrig_controlbuilding01\oilrig_controlbuilding01_ceiling.v3o
|[VNUM=1.43]
|Model contains 152 vertices, 80 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\oilrig_controlbuilding01\oilrig_controlbuilding01_wall01.v3o
|[VNUM=1.43]
|Model contains 197 vertices, 111 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\OpenHouses\oilrig_controlbuilding01\oilrig_controlbuilding01_door01.v3o
|[VNUM=1.43]
|Model contains 20 vertices, 10 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\oilrig_controlbuilding01_chair.v3o
|[VNUM=1.43]
|Model contains 114 vertices, 88 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\oilrig_controlbuilding01_console01.v3o
|[VNUM=1.43]
|Model contains 460 vertices, 249 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\oilrig_controlbuilding01_console02.v3o
|[VNUM=1.43]
|Model contains 195 vertices, 105 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\oilrig_controlbuilding01_shelf01.v3o
|[VNUM=1.43]
|Model contains 16 vertices, 8 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Street\citypole02.v3o
|[VNUM=1.43]
|Model contains 83 vertices, 35 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Houses\Missionspec\oilrig_quarter01.v3o
|[VNUM=1.43]
|Model contains 1280 vertices, 696 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Houses\Missionspec\oilrig_combuilding01.v3o
|[VNUM=1.43]
|Model contains 810 vertices, 474 polygons, 2 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Fences\fence10_door.v3o
|[VNUM=1.43]
|Model contains 31 vertices, 16 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Road Signs\taxistop01.v3o
|[VNUM=1.43]
|Model contains 30 vertices, 14 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Houses\Village\church01.v3o
|[VNUM=1.43]
|Model contains 3648 vertices, 2179 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Houses\Missionspec\depot10.v3o
|[VNUM=1.43]
|Model contains 570 vertices, 318 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Fences\gate10a.v3o
|[VNUM=1.43]
|Model contains 152 vertices, 78 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Houses\Missionspec\oilrig_depot01.v3o
|[VNUM=1.43]
|Model contains 769 vertices, 420 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Special\servicecar01.v3o
|[VNUM=1.43]
|Model contains 553 vertices, 449 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Special\servicecar01_wheel.v3o
|[VNUM=1.43]
|Model contains 46 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Railway\railsignal01.v3o
|[VNUM=1.43]
|Model contains 462 vertices, 296 polygons, 0 bones, 10 muscleanimframes
|Loading Model mod:Models\Objects\Railway\controlpost01_barrier_single.v3o
|[VNUM=1.43]
|Model contains 83 vertices, 45 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Houses\Airport\watchtower01.v3o
|[VNUM=1.43]
|Model contains 483 vertices, 300 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\HouseChildren\rowhouse01_entranceroof02.v3o
|[VNUM=1.43]
|Model contains 12 vertices, 6 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Train\GüterwagenUSA\schuettgut_bn1_leer.v3o
|[VNUM=1.43]
|Model contains 2426 vertices, 1230 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Train\GüterwagenUSA\schuettgut_bn2_leer.v3o
|[VNUM=1.43]
|Model contains 2426 vertices, 1230 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Train\GüterwagenUSA\schuettgut_bn3_leer.v3o
|[VNUM=1.43]
|Model contains 2426 vertices, 1230 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Train\GüterwagenUSA\grainhopper01.v3o
|[VNUM=1.43]
|Model contains 3454 vertices, 2361 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Train\GüterwagenUSA\grainhopper02.v3o
|[VNUM=1.43]
|Model contains 3454 vertices, 2361 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Train\GüterwagenUSA\Coalwaggon01_BN2_full.v3o
|[VNUM=1.43]
|Model contains 2044 vertices, 1171 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Train\GP40 BN\GP40_BN.v3o
|[VNUM=1.43]
|Model contains 6530 vertices, 5521 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Train\GüterwagenUSA\tanker01_black.v3o
|[VNUM=1.43]
|Model contains 2682 vertices, 2118 polygons, 0 bones, 0 muscleanimframes
|Vision Core: Resized memory for Entities to  533 kB.
|Loading Model mod:Models\Vehicles\Train\GüterwagenUSA\tanker01_blue.v3o
|[VNUM=1.43]
|Model contains 2682 vertices, 2118 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Train\GüterwagenUSA\tanker01_white.v3o
|[VNUM=1.43]
|Model contains 2682 vertices, 2118 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\USPS 1\LLV.v3o
|[VNUM=1.43]
|Model contains 15075 vertices, 5025 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\USPS 1\wheel01.v3o
|[VNUM=1.43]
|Model contains 1632 vertices, 726 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Road Signs\sign_dirahead01.v3o
|[VNUM=1.43]
|Model contains 30 vertices, 14 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\SchoolBus\Schoolbus.v3o
|[VNUM=1.43]
|Model contains 20522 vertices, 6851 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\SchoolBus\wheel01.v3o
|[VNUM=1.43]
|Model contains 1632 vertices, 726 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\07 Civil\SchoolBus\wheel02.v3o
|[VNUM=1.43]
|Model contains 1865 vertices, 726 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Houses\02 Civil\motel.v3o
|[VNUM=1.43]
|Model contains 1716 vertices, 572 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\TrainStation\snackautomat01.v3o
|[VNUM=1.43]
|Model contains 39 vertices, 21 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Houses\01 LA Emergency Service\police_station_walkable.v3o
|[VNUM=1.43]
|Model contains 701 vertices, 351 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\09 Montana Props\barricade.v3o
|[VNUM=1.43]
|Model contains 324 vertices, 164 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Objects\Equipment\stretcher.v3o
|[VNUM=1.43]
|Model contains 368 vertices, 226 polygons, 0 bones, 0 muscleanimframes
ModelManager unloaded 0 ressources, purged 0 ressources
TextureManager unloaded 0 ressources
!Animation blownup is no longer valid
|Vision Core: Resized memory for Entities to  551 kB.
|Vision Core: Resized memory for Entities to  569 kB.
|Vision Core: Resized memory for Entities to  587 kB.
|Vision Core: Resized memory for Entities to  605 kB.
|Vision Core: Resized memory for Entities to  623 kB.
|Vision Core: Resized memory for Entities to  641 kB.
|Vision Core: Resized memory for Entities to  659 kB.
|Vision Core: Resized memory for Entities to  677 kB.
|Vision Core: Resized memory for Entities to  695 kB.
|Vision Core: Resized memory for Entities to  713 kB.
|Vision Core: Resized memory for Entities to  731 kB.
|Vision Core: Resized memory for Entities to  749 kB.
|Vision Core: Resized memory for Entities to  767 kB.
|Vision Core: Resized memory for Entities to  786 kB.
|Vision Core: Resized memory for Entities to  804 kB.
|Vision Core: Resized memory for Entities to  822 kB.
|Vision Core: Resized memory for Entities to  840 kB.
|Vision Core: Resized memory for Entities to  858 kB.
|Vision Core: Resized memory for Entities to  876 kB.
|Vision Core: Resized memory for Entities to  894 kB.
|Vision Core: Resized memory for Entities to  912 kB.
|Vision Core: Resized memory for Entities to  930 kB.
?router add open house: child has no entity!
?router add open house: child has no entity!
|Vision Core: Resized memory for Entities to  948 kB.
|Vision Core: Resized memory for Entities to  966 kB.
|Vision Core: Resized memory for Entities to  984 kB.
|Vision Core: Resized memory for Entities to  1002 kB.
|Vision Core: Resized memory for Entities to  1020 kB.
?router add open house: child has no entity!
?router add open house: child has no entity!
?router add open house: child has no entity!
?router add open house: child has no entity!
?router add open house: child has no entity!
?router add open house: child has no entity!
?router add open house: child has no entity!
?router add open house: child has no entity!
?router add open house: child has no entity!
?router add open house: child has no entity!
?router add open house: child has no entity!
?router add open house: child has no entity!
?router add open house: child has no entity!
?router add open house: child has no entity!
?router add open house: child has no entity!
?router add open house: child has no entity!
?router add open house: child has no entity!
?router add open house: child has no entity!
?router add open house: child has no entity!
?router add open house: child has no entity!
?router add open house: child has no entity!
?router add open house: child has no entity!
?router add open house: child has no entity!
?router add open house: child has no entity!
?router add open house: child has no entity!
?router add open house: child has no entity!
?router add open house: child has no entity!
?router add open house: child has no entity!
?router add open house: child has no entity!
|Vision Core: Resized memory for Entities to  1038 kB.
|Vision Core: Resized memory for Entities to  1056 kB.
|Vision Core: Resized memory for Entities to  1075 kB.
?router add open house: child has no entity!
?router add open house: child has no entity!
|Vision Core: Resized memory for Entities to  1093 kB.
|Vision Core: Resized memory for Entities to  1111 kB.
|Vision Core: Resized memory for Entities to  1129 kB.
|Vision Core: Resized memory for Entities to  1147 kB.
|Vision Core: Resized memory for Entities to  1165 kB.
|Vision Core: Resized memory for Entities to  1183 kB.
|Vision Core: Resized memory for Entities to  1201 kB.
|Vision Core: Resized memory for Entities to  1219 kB.
|Vision Core: Resized memory for Entities to  1237 kB.
|Vision Core: Resized memory for Entities to  1255 kB.
|Vision Core: Resized memory for Entities to  1273 kB.
|Vision Core: Resized memory for Entities to  1291 kB.
|Vision Core: Resized memory for Entities to  1309 kB.
|Vision Core: Resized memory for Entities to  1327 kB.
|Vision Core: Resized memory for Entities to  1345 kB.
!Animation closed is no longer valid
!Animation closing is no longer valid
!Animation open is no longer valid
!Animation opening is no longer valid
|Vision Core: Resized memory for Entities to  1364 kB.
|Vision Core: Resized memory for Entities to  1382 kB.
|Vision Core: Resized memory for Entities to  1400 kB.
|Vision Core: Resized memory for Entities to  1418 kB.
|Vision Core: Resized memory for Entities to  1436 kB.
|Vision Core: Resized memory for Entities to  1454 kB.
|Vision Core: Resized memory for Entities to  1472 kB.
|Vision Core: Resized memory for Entities to  1490 kB.
|Vision Core: Resized memory for Entities to  1508 kB.
|Vision Core: Resized memory for Entities to  1526 kB.
|Vision Core: Resized memory for Entities to  1544 kB.
|Vision Core: Resized memory for Entities to  1562 kB.
|Vision Core: Resized memory for Entities to  1580 kB.
|Vision Core: Resized memory for Entities to  1598 kB.
|Vision Core: Resized memory for Entities to  1616 kB.
|Vision Core: Resized memory for Entities to  1634 kB.
|Vision Core: Resized memory for Entities to  1653 kB.
|Vision Core: Resized memory for Entities to  1671 kB.
|Vision Core: Resized memory for Entities to  1689 kB.
|Vision Core: Resized memory for Entities to  1707 kB.
|Vision Core: Resized memory for Entities to  1725 kB.
|Vision Core: Resized memory for Entities to  1743 kB.
|Vision Core: Resized memory for Entities to  1761 kB.
|Vision Core: Resized memory for Entities to  1779 kB.
|Vision Core: Resized memory for Entities to  1797 kB.
|Vision Core: Resized memory for Entities to  1815 kB.
|Vision Core: Resized memory for Entities to  1833 kB.
|Vision Core: Resized memory for Entities to  1851 kB.
|Vision Core: Resized memory for Entities to  1869 kB.
|Vision Core: Resized memory for Entities to  1887 kB.
|Vision Core: Resized memory for Entities to  1905 kB.
|Vision Core: Resized memory for Entities to  1923 kB.
|Vision Core: Resized memory for Entities to  1942 kB.
|Vision Core: Resized memory for Entities to  1960 kB.
|Vision Core: Resized memory for Entities to  1978 kB.
|Vision Core: Resized memory for Entities to  1996 kB.
|Vision Core: Resized memory for Entities to  2014 kB.
|Vision Core: Resized memory for Entities to  2032 kB.
|Vision Core: Resized memory for Entities to  2050 kB.
|Vision Core: Resized memory for Entities to  2068 kB.
|Vision Core: Resized memory for Entities to  2086 kB.
|Vision Core: Resized memory for Entities to  2104 kB.
|Vision Core: Resized memory for Entities to  2122 kB.
|Vision Core: Resized memory for Entities to  2140 kB.
|Vision Core: Resized memory for Entities to  2158 kB.
|Vision Core: Resized memory for Entities to  2176 kB.
|Vision Core: Resized memory for Entities to  2194 kB.
|Vision Core: Resized memory for Entities to  2212 kB.
|Vision Core: Resized memory for Entities to  2231 kB.
|Vision Core: Resized memory for Entities to  2249 kB.
|Vision Core: Resized memory for Entities to  2267 kB.
|Vision Core: Resized memory for Entities to  2285 kB.
|Vision Core: Resized memory for Entities to  2303 kB.
|Vision Core: Resized memory for Entities to  2321 kB.
|Vision Core: Resized memory for Entities to  2339 kB.
|Vision Core: Resized memory for Entities to  2357 kB.
|Vision Core: Resized memory for Entities to  2375 kB.
|Vision Core: Resized memory for Entities to  2393 kB.
|Loading Model mod:\Models\Objects\Equipment\bottle.v3o
|[VNUM=1.43]
|Model contains 74 vertices, 28 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:\Models\Objects\Equipment\tvcamera.v3o
|[VNUM=1.43]
|Model contains 155 vertices, 143 polygons, 0 bones, 0 muscleanimframes
|Vision Core: Resized memory for Entities to  2411 kB.
|Vision Core: Resized memory for Entities to  2429 kB.
|Loading Model mod:\Models\Objects\Equipment\jackhammer.v3o
|[VNUM=1.43]
|Model contains 150 vertices, 106 polygons, 0 bones, 0 muscleanimframes
|Vision Core: Resized memory for Entities to  2447 kB.
|Vision Core: Resized memory for Entities to  2465 kB.
|Vision Core: Resized memory for Entities to  2483 kB.
|Vision Core: Resized memory for Entities to  2501 kB.
|Vision Core: Resized memory for Entities to  2520 kB.
|Vision Core: Resized memory for Entities to  2538 kB.
|Vision Core: Resized memory for Entities to  2556 kB.
|Vision Core: Resized memory for Entities to  2574 kB.
|Vision Core: Resized memory for Entities to  2592 kB.
|Vision Core: Resized memory for Entities to  2610 kB.
|Vision Core: Resized memory for Entities to  2628 kB.
|Vision Core: Resized memory for Entities to  2646 kB.
|Vision Core: Resized memory for Entities to  2664 kB.
|Vision Core: Resized memory for Entities to  2682 kB.
|Vision Core: Resized memory for Entities to  2700 kB.
|Vision Core: Resized memory for Entities to  2718 kB.
!Model not found: mod:Models/Objects/HouseChildren/cinema20_walkable.V3O
|Loading Model mod:Models\Objects\Misc\empty.v3o
|[VNUM=1.43]
|Model contains 32 vertices, 12 polygons, 0 bones, 0 muscleanimframes
|Vision Core: Resized memory for Entities to  2736 kB.
|Vision Core: Resized memory for Entities to  2754 kB.
|Vision Core: Resized memory for Entities to  2772 kB.
|Vision Core: Resized memory for Entities to  2790 kB.
|Vision Core: Resized memory for Entities to  2809 kB.
|Vision Core: Resized memory for Entities to  2827 kB.
|Vision Core: Resized memory for Entities to  2845 kB.
|Vision Core: Resized memory for Entities to  2863 kB.
|Vision Core: Resized memory for Entities to  2881 kB.
|Vision Core: Resized memory for Entities to  2899 kB.
|Vision Core: Resized memory for Entities to  2917 kB.
|Vision Core: Resized memory for Entities to  2935 kB.
|Vision Core: Resized memory for Entities to  2953 kB.
|Vision Core: Resized memory for Entities to  2971 kB.
|Vision Core: Resized memory for Entities to  2989 kB.
|Vision Core: Resized memory for Entities to  3007 kB.
|Vision Core: Resized memory for Entities to  3025 kB.
|Vision Core: Resized memory for Entities to  3043 kB.
|Vision Core: Resized memory for Entities to  3061 kB.
|Vision Core: Resized memory for Entities to  3079 kB.
|Vision Core: Resized memory for Entities to  3098 kB.
|Vision Core: Resized memory for Entities to  3116 kB.
|Vision Core: Resized memory for Entities to  3134 kB.
|Vision Core: Resized memory for Entities to  3152 kB.
|Vision Core: Resized memory for Entities to  3170 kB.
|Vision Core: Resized memory for Entities to  3188 kB.
|Vision Core: Resized memory for Entities to  3206 kB.
|Vision Core: Resized memory for Entities to  3224 kB.
|Vision Core: Resized memory for Entities to  3242 kB.
|Vision Core: Resized memory for Entities to  3260 kB.
|Vision Core: Resized memory for Entities to  3278 kB.
|Vision Core: Resized memory for Entities to  3296 kB.
|Vision Core: Resized memory for Entities to  3314 kB.
|Vision Core: Resized memory for Entities to  3332 kB.
|Vision Core: Resized memory for Entities to  3350 kB.
|Vision Core: Resized memory for Entities to  3368 kB.
|Vision Core: Resized memory for Entities to  3387 kB.
|Vision Core: Resized memory for Entities to  3405 kB.
|Vision Core: Resized memory for Entities to  3423 kB.
|Vision Core: Resized memory for Entities to  3441 kB.
|Vision Core: Resized memory for Entities to  3459 kB.
|Vision Core: Resized memory for Entities to  3477 kB.
|Vision Core: Resized memory for Entities to  3495 kB.
|Loading Model mod:Models\Vehicles\Civil - Trucks\transporttruck01_brown.v3o
|[VNUM=1.43]
|Model contains 908 vertices, 616 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Special\civilcarPIZZA01.v3o
|[VNUM=1.43]
|Model contains 481 vertices, 439 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Special\civilcarPIZZA01_wheel01.v3o
|[VNUM=1.43]
|Model contains 50 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Special\civilcarPIZZA01_door01.v3o
|[VNUM=1.43]
|Model contains 63 vertices, 47 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Trucks\transporttruck01_red.v3o
|[VNUM=1.43]
|Model contains 1297 vertices, 616 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Trucks\civiljeep01_blue.v3o
|[VNUM=1.43]
|Model contains 1404 vertices, 665 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Trucks\civiljeep01_blue_wheel01.v3o
|[VNUM=1.43]
|Model contains 80 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Trucks\civiljeep01_blue_door01.v3o
|[VNUM=1.43]
|Model contains 124 vertices, 56 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Persons\Civil\civilboy03_blue.v3o
|[VNUM=1.41]
|Model contains 573 vertices, 468 polygons, 20 bones, 0 muscleanimframes
|Loading Model mod:Models\Persons\Civil\soldier02.v3o
|[VNUM=1.43]
|Model contains 391 vertices, 496 polygons, 20 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar24_brown.v3o
|[VNUM=1.43]
|Model contains 347 vertices, 336 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Cars\civilcar24_brown_door01.v3o
|[VNUM=1.43]
|Model contains 54 vertices, 34 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Special\civilcarpressvan01.v3o
|[VNUM=1.43]
|Model contains 945 vertices, 505 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Special\civilcarpressvan01_wheel01.v3o
|[VNUM=1.43]
|Model contains 80 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Special\civilcarpressvan01_door01.v3o
|[VNUM=1.43]
|Model contains 110 vertices, 49 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Vehicles\Civil - Special\civilcarpressvan01_door02.v3o
|[VNUM=1.43]
|Model contains 100 vertices, 47 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:Models\Persons\Civil\streetracer02.v3o
|[VNUM=1.43]
|Model contains 347 vertices, 452 polygons, 20 bones, 0 muscleanimframes
|Loading Model mod:Models\Persons\Civil\streetracer03.v3o
|[VNUM=1.43]
|Model contains 347 vertices, 452 polygons, 20 bones, 0 muscleanimframes
|Loading Model mod:Models\Persons\Civil\civilboy03_yellow.v3o
|[VNUM=1.41]
|Model contains 573 vertices, 468 polygons, 20 bones, 0 muscleanimframes
|Loading Model mod:Models\Persons\Civil\civilboy03_red.v3o
|[VNUM=1.41]
|Model contains 573 vertices, 468 polygons, 20 bones, 0 muscleanimframes
Loading parameters for event EFPEventCigarette
Loading parameters for event EFPRandomFire
Loading parameters for event EFPEventHeartAttack
Loading parameters for event EFPEventFall
Loading parameters for event EFPEventShock
Loading parameters for event EFPEventFoodPoisoning
Loading parameters for event EFPEventCirculatoryCollapse
Loading parameters for event EFPEventStroke
Loading parameters for event EFPEventFlashStrike
Loading parameters for event EFPGasExplosion
Loading parameters for event EFPPickpocketing
Loading parameters for event EFPBecomingMurderer
Loading parameters for event EFPRunningAmok
Loading parameters for event EFPEventTrafficLightFailure
Loading parameters for event EFPEventRailwayCrossingFailure
Loading parameters for event EFPEventSuicideDrowning
Loading parameters for event EFPEventCarAccident
Loading parameters for event EFPCarAccidentNoWater
Loading parameters for event EFPEventShopLifting
Loading parameters for event EFPEventCarTheft
Loading parameters for event EFPBomber
Loading parameters for event EFPRowdy
Loading parameters for event EFPHostageTaking
Loading parameters for event EFPEarthquake
Loading parameters for event EFPArsonist
Loading parameters for event EFPRabidDog
Loading parameters for event EFPEventCivilcarDefect
Loading parameters for event EFPEventShortCircuit
Loading parameters for event EFPDemonstration
LoadParameters() failed for event EFPDemonstration
Loading parameters for event EFPBankRobbery
Loading parameters for event EFPEventSuicideTrack
Loading parameters for event EFPEventSuicideWindow
Freeplay: car accident attachment found
Freeplay: car accident found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Loading parameters for event EFPEventCigarette
Loading parameters for event EFPRandomFire
Loading parameters for event EFPEventHeartAttack
Loading parameters for event EFPEventFall
Loading parameters for event EFPEventShock
Loading parameters for event EFPEventFoodPoisoning
Loading parameters for event EFPEventCirculatoryCollapse
Loading parameters for event EFPEventStroke
Loading parameters for event EFPEventFlashStrike
Loading parameters for event EFPGasExplosion
Loading parameters for event EFPPickpocketing
Loading parameters for event EFPBecomingMurderer
Loading parameters for event EFPRunningAmok
Loading parameters for event EFPEventTrafficLightFailure
Loading parameters for event EFPEventRailwayCrossingFailure
Loading parameters for event EFPEventSuicideDrowning
Loading parameters for event EFPEventCarAccident
Loading parameters for event EFPEventShopLifting
Loading parameters for event EFPEventCarTheft
Loading parameters for event EFPBomber
Loading parameters for event EFPRowdy
Loading parameters for event EFPHostageTaking
Loading parameters for event EFPEarthquake
Loading parameters for event EFPArsonist
Loading parameters for event EFPRabidDog
Loading parameters for event EFPEventCivilcarDefect
Loading parameters for event EFPEventShortCircuit
Loading parameters for event EFPDemonstration
Loading parameters for event EFPBankRobbery
Loading parameters for event EFPEventSuicideTrack
Loading parameters for event EFPEventSuicideWindow
Freeplay: car accident attachment found
Freeplay: car accident found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
Freeplay: car accident attachment found
?Tried to assign unknown command 'VcmdSpecialOn' to object U
|Vision Core: Resized memory for Entities to  3513 kB.
!Fire stations activated!
set animation open
set animation open
|Vision Core: Resized memory for Entities to  3531 kB.
?Tried to remove unassigned command 'DUMMYNeedsHose' from object Unnamed
!Move Doors are working
?Tried to remove unassigned command 'DUMMYNeedsHose' from object Unnamed
?Tried to remove unassigned command 'DUMMYNeedsHose' from object Unnamed
|Loading Model mod:\Models\Objects\Equipment\firehose01.v3o
|[VNUM=1.43]
|Model contains 88 vertices, 88 polygons, 0 bones, 0 muscleanimframes
Rotation of GameObject: 0.276352 -0.961057 0.000000 0.961057 0.276352 0.000000 0.000000 0.000000 1.000000
|Loading Model mod:Models\Objects\04 LA ObjectChildren\invisible.v3o
|[VNUM=1.43]
|Model contains 31 vertices, 32 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:\Models\Objects\Equipment\firehose_connector02.v3o
|[VNUM=1.43]
|Model contains 35 vertices, 36 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:\Models\Objects\Equipment\firehose_connector01.v3o
|[VNUM=1.43]
|Model contains 28 vertices, 24 polygons, 0 bones, 0 muscleanimframes
|Loading Model mod:\Models\Objects\Equipment\firehose02.v3o
|[VNUM=1.43]
|Model contains 64 vertices, 52 polygons, 0 bones, 0 muscleanimframes
?ActionEnterHouse: Entrance door is too far away to enter house
?ActionEnterHouse: Entrance door is too far away to enter house
--- load time profile begin ---
--- load time profile end ---
Destroy Network...
Deleting units...
Destroy XGUI...
Destroy Audio...
Destroy GameFramework...
Destroy GFX...
Destroy Vision...
|VisMain_cl::DeInit
|DeInitializing Object Data...
|DeInitializing World Data...
|DeInitializing Surface and Texture Data...
|Dump resources...
|...no resource leaks.
|Deallocated fast Geometry Buffer.
Destroy Input...
Destroy Scriptscheduler...
Destroy Timer...
Destroy Screen...
Destroy UpdateChain...
Destroy Console...
Destroy Filesystem...
 

 

Link to comment
Share on other sites

Sorry for my stupidity itchboy, it's been a long time since I edited any scripts. I've got the water tender defind with this model mutual_aid_E24, but where else do I need to add it? Also in the vehicle traits it's set to TLF, the cannon is from the original LA water tender under super structures and the pumps are under child's like the LA water tender is, am I missing anything? I'll post screenshots when I'm back from work.

Link to comment
Share on other sites

did you "rename" the objects in the child editor? like in the name box did you put "cannon" for the water cannon, "connector0" to "connector3" or however many connections you have (starting from 0 counting up) and "watersupply" for the hydrant connection? (if you using limited water script)?

Link to comment
Share on other sites

Ok I managed to get it working perfectly. In my tired state I over looked the fact I hadn't named the pump connections like you said Connor. So all the pumps are now called pump1-4 and the firefighters no longer run to the centre of the map before connecting to the truck. Thanks for the helps Itchboy and Connor. This topic can be closed now.

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.


×
×
  • Create New...