Skocz do zawartości

Triggerbot nie działa


Pakerr
# CSH External VIP Project

Masz dosyć problemów z czynnikiem zaufania w CS2 lub notorycznymi banami?

Sprawdź CSH External VIP Project.


Więcej informacji  

Rekomendowane odpowiedzi

Siemka. Otóż mam cheata, i problem z nim. Triggerbot nie działa. Żadnych błędów podczas kompilacji nie ma także nie wiem już w czym może być problem. Poniżej wklejam source.

 

.cpp


#include "trigger_simple.hpp"
#include "../../../dependencies/common_includes.hpp"

#define _USE_MATH_DEFINES
#define    HITGROUP_GENERIC    0
#define    HITGROUP_HEAD        1
#define    HITGROUP_CHEST        2
#define    HITGROUP_STOMACH    3
#define HITGROUP_LEFTARM    4
#define HITGROUP_RIGHTARM    5
#define HITGROUP_LEFTLEG    6
#define HITGROUP_RIGHTLEG    7
#define HITGROUP_GEAR        10

c_trigger trigger;

void c_trigger::trigger(c_usercmd* user_cmd) {
    if (!interfaces::engine->is_connected() && !interfaces::engine->is_in_game())
        return;

    if (!config_system.item.trigger_enable && !GetAsyncKeyState(config_system.item.trigger_key))
        return;

    auto local_player = reinterpret_cast<player_t*>(interfaces::entity_list->get_client_entity(interfaces::engine->get_local_player()));
    if (!local_player && !local_player->is_alive())
        return;

    auto weapon = local_player->active_weapon();
    if (!weapon || !weapon->clip1_count() || is_bomb(weapon) || is_knife(weapon) || is_grenade(weapon))
        return;
    
    auto weapon_data = weapon->get_weapon_data();
    if (!weapon_data)
        return;

    vec3_t src, dst, forward, crosshair_forward;
    trace_t tr;
    ray_t ray;
    trace_filter filter;

    math.angle_vectors(user_cmd->viewangles, forward);

    forward *= weapon_data->range;
    filter.skip = local_player;
    src = local_player->get_eye_pos();
    dst = src + forward;
    ray.initialize(src, dst);

    interfaces::trace_ray->trace_ray(ray, MASK_SHOT, &filter, &tr);

    if (config_system.item.trigger_recoil)
        user_cmd->viewangles += local_player->aim_punch_angle() * 2.0f;

    math.angle_vectors(user_cmd->viewangles, crosshair_forward);
    crosshair_forward *= 8000.f;

    if (tr.DidHitWorld() || !tr.DidHitNonWorldEntity())
        return;

    if (local_player->team() == tr.entity->team())
        return;

    int hitgroup = tr.hitGroup;
    bool didhit = false;

    if (config_system.item.trigger_hitbox_head)
    {
        if (hitgroup == HITGROUP_HEAD) didhit = true;
    }
    if (config_system.item.trigger_hitbox_body)
    {
        if (hitgroup == HITGROUP_CHEST || hitgroup == HITGROUP_STOMACH) didhit = true;
    }
    if (config_system.item.trigger_hitbox_arms)
    {
        if (hitgroup == HITGROUP_LEFTARM || hitgroup == HITGROUP_RIGHTARM) didhit = true;
    }
    if (config_system.item.trigger_hitbox_legs)
    {
        if (hitgroup == HITGROUP_LEFTLEG || hitgroup == HITGROUP_RIGHTLEG) didhit = true;
    }

    if (trigger_delay >= 2 + config_system.item.trigger_delay && didhit)
    {
        trigger_delay = 0;
        user_cmd->buttons |= in_attack;
    }
    trigger_delay++;
}

.hpp


#pragma once
#include "../../../dependencies/common_includes.hpp"

class c_trigger {
private:
    int trigger_delay{0};
public:    
    void trigger(c_usercmd* user_cmd);
    
    bool is_knife(void* weapon) {
        if (!weapon)
            return false;

        auto current_weapon = reinterpret_cast<weapon_t*>(weapon);
        int id = current_weapon->item_definition_index();
        static const std::vector<int> v = { WEAPON_KNIFE, WEAPON_KNIFEGG, WEAPON_KNIFE_BUTTERFLY, WEAPON_KNIFE_FALCHION, WEAPON_KNIFE_FLIP, WEAPON_KNIFE_GHOST, WEAPON_KNIFE_GUT, WEAPON_KNIFE_GYPSY_JACKKNIFE, WEAPON_KNIFE_KARAMBIT, WEAPON_KNIFE_M9_BAYONET, WEAPON_KNIFE_PUSH, WEAPON_KNIFE_STILETTO, WEAPON_KNIFE_T, WEAPON_KNIFE_TACTICAL, WEAPON_KNIFE_URSUS, WEAPON_KNIFE_WIDOWMAKER, WEAPON_BAYONET };
        return (std::find(v.begin(), v.end(), id) != v.end());
    }
    bool is_grenade(void* weapon) {
        if (!weapon)
            return false;

        auto current_weapon = reinterpret_cast<weapon_t*>(weapon);
        int id = current_weapon->item_definition_index();
        static const std::vector<int> v = { WEAPON_FRAG_GRENADE, WEAPON_HEGRENADE, WEAPON_INCGRENADE, WEAPON_SMOKEGRENADE, WEAPON_TAGRENADE, WEAPON_MOLOTOV , WEAPON_DECOY };
        return (std::find(v.begin(), v.end(), id) != v.end());
    }
    bool is_bomb(void* weapon) {
        if (!weapon)
            return false;

        auto current_weapon = reinterpret_cast<weapon_t*>(weapon);
        int id = current_weapon->item_definition_index();
        static const std::vector<int> v = { WEAPON_C4 };
        return (std::find(v.begin(), v.end(), id) != v.end());
    }
};

extern c_trigger trigger;

 

Odnośnik do komentarza

Tak naprawde możemy gdybać, ale chyba chodzi tutaj o ID noży w hpp, brakuje tego nowego (Classic):

static const std::vector<int> v = { WEAPON_KNIFE, WEAPON_KNIFEGG, WEAPON_KNIFE_BUTTERFLY, WEAPON_KNIFE_FALCHION, WEAPON_KNIFE_FLIP, WEAPON_KNIFE_GHOST, WEAPON_KNIFE_GUT, WEAPON_KNIFE_GYPSY_JACKKNIFE, WEAPON_KNIFE_KARAMBIT, WEAPON_KNIFE_M9_BAYONET, WEAPON_KNIFE_PUSH, WEAPON_KNIFE_STILETTO, WEAPON_KNIFE_T, WEAPON_KNIFE_TACTICAL, WEAPON_KNIFE_URSUS, WEAPON_KNIFE_WIDOWMAKER, WEAPON_BAYONET };

Znajdź ID Classic Knife'a i napisz czy będzie działać 😛

 

Jestem kiepski w rozwiązywaniu problemów, więc nie wyzywajcie pls.

 

Welcome back!😴

 

 

Odnośnik do komentarza
'csgo.exe' (Win32): Loaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\csgo.exe'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\ntdll.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\kernel32.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\KernelBase.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\apphelp.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\AcGenral.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\msvcrt.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\sechost.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\rpcrt4.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\sspicli.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\cryptbase.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\bcryptprimitives.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\shlwapi.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\combase.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\ucrtbase.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\gdi32.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\win32u.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\gdi32full.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\msvcp_win.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\user32.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\ole32.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\advapi32.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\oleaut32.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\shell32.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\cfgmgr32.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\SHCore.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\windows.storage.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\profapi.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\powrprof.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\umpdc.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\kernel.appcore.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\cryptsp.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\uxtheme.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\winmm.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\samcli.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\msacm32.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\version.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\userenv.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\dwmapi.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\urlmon.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\winspool.drv'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\bcrypt.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\mpr.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\winmmbase.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\iertutil.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\propsys.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\IPHLPAPI.DLL'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\imm32.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Program Files (x86)\Steam\GameOverlayRenderer.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\psapi.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\launcher.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\wsock32.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\ws2_32.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\vstdlib.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\steam_api.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\tier0.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\filesystem_stdio.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\engine.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\wininet.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\steamnetworkingsockets.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\phonon.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\inputsystem.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\vphysics.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\materialsystem.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\datacache.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\studiorender.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\soundemittersystem.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\vscript.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\soundsystem.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\valve_avi.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\avifil32.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\msvfw32.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_5.82.18362.418_none_71d10a2d5ae97b72\comctl32.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\vguimatsurface.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\vgui2.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\panoramauiclient.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\v8.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\video.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\libavresample-2.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\libavformat-56.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\libavutil-54.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\libavcodec-56.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\libswscale-3.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\v8_libbase.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\icuuc.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\icui18n.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\dbghelp.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\panorama.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\parsifal.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\cairo.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\v8_libplatform.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\shaderapidx9.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\d3d9.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\DXCore.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\D3DX9_43.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\imemanager.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\localize.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\panorama_text_pango.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\libfontconfig-1.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\libgobject-2.0-0.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\libfreetype-6.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\libpangoft2-1.0-0.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\libpango-1.0-0.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\libglib-2.0-0.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\usp10.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\libgmodule-2.0-0.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\System32\DriverStore\FileRepository\c0346729.inf_amd64_a4e838010b04088c\B346681\aticfx32.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\System32\DriverStore\FileRepository\c0346729.inf_amd64_a4e838010b04088c\B346681\atiu9pag.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\System32\DriverStore\FileRepository\c0346729.inf_amd64_a4e838010b04088c\B346681\atiumdag.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\dbgcore.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\System32\DriverStore\FileRepository\c0346729.inf_amd64_a4e838010b04088c\B346681\atiumdva.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\amdihk32.dll'. Module was built without symbols.
'csgo.exe' (Win32): Loaded 'C:\Program Files (x86)\Steam\steamclient.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\crypt32.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\msasn1.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\imagehlp.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\setupapi.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Program Files (x86)\Steam\tier0_s.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Program Files (x86)\Steam\vstdlib_s.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\mswsock.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\secur32.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Program Files (x86)\Steam\crashhandler.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\stdshader_dbg.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\stdshader_dx9.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\MMDevAPI.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\devobj.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\wdmaud.drv'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\ksuser.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\avrt.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\AudioSes.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\WinTypes.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\msacm32.drv'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\midimap.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\clbcatq.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\xinput1_3.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\wintrust.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\wbem\wbemprox.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\wbemcomn.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\wbem\wbemsvc.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\wbem\fastprox.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\amsi.dll'. 
'csgo.exe' (Win32): Loaded 'C:\ProgramData\Microsoft\Windows Defender\Platform\4.18.1910.4-0\X86\MpOAV.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\NapiNSP.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\pnrpnsp.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\wshbth.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\nlaapi.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\dnsapi.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\nsi.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\winrnr.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\FWPUCLNT.DLL'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\rasadhlp.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\msctf.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\oleacc.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\dcomp.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\TextInputFramework.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\CoreUIComponents.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\ntmarta.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\CoreMessaging.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\mscms.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\coloradapterclient.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\Windows.Internal.Graphics.Display.DisplayColorManagement.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\Windows.UI.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\InputHost.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\csgo\bin\matchmaking.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\csgo\bin\client_panorama.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\csgo\bin\server.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\scenefilecache.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\shfolder.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\mss32.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\mssmp3.asi'. 
'csgo.exe' (Win32): Loaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\mssds3d.flt'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\XAudio2_7.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\dsound.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\ResourcePolicyClient.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\dhcpcsvc.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\vaudio_miles.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\vaudio_celt.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\serverbrowser.dll'. 
The thread 0x2390 has exited with code 0 (0x0).
The thread 0x15c has exited with code 0 (0x0).
The thread 0x10d8 has exited with code 0 (0x0).
'csgo.exe' (Win32): Loaded 'C:\Users\Piotr\Desktop\ez\cheat.dll'. Symbols loaded.
'csgo.exe' (Win32): Unloaded 'C:\Users\Piotr\Desktop\ez\cheat.dll'
'csgo.exe' (Win32): Loaded 'C:\Users\Piotr\Desktop\ez\cheat.dll'. Symbols loaded.
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\vcruntime140.dll'. 
'csgo.exe' (Win32): Unloaded 'C:\Windows\SysWOW64\vcruntime140.dll'
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\msvcp140.dll'. 
'csgo.exe' (Win32): Unloaded 'C:\Windows\SysWOW64\msvcp140.dll'
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\vcruntime140.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\msvcp140.dll'. 
The thread 0x26bc has exited with code 415367168 (0x18c20000).
The thread 0x2dd8 has exited with code 0 (0x0).
The thread 0xcdc has exited with code 0 (0x0).
The thread 0x28cc has exited with code 0 (0x0).
The thread 0x1bec has exited with code 0 (0x0).
The thread 0x2ca4 has exited with code 0 (0x0).
The thread 0x2998 has exited with code 0 (0x0).
window resized
Host_WriteConfiguration: Wrote cfg/config.cfg
Host_WriteConfiguration: Wrote cfg/config.cfg
DispatchAsyncEvent backlog, failed to dispatch all this frame. 216 of 600 remaining
Resource materials\panorama\images\map_icons\mapgroup_icon_random.svg failed to load.
Host_WriteConfiguration: Wrote cfg/config.cfg
PNG load error Interlace handling should be turned on when using png_read_image
SignalXWriteOpportunity(2)
Executing server command (105 bytes):
sv_skirmish_id 0
mapgroup mg_de_mirage
nextlevel de_mirage
map de_mirage reserved dontmodifylocalsession

---
Succeeded in starting server map!
ChangeGameUIState: CSGO_GAME_UI_STATE_MAINMENU -> CSGO_GAME_UI_STATE_MAINMENU
Setting mapgroup to 'mg_de_mirage'
SignalXWriteOpportunity(4)
**** Unable to localize '#DemoPlayback_Restart' on panel descendant of 'HudDemoPlayback'
**** Unable to localize '#DemoPlayback_Back' on panel descendant of 'HudDemoPlayback'
**** Unable to localize '#DemoPlayback_Pause' on panel descendant of 'HudDemoPlayback'
**** Unable to localize '#DemoPlayback_Slow' on panel descendant of 'HudDemoPlayback'
**** Unable to localize '#DemoPlayback_Play' on panel descendant of 'HudDemoPlayback'
**** Unable to localize '#DemoPlayback_Fast' on panel descendant of 'HudDemoPlayback'
**** Unable to localize '#DemoPlayback_Next' on panel descendant of 'HudDemoPlayback'
**** Unable to localize '#Panorama_CSGO_Spray_Cursor_Hint' on panel 'RosettaInfoText'
ChangeGameUIState: CSGO_GAME_UI_STATE_MAINMENU -> CSGO_GAME_UI_STATE_LOADINGSCREEN
The thread 0x2af8 has exited with code 0 (0x0).
The thread 0xc48 has exited with code 0 (0x0).
DispatchAsyncEvent backlog, failed to dispatch all this frame. 219 of 2901 remaining
**** Panel  has fill-parent-flow for height, but isn't in a flowing down or up layout
DispatchAsyncEvent backlog, failed to dispatch all this frame. 464 of 481 remaining
---- Host_NewGame ----
The thread 0x1c50 has exited with code 0 (0x0).
The thread 0x14b8 has exited with code 0 (0x0).
Host_NewGame on map de_mirage
GameTypes: missing mapgroupsSP entry for game type/mode (custom/custom).
GameTypes: missing mapgroupsSP entry for game type/mode (cooperative/cooperative).
GameTypes: missing mapgroupsSP entry for game type/mode (cooperative/coopmission).
ammo_grenade_limit_default - 1
ammo_grenade_limit_flashbang - 1
ammo_item_limit_healthshot - 4
ammo_grenade_limit_total - 3
bot_allow_grenades - 1
bot_allow_machine_guns - 1
bot_allow_pistols - 1
bot_allow_rifles - 1
bot_allow_rogues - 1
bot_allow_shotguns - 1
bot_allow_snipers - 1
bot_allow_sub_machine_guns - 1
bot_autodifficulty_threshold_high - 5.0
bot_autodifficulty_threshold_low - -2.0
bot_chatter - normal
bot_defer_to_human_goals - 0
bot_defer_to_human_items - 1
bot_difficulty - 1
bot_quota - 10
bot_quota_mode - normal
cash_player_bomb_defused - 300
cash_player_bomb_planted - 300
cash_player_damage_hostage - -30
cash_player_get_killed - 0
cash_player_interact_with_hostage - 150
cash_player_killed_enemy_default - 300
cash_player_killed_enemy_factor - 1
cash_player_killed_hostage - -1000
cash_player_killed_teammate - -300
cash_player_rescued_hostage - 1000
cash_player_respawn_amount - 0
cash_team_elimination_bomb_map - 3250
cash_team_elimination_hostage_map_ct - 2000
cash_team_elimination_hostage_map_t - 1000
cash_team_hostage_alive - 0
cash_team_hostage_interaction - 500
cash_team_loser_bonus - 1400
cash_team_loser_bonus_consecutive_rounds - 500
cash_team_planted_bomb_but_defused - 800
cash_team_rescued_hostage - 0
cash_team_survive_guardian_wave - 1000
cash_team_terrorist_win_bomb - 3500
cash_team_win_by_defusing_bomb - 3250
cash_team_win_by_hostage_rescue - 3500
cash_team_win_by_time_running_out_bomb - 3250
cash_team_win_by_time_running_out_hostage - 3250
contributionscore_assist - 1
contributionscore_bomb_defuse_minor - 1
contributionscore_bomb_defuse_major - 3
contributionscore_bomb_planted - 2
contributionscore_bomb_exploded - 1
contributionscore_cash_bundle - 0
contributionscore_crate_break - 0
contributionscore_hostage_kill - -2
contributionscore_hostage_rescue_minor - 1
contributionscore_hostage_rescue_major - 3
contributionscore_kill - 2
contributionscore_kill_factor - 0
contributionscore_objective_kill - 3
contributionscore_suicide - -2
contributionscore_team_kill - -2
ff_damage_reduction_bullets - 0.1
ff_damage_reduction_grenade - 0.25
ff_damage_reduction_grenade_self - 1
ff_damage_reduction_other - 0.25
global_chatter_info - 
healthshot_healthboost_time - 0
healthshot_healthboost_damage_multiplier - 1
healthshot_healthboost_speed_multiplier - 1
mp_afterroundmoney - 0
mp_anyone_can_pickup_c4 - 0
mp_autokick - 1
mp_autoteambalance - 1
mp_bot_ai_bt - 
mp_buy_allow_grenades - 1
mp_buy_allow_guns - 255
mp_buy_anywhere - 0
mp_buy_during_immunity - 0
mp_buytime - 90
mp_c4_cannot_be_defused - 0
mp_c4timer - 40
mp_consecutive_loss_max - 4
mp_coop_force_join_ct - 0
mp_coopmission_bot_difficulty_offset - 0
mp_coopmission_mission_number - 0
mp_ct_default_grenades - 
mp_ct_default_melee - weapon_knife
mp_ct_default_primary - 
mp_ct_default_secondary - weapon_hkp2000
mp_damage_headshot_only - 0
mp_damage_scale_ct_body - 1.0
mp_damage_scale_ct_head - 1.0
mp_damage_scale_t_body - 1.0
mp_damage_scale_t_head - 1.0
mp_damage_vampiric_amount - 0
mp_death_drop_c4 - 1
mp_death_drop_defuser - 1
mp_death_drop_grenade - 2
mp_death_drop_gun - 1
mp_deathcam_skippable - 1
mp_default_team_winner_no_objective - -1
mp_defuser_allocation - 0
mp_display_kill_assists - 1
mp_dm_bonus_percent - 50
mp_dm_bonus_respawn - 0
mp_dm_bonusweapon_dogtags - 0
mp_dm_dogtag_score - 0
mp_dm_kill_base_score - 10
mp_dm_teammode - 0
mp_dm_teammode_bonus_score - 1
mp_dm_teammode_dogtag_score - 0
mp_dm_teammode_kill_score - 1
mp_dogtag_despawn_on_killer_death - 1
mp_dogtag_despawn_time - 120
mp_dogtag_pickup_rule - 0
mp_drop_grenade_enable - 0
mp_drop_knife_enable - 0
mp_economy_reset_rounds - 0
mp_equipment_reset_rounds - 0
mp_force_assign_teams - 0
mp_force_pick_time - 15
mp_forcecamera - 1
mp_free_armor - 0
mp_freezetime - 6
mp_friendlyfire - 0
mp_ggprogressive_round_restart_delay - 15.0
mp_ggtr_always_upgrade - 0
mp_ggtr_bomb_defuse_bonus - 1
mp_ggtr_bomb_detonation_bonus - 1
mp_ggtr_bomb_pts_for_flash - 4
mp_ggtr_bomb_pts_for_he - 3
mp_ggtr_bomb_pts_for_molotov - 5
mp_ggtr_bomb_pts_for_upgrade - 2.0
mp_ggtr_bomb_respawn_delay - 0.0
mp_ggtr_end_round_kill_bonus - 1
mp_ggtr_halftime_delay - 0.0
mp_ggtr_last_weapon_kill_ends_half - 0
mp_give_player_c4 - 1
mp_global_damage_per_second - 0.0
mp_guardian_bot_money_per_wave - 800
ConVarRef mp_guardian_loc_icon doesn't point to an existing ConVar
mp_guardian_loc_weapon - 
mp_guardian_loc_string_hud - #guardian_mission_type_kills
mp_guardian_loc_string_desc - 
mp_guardian_player_dist_max - 2000
mp_guardian_player_dist_min - 1300
mp_guardian_special_kills_needed - 10
mp_guardian_special_weapon_needed - awp
mp_guardian_target_site - -1
mp_halftime - 0
mp_halftime_pausetimer - 0
mp_heavyassaultsuit_cooldown - 5
mp_hostagepenalty - 10
mp_hostages_max - 2
mp_hostages_spawn_force_positions - 
mp_hostages_spawn_same_every_round - 1
mp_items_prohibited - 
mp_limitteams - 2
mp_match_can_clinch - 1
mp_match_end_changelevel - 0
mp_max_armor - 2
mp_maxmoney - 16000
mp_maxrounds - 0
mp_molotovusedelay - 15.0
mp_only_cts_rescue_hostages - 1
mp_plant_c4_anywhere - 0
mp_playercashawards - 1
mp_radar_showall - 0
mp_randomspawn - 0
mp_randomspawn_dist - 0
mp_randomspawn_los - 1
mp_respawn_immunitytime - 4.0
mp_respawn_on_death_ct - 0
mp_respawn_on_death_t - 0
mp_respawnwavetime_ct - 10.0
mp_respawnwavetime_t - 10.0
mp_round_restart_delay - 7.0
mp_roundtime - 5
mp_roundtime_defuse - 0
mp_roundtime_hostage - 0
mp_solid_teammates - 1
mp_starting_losses - 0
mp_startmoney - 800
mp_tagging_scale - 1.0
mp_t_default_grenades - 
mp_t_default_melee - weapon_knife
mp_t_default_primary - 
mp_t_default_secondary - weapon_glock
mp_taser_recharge_time - -1
mp_teamcashawards - 1
mp_teammates_are_enemies - 0
mp_timelimit - 5
mp_use_respawn_waves - 0
mp_warmup_pausetimer - 0
mp_warmuptime - 30
mp_warmuptime_all_players_connected - 0
mp_weapon_self_inflict_amount - 0
mp_weapons_allow_heavy - -1
mp_weapons_allow_heavyassaultsuit - 0
mp_weapons_allow_map_placed - 0
mp_weapons_allow_pistols - -1
mp_weapons_allow_rifles - -1
mp_weapons_allow_smgs - -1
mp_weapons_allow_typecount - 5
mp_weapons_allow_zeus - 1
mp_weapons_glow_on_ground - 0
mp_weapons_max_gun_purchases_per_weapon_per_match - -1
mp_heavyassaultsuit_speed - 130
mp_heavyassaultsuit_deploy_timescale - 0.8
mp_heavyassaultsuit_aimpunch - 1.0
mp_heavybot_damage_reduction_scale - 1.0
mp_win_panel_display_time - 3
inferno_child_spawn_max_depth - 4
inferno_max_flames - 16
inferno_max_range - 150
molotov_throw_detonate_time - 2.0
occlusion_test_async - 0
spec_freeze_panel_extended_time - 0.0
spec_freeze_time - 3.0
spec_replay_enable - 0
spec_replay_leadup_time - 5.3438
spec_replay_bot - 0
sv_accelerate - 5.5
sv_airaccelerate - 12
sv_air_pushaway_dist - 0
sv_allow_votes - 1
sv_alltalk - 0
sv_arms_race_vote_to_restart_disallowed_after - 0
sv_auto_adjust_bot_difficulty - 1
sv_auto_full_alltalk_during_warmup_half_end - 1
sv_autobunnyhopping - 0
sv_autobuyammo - 0
sv_bot_buy_decoy_weight - 1
sv_bot_buy_flash_weight - 1
sv_bot_buy_grenade_chance - 33
sv_bot_buy_hegrenade_weight - 6
sv_bot_buy_molotov_weight - 1
sv_bot_buy_smoke_weight - 1
sv_bots_force_rebuy_every_round - 0
sv_bots_get_easier_each_win - 0
sv_bots_get_harder_after_each_wave - 0
sv_bounce - 0
sv_buy_status_override - -1
sv_deadtalk - 0
ConVarRef sv_disable_show_team_select_menu doesn't point to an existing ConVar
sv_disable_radar - 0
sv_disable_immunity_alpha - 0
sv_duplicate_playernames_ok - 0
sv_enablebunnyhopping - 0
sv_env_entity_makers_enabled - 1
sv_extract_ammo_from_dropped_weapons - 0
sv_falldamage_scale - 1
sv_falldamage_to_below_player_multiplier - 1
sv_falldamage_to_below_player_ratio - 0
sv_force_reflections - 0
sv_friction - 5.2
sv_grassburn - 0
sv_gravity - 800
sv_guardian_heavy_all - 0
sv_guardian_heavy_count - 0
sv_guardian_max_wave_for_heavy - 0
sv_guardian_min_wave_for_heavy - 0
sv_health_approach_enabled - 0
sv_health_approach_speed - 10
sv_hegrenade_damage_multiplier - 1
sv_hegrenade_radius_multiplier - 1
sv_ignoregrenaderadio - 0
sv_infinite_ammo - 0
sv_knife_attack_extend_from_player_aabb - 0
sv_maxspeed - 320
sv_maxvelocity - 3500
sv_occlude_players - 1
sv_outofammo_indicator - 0
sv_show_ragdoll_playernames - 0
sv_show_team_equipment_force_on - 0
sv_staminajumpcost - .080
sv_staminalandcost - .050
sv_stopspeed - 80
sv_talk_enemy_dead - 0
sv_talk_enemy_living - 0
sv_teamid_overhead_maxdist_spec - 0
sv_teamid_overhead_maxdist - 0
sv_vote_to_changelevel_before_match_point - 0
sv_wateraccelerate - 10
sv_waterfriction - 1
sv_water_movespeed_multiplier - 0.8
sv_water_swim_mode - 0
sv_weapon_encumbrance_per_item - 0.85
sv_weapon_encumbrance_scale - 0
tv_delay - 10
weapon_accuracy_nospread - 0
weapon_air_spread_scale - 1.0
weapon_max_before_cleanup - 0
weapon_recoil_scale - 2.0
weapon_reticle_knife_show - 1
weapon_sound_falloff_multiplier - 1.0
Executing listen server config file
exec: couldn't exec gamemode_competitive_server.cfg
CHostage::Precache: missing hostage models for map de_mirage. Adding the default models.
PrecacheScriptSound 'Snowball.Bounce' failed, no such sound script entry
Commentary: Could not find commentary data file 'maps/de_mirage_commentary.txt'. 
Error parsing BotProfile.db - unknown attribute 'Rank'
Error parsing BotProfile.db - unknown attribute 'Rank'
Error parsing BotProfile.db - unknown attribute 'Rank'
Error parsing BotProfile.db - unknown attribute 'Rank'
Error parsing BotProfile.db - unknown attribute 'Rank'
Error parsing BotProfile.db - unknown attribute 'Rank'
Error parsing BotProfile.db - unknown attribute 'Rank'
Error parsing BotProfile.db - unknown attribute 'Rank'
Initializing Steam libraries for INSECURE Internet server.  Authentication and VAC not requested.
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\dhcpcsvc6.dll'. 
CAppInfoCacheReadFromDiskThread took 126 milliseconds to initialize
The thread 0x2de4 has exited with code 0 (0x0).
CApplicationManagerPopulateThread took 59 milliseconds to initialize (will have waited on CAppInfoCacheReadFromDiskThread)
The thread 0xe4c has exited with code 0 (0x0).
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\wlanapi.dll'. 
RecordSteamInterfaceCreation (PID 860): SteamGameServer012 / GameServer
RecordSteamInterfaceCreation (PID 860): SteamUtils008 / Utils
RecordSteamInterfaceCreation (PID 860): SteamGameServer012 / GameServer
RecordSteamInterfaceCreation (PID 860): SteamUtils008 / Utils
RecordSteamInterfaceCreation (PID 860): SteamNetworking005 / Networking
RecordSteamInterfaceCreation (PID 860): SteamGameServerStats001 / GameServerStats
The thread 0x2658 has exited with code 1 (0x1).
RecordSteamInterfaceCreation (PID 860): STEAMHTTP_INTERFACE_VERSION002 / HTTP
RecordSteamInterfaceCreation (PID 860): STEAMINVENTORY_INTERFACE_V001 / Inventory
RecordSteamInterfaceCreation (PID 860): STEAMUGC_INTERFACE_VERSION008 / UGC
RecordSteamInterfaceCreation (PID 860): STEAMAPPS_INTERFACE_VERSION008 / Apps
Logging into anonymous listen server account.
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\winhttp.dll'. 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\OnDemandConnRouteHelper.dll'. 
'csgo.exe' (Win32): Unloaded 'C:\Windows\SysWOW64\OnDemandConnRouteHelper.dll'
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\OnDemandConnRouteHelper.dll'. 
'csgo.exe' (Win32): Unloaded 'C:\Windows\SysWOW64\OnDemandConnRouteHelper.dll'
RecordSteamInterfaceCreation (PID 860): SteamUtils009 / Utils
RecordSteamInterfaceCreation (PID 860): SteamNetworkingSocketsSerialized003 / 
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\rsaenh.dll'. 
RecordSteamInterfaceCreation (PID 860): SteamGameServer012 / GameServer
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\gpapi.dll'. 
RecordSteamInterfaceCreation (PID 860): STEAMHTTP_INTERFACE_VERSION003 / HTTP
SteamDatagramServer_Init succeeded
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\cryptnet.dll'. 
RecordSteamInterfaceCreation (PID 860): SteamGameServer012 / GameServer
'csgo.exe' (Win32): Loaded 'C:\Windows\SysWOW64\winnsi.dll'. 
CHTTPRequestCache took 3548 milliseconds to initialize
The thread 0x24f0 has exited with code 0 (0x0).
RecordSteamInterfaceCreation (PID 860): SteamUtils008 / Utils
RecordSteamInterfaceCreation (PID 860): SteamNetworking005 / Networking
RecordSteamInterfaceCreation (PID 860): SteamGameServerStats001 / GameServerStats
RecordSteamInterfaceCreation (PID 860): STEAMHTTP_INTERFACE_VERSION002 / HTTP
RecordSteamInterfaceCreation (PID 860): STEAMINVENTORY_INTERFACE_V001 / Inventory
RecordSteamInterfaceCreation (PID 860): STEAMUGC_INTERFACE_VERSION008 / UGC
RecordSteamInterfaceCreation (PID 860): STEAMAPPS_INTERFACE_VERSION008 / Apps
RecordSteamInterfaceCreation (PID 860): SteamGameCoordinator001 / 
RecordSteamInterfaceCreation (PID 860): SteamGameServer012 / GameServer
RecordSteamInterfaceCreation (PID 860): SteamGameServer012 / GameServer
RecordSteamInterfaceCreation (PID 860): SteamUtils008 / Utils
RecordSteamInterfaceCreation (PID 860): SteamNetworking005 / Networking
RecordSteamInterfaceCreation (PID 860): SteamGameServerStats001 / GameServerStats
RecordSteamInterfaceCreation (PID 860): STEAMHTTP_INTERFACE_VERSION002 / HTTP
RecordSteamInterfaceCreation (PID 860): STEAMINVENTORY_INTERFACE_V001 / Inventory
RecordSteamInterfaceCreation (PID 860): STEAMUGC_INTERFACE_VERSION008 / UGC
RecordSteamInterfaceCreation (PID 860): STEAMAPPS_INTERFACE_VERSION008 / Apps
Connection to Steam servers successful.
   Public IP is 83.26.202.180.
Assigned anonymous gameserver Steam ID [A:1:483414016:13634].
Gameserver logged on to Steam, assigned identity steamid:90130550614937600
Server using '<none>' lobbies, requiring pw no, lobby id ffffffffffffffff
VAC secure mode disabled.
GC Connection established for server version 1008, instance idx 1

Counter-Strike: Global Offensive
Map: de_mirage
Players: 1 (0 bots) / 10 humans
Build: 7621
Server Number: 1

No pure server whitelist. sv_pure = 0
'csgo.exe' (Win32): Unloaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\vaudio_celt.dll'
The thread 0x838 has exited with code 0 (0x0).
'csgo.exe' (Win32): Loaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\vaudio_celt.dll'. 
window resized
Error reading file resource/overviews/de_mirage_radar_spectate.dds.
PutClientInServer: no info_player_start on level
paker connected.
The thread 0xf48 has exited with code 0 (0x0).
ChangeGameUIState: CSGO_GAME_UI_STATE_LOADINGSCREEN -> CSGO_GAME_UI_STATE_INGAME
ChangeGameUIState: CSGO_GAME_UI_STATE_INGAME -> CSGO_GAME_UI_STATE_INGAME
DispatchAsyncEvent backlog, failed to dispatch all this frame. 2046 of 2048 remaining
DispatchAsyncEvent backlog, failed to dispatch all this frame. 2272 of 2274 remaining
DispatchAsyncEvent backlog, failed to dispatch all this frame. 1009 of 2532 remaining
DispatchAsyncEvent backlog, failed to dispatch all this frame. 875 of 1382 remaining
RecordSteamInterfaceCreation (PID 860): SteamGameStats001 / 
DispatchAsyncEvent backlog, failed to dispatch all this frame. 2737 of 2740 remaining
DispatchAsyncEvent backlog, failed to dispatch all this frame. 2746 of 2748 remaining
DispatchAsyncEvent backlog, failed to dispatch all this frame. 81 of 2803 remaining
Unknown command: sv_cheat
Can't use cheat cvar bot_stop in multiplayer, unless the server has sv_cheats set to 1.
The game will restart in 1 second
The game will restart in 1 second
RecordSteamInterfaceCreation (PID 860): SteamGameStats001 / 
The thread 0x2760 has exited with code 0 (0x0).
The thread 0x1628 has exited with code 0 (0x0).
Achievements disabled: cheats turned on in this app session.
Achievements disabled: cheats turned on in this app session.
Achievements disabled: cheats turned on in this app session.
RecordSteamInterfaceCreation (PID 860): SteamGameStats001 / 
RecordSteamInterfaceCreation (PID 860): SteamGameStats001 / 
RecordSteamInterfaceCreation (PID 860): SteamGameStats001 / 
Host_ShutdownServer
CBaseServer::Shutdown
Dropped paker from server: Server shutting down
CSteam3Server::Shutdown
NET_SteamGameServer_Shutdown
SteamGameServer_Shutdown
The thread 0x2b0c has exited with code 0 (0x0).
The thread 0xf08 has exited with code 0 (0x0).
The thread 0x2be4 has exited with code 0 (0x0).
Host_Shutdown
Host_WriteConfiguration: Wrote cfg/config.cfg
ChangeGameUIState: CSGO_GAME_UI_STATE_INGAME -> CSGO_GAME_UI_STATE_MAINMENU
'csgo.exe' (Win32): Unloaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\vaudio_celt.dll'
The thread 0x8a8 has exited with code 0 (0x0).
The thread 0x1ad0 has exited with code 0 (0x0).
The thread 0x4b4 has exited with code 0 (0x0).
'csgo.exe' (Win32): Unloaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\mssmp3.asi'
The thread 0x1734 has exited with code 1 (0x1).
'csgo.exe' (Win32): Unloaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\mssds3d.flt'
The thread 0x18f8 has exited with code 0 (0x0).
The thread 0xc34 has exited with code 0 (0x0).
The thread 0x6f8 has exited with code 0 (0x0).
Steamworks gamestats: CS_App_Lifetime_Gamestats adding game session 0Steamworks gamestats: CS_App_Lifetime_Gamestats adding game session 2488851295055The thread 0x29f0 has exited with code 0 (0x0).
'csgo.exe' (Win32): Unloaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\serverbrowser.dll'
The thread 0x17c8 has exited with code 0 (0x0).
The thread 0x2614 has exited with code 0 (0x0).
The thread 0x24c8 has exited with code 0 (0x0).
The thread 0x2af0 has exited with code 0 (0x0).
The thread 0x1cc8 has exited with code 0 (0x0).
The thread 0x2f84 has exited with code 0 (0x0).
The thread 0x280c has exited with code 0 (0x0).
'csgo.exe' (Win32): Unloaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\mss32.dll'
'csgo.exe' (Win32): Unloaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\vaudio_miles.dll'
The thread 0x18f0 has exited with code 0 (0x0).
The thread 0x2e24 has exited with code 0 (0x0).
The thread 0x1bf8 has exited with code 0 (0x0).
The thread 0x1fe8 has exited with code 0 (0x0).
The thread 0x1124 has exited with code 0 (0x0).
The thread 0x267c has exited with code 0 (0x0).
The thread 0x157c has exited with code 0 (0x0).
The thread 0x1f94 has exited with code 0 (0x0).
The thread 0x2ad8 has exited with code 0 (0x0).
'csgo.exe' (Win32): Unloaded 'C:\Windows\SysWOW64\wlanapi.dll'
The thread 0xa40 has exited with code 0 (0x0).
Shutdown function NET_Shutdown() not in list!!!
NET_Shutdown
NET_CloseAllSockets
The thread 0x231c has exited with code 0 (0x0).
The thread 0xdfc has exited with code 0 (0x0).
The thread 0x2e2c has exited with code 0 (0x0).
NET_SteamGameServer_Shutdown
Shutdown function ShutdownMixerControls() not in list!!!
The thread 0x2fe8 has exited with code 0 (0x0).
The thread 0x14bc has exited with code 0 (0x0).
The thread 0x154c has exited with code 0 (0x0).
SV_ShutdownGameDLL
'csgo.exe' (Win32): Unloaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\csgo\bin\server.dll'
'csgo.exe' (Win32): Unloaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\scenefilecache.dll'
'csgo.exe' (Win32): Unloaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\csgo\bin\client_panorama.dll'
'csgo.exe' (Win32): Unloaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\csgo\bin\matchmaking.dll'
The thread 0x6f0 has exited with code 0 (0x0).
Removing 0 sounds
The thread 0x2bb8 has exited with code 0 (0x0).
The thread 0xe4 has exited with code 0 (0x0).
Reference Count for Material __background (1) != 0
Reference Count for Material __particlesdepthwrite (1) != 0
Reference Count for Material ui_itempreview_fullscreen__rt_fullframefb2 (2) != 0
Reference Count for Material ui_itempreview_fxaa (2) != 0
Reference Count for Material panorama0 (1) != 0
Reference Count for Material panoramafancy0 (1) != 0
Reference Count for Material panorama1 (1) != 0
Reference Count for Material panoramafancy1 (1) != 0
Reference Count for Material panorama2 (1) != 0
Reference Count for Material panoramafancy2 (1) != 0
Reference Count for Material panorama3 (1) != 0
Reference Count for Material panoramafancy3 (1) != 0
Reference Count for Material panorama4 (1) != 0
Reference Count for Material panoramafancy4 (1) != 0
Reference Count for Material panorama5 (1) != 0
Reference Count for Material panoramafancy5 (1) != 0
Reference Count for Material panorama6 (1) != 0
Reference Count for Material panoramafancy6 (1) != 0
Reference Count for Material panorama7 (1) != 0
Reference Count for Material panoramafancy7 (1) != 0
Reference Count for Material panorama8 (1) != 0
Reference Count for Material panoramafancy8 (1) != 0
Reference Count for Material particle/headshot/headshot (5) != 0
Reference Count for Material particle/pebble1/particle_pebble_1 (2) != 0
Reference Count for Material particle/spray1/spray1 (15) != 0
Reference Count for Material particle/smoke1/smoke1_nearcull2 (1) != 0
Reference Count for Material particle/smoke1/smoke1 (15) != 0
Reference Count for Material particle/blood_core (12) != 0
Reference Count for Material particle/blood_drop (1) != 0
Reference Count for Material particle/bleedout_01 (2) != 0
Reference Count for Material particle/star_ob (10) != 0
Reference Count for Material particle/fire_burning_character/fire_env_fire_depthblend_oriented (2) != 0
Reference Count for Material particle/vistasmokev1/vistasmokev1_emods_impactdust (18) != 0
Reference Count for Material particle/particle_smokegrenade2 (4) != 0
Reference Count for Material particle/vistasmokev1/vistasmokev1_nearcull (5) != 0
Reference Count for Material particle/smoke1/smoke1_nearcull (13) != 0
Reference Count for Material particle/particle_flares/particle_flare_001_nodepth_noz (17) != 0
Reference Count for Material particle/particle_anamorphic_lens (4) != 0
Reference Count for Material particle/impact/fleks (63) != 0
Reference Count for Material particle/blood_splatter/blood_splatter (5) != 0
Reference Count for Material particle/particle_flares/particle_flare_gray (6) != 0
Reference Count for Material particle/particle_spark (31) != 0
Reference Count for Material particle/particle_flares/particle_flare_004b_mod_z (4) != 0
Reference Count for Material particle/warp5_explosion (4) != 0
Reference Count for Material particle/fire_burning_character/fire_burning_character (17) != 0
Reference Count for Material particle/fluidexplosions/fluidexplosion (3) != 0
Reference Count for Material particle/particle_flares/particle_flare_004b_mod_ob (13) != 0
Reference Count for Material particle/particle_glow_01 (11) != 0
Reference Count for Material particle/particle_ring_wave_12 (8) != 0
Reference Count for Material particle/water_splash/water_splash (14) != 0
Reference Count for Material particle/spray1/spray1_addself (6) != 0
Reference Count for Material particle/particle_debris_burst/particle_debris_burst_001 (7) != 0
Reference Count for Material particle/droplets/droplets (1) != 0
Reference Count for Material particle/vistasmokev1/vistasmokev1_fire (2) != 0
Reference Count for Material particle/dirt_splash/dirt_splash (10) != 0
Reference Count for Material particle/particle_smokegrenade1 (3) != 0
Reference Count for Material particle/vistasmokev1/vistasmokev1_emods (22) != 0
Reference Count for Material particle/vistasmokev1/vistasmokev1_smokegrenade (2) != 0
Reference Count for Material particle/particle_ring_wave_2 (3) != 0
Reference Count for Material particle/vistasmokev1/vistasmokev4_emods_nocull (6) != 0
Reference Count for Material particle/sparks/sparks (26) != 0
Reference Count for Material particle/particle_smokegrenade3 (1) != 0
Reference Count for Material particle/vistasmokev1/vistasmokev1 (5) != 0
Reference Count for Material decals/blood8 (2) != 0
Reference Count for Material vgui/white (17) != 0
Reference Count for Material particle/particle_glow_04_additive (14) != 0
Reference Count for Material particle/star (7) != 0
Reference Count for Material particle/particle_flares/particle_flare_004_mod_usez (3) != 0
Reference Count for Material particle/impact/fleks2 (8) != 0
Reference Count for Material particle/fire_particle_2/fire_particle_2 (1) != 0
Reference Count for Material particle/vistasmokev1/vistasmokev4_nocull (1) != 0
Reference Count for Material particle/fire_burning_character/fire_env_fire (12) != 0
Reference Count for Material particle/particle_debris_burst/particle_debris_burst_002_add (2) != 0
Reference Count for Material particle/star_noz (2) != 0
Reference Count for Material particle/particle_debris_burst/debris_motes (1) != 0
Reference Count for Material particle/warp_ripple2 (3) != 0
Reference Count for Material particle/particle_smokegrenade_sc (22) != 0
Reference Count for Material particle/particle_glow_03 (1) != 0
Reference Count for Material particle/particle_debris_burst/particle_debris_burst_002 (4) != 0
Reference Count for Material effects/spark (1) != 0
Reference Count for Material particle/leaf/leafdead (3) != 0
Reference Count for Material particle/particle_smokegrenade (2) != 0
Reference Count for Material particle/warp_ripple (1) != 0
Reference Count for Material particle/beam_taser (7) != 0
Reference Count for Material effects/fleck_cement1 (2) != 0
Reference Count for Material particle/particle_glow_05_add_15ob_noz (3) != 0
Reference Count for Material particle/particle_glow_05_add_5ob (1) != 0
Reference Count for Material particle/star_minmaxsize (3) != 0
Reference Count for Material particle/shells/particle_shells (17) != 0
Reference Count for Material particle/fire_explosion_1/fire_explosion_1_oriented (4) != 0
Reference Count for Material particle/fire_explosion_1/fire_explosion_1_bright (3) != 0
Reference Count for Material particle/fire_burning_character/fire_burning_character_depthblend (4) != 0
Reference Count for Material particle/warp5_warp (1) != 0
Reference Count for Material particle/fire_burning_character/fire_env_fire_depthblend (3) != 0
Reference Count for Material particle/particle_flares/particle_flare_004 (5) != 0
Reference Count for Material particle/vistasmokev1/vistasmokev1_nearcull_nodepth (4) != 0
Reference Count for Material particle/vistasmokev1/vistasmokev1_nearcull_fog (1) != 0
Reference Count for Material particle/particle_flares/particle_flare_004b_mod (1) != 0
Reference Count for Material particle/particle_flares/particle_flare_001 (1) != 0
Reference Count for Material particle/fire_explosion_1/fire_explosion_1b (1) != 0
Reference Count for Material particle/particle_flares/aircraft_white_noignorez (5) != 0
Reference Count for Material particle/fire_particle_4/fire_particle_4 (72) != 0
Reference Count for Material particle/muzzleflashcloud (2) != 0
Reference Count for Material particle/particle_muzzleflash4 (4) != 0
Reference Count for Material particle/bendibeam (1) != 0
Reference Count for Material particle/particle_muzzleflashx (4) != 0
Reference Count for Material particle/vistasmokev1/vistasmokev4_nearcull (2) != 0
Reference Count for Material particle/particle_glow_04 (1) != 0
Reference Count for Material particle/particle_muzzleflash2 (5) != 0
Reference Count for Material particle/particle_modulate_01 (1) != 0
Reference Count for Material particle/particle_flares/particle_flare_001_nodepth_noz_nearfade (1) != 0
Reference Count for Material particle/beam_smoke_01 (6) != 0
Reference Count for Material particle/fire_burning_character/fire_burning_character_nodepth (7) != 0
Reference Count for Material particle/fire_burning_character/fire_molotov_crop (1) != 0
Reference Count for Material particle/confetti/confetti (6) != 0
Reference Count for Material particle/paper/paper (6) != 0
Reference Count for Material particle/particle_ring_refract_01 (1) != 0
Reference Count for Material particle/bendibeam_cheap (1) != 0
Reference Count for Material particle/warp_ripple3 (1) != 0
Reference Count for Material particle/water/water_beam_01_warp_alpha (1) != 0
Reference Count for Material effects/splash4 (1) != 0
Reference Count for Material particle/particle_glow_01_additive (2) != 0
Reference Count for Material particle/smoke1/smoke1_nearcull3 (1) != 0
Reference Count for Material particle/voice_icon_particle (2) != 0
Reference Count for Material particle/radio_icon_particle (2) != 0
Reference Count for Material particle/playerping/playerping_arrow (2) != 0
Reference Count for Material particle/particle_modulate_01_noz (1) != 0
Reference Count for Material particle/playerping/playerping_arrow_outline (1) != 0
Reference Count for Material particle/playerping/playerping_ring (2) != 0
Reference Count for Material vgui/hud/icon_arrow_down (1) != 0
Reference Count for Material particle/muzzleflash/noisecloud1 (5) != 0
Reference Count for Material engine/writez (1) != 0
Reference Count for Material engine/preloadtexture (1) != 0
Reference Count for Material models/inventory_items/dogtags/dogtags_outline (69272) != 0
Reference Count for Material cable/rope_shadowdepth (1) != 0
Reference Count for Material aristois_material (69272) != 0
Reference Count for Material aristois_reflective (69272) != 0
Reference Count for Material debug/debugdrawflat (69272) != 0
Reference Count for Material ___error (2) != 0
'csgo.exe' (Win32): Unloaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\stdshader_dx9.dll'
'csgo.exe' (Win32): Unloaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\stdshader_dbg.dll'
'csgo.exe' (Win32): Unloaded 'C:\Windows\SysWOW64\D3DX9_43.dll'
'csgo.exe' (Win32): Unloaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\shaderapidx9.dll'
'csgo.exe' (Win32): Unloaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\libfontconfig-1.dll'
'csgo.exe' (Win32): Unloaded 'C:\Windows\SysWOW64\usp10.dll'
'csgo.exe' (Win32): Unloaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\libgmodule-2.0-0.dll'
'csgo.exe' (Win32): Unloaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\libgobject-2.0-0.dll'
'csgo.exe' (Win32): Unloaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\libglib-2.0-0.dll'
'csgo.exe' (Win32): Unloaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\libpango-1.0-0.dll'
'csgo.exe' (Win32): Unloaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\libpangoft2-1.0-0.dll'
'csgo.exe' (Win32): Unloaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\panorama_text_pango.dll'
'csgo.exe' (Win32): Unloaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\localize.dll'
'csgo.exe' (Win32): Unloaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\imemanager.dll'
'csgo.exe' (Win32): Unloaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\cairo.dll'
'csgo.exe' (Win32): Unloaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\parsifal.dll'
'csgo.exe' (Win32): Unloaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\v8_libplatform.dll'
'csgo.exe' (Win32): Unloaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\panorama.dll'
'csgo.exe' (Win32): Unloaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\icui18n.dll'
'csgo.exe' (Win32): Unloaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\icuuc.dll'
'csgo.exe' (Win32): Unloaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\v8.dll'
'csgo.exe' (Win32): Unloaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\libavcodec-56.dll'
'csgo.exe' (Win32): Unloaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\libavformat-56.dll'
'csgo.exe' (Win32): Unloaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\libavresample-2.dll'
'csgo.exe' (Win32): Unloaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\libavutil-54.dll'
'csgo.exe' (Win32): Unloaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\libswscale-3.dll'
'csgo.exe' (Win32): Unloaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\video.dll'
'csgo.exe' (Win32): Unloaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\panoramauiclient.dll'
'csgo.exe' (Win32): Unloaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\vgui2.dll'
'csgo.exe' (Win32): Unloaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\vguimatsurface.dll'
'csgo.exe' (Win32): Unloaded 'C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_5.82.18362.418_none_71d10a2d5ae97b72\comctl32.dll'
'csgo.exe' (Win32): Unloaded 'C:\Windows\SysWOW64\msvfw32.dll'
'csgo.exe' (Win32): Unloaded 'C:\Windows\SysWOW64\avifil32.dll'
'csgo.exe' (Win32): Unloaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\valve_avi.dll'
'csgo.exe' (Win32): Unloaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\soundsystem.dll'
'csgo.exe' (Win32): Unloaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\vscript.dll'
'csgo.exe' (Win32): Unloaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\soundemittersystem.dll'
'csgo.exe' (Win32): Unloaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\studiorender.dll'
'csgo.exe' (Win32): Unloaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\datacache.dll'
'csgo.exe' (Win32): Unloaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\materialsystem.dll'
'csgo.exe' (Win32): Unloaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\vphysics.dll'
'csgo.exe' (Win32): Unloaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\xinput1_3.dll'
'csgo.exe' (Win32): Unloaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\inputsystem.dll'
'csgo.exe' (Win32): Unloaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\steamnetworkingsockets.dll'
'csgo.exe' (Win32): Unloaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\engine.dll'
The thread 0x9f0 has exited with code 0 (0x0).
The thread 0x1d1c has exited with code 0 (0x0).
The thread 0x1634 has exited with code 0 (0x0).
The thread 0xe6c has exited with code 0 (0x0).
'csgo.exe' (Win32): Unloaded 'C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\bin\filesystem_stdio.dll'
The thread 0x1ed8 has exited with code 0 (0x0).
The thread 0x17d0 has exited with code 0 (0x0).
The thread 0x14e4 has exited with code 0 (0x0).
The thread 0x2c88 has exited with code 0 (0x0).
The thread 0x200c has exited with code 0 (0x0).
The thread 0x109c has exited with code 0 (0x0).
The thread 0x2db4 has exited with code 0 (0x0).
The thread 0x2f08 has exited with code 0 (0x0).
The thread 0xc6c has exited with code 0 (0x0).
The thread 0x328 has exited with code 0 (0x0).
The thread 0xfd0 has exited with code 0 (0x0).
The thread 0x205c has exited with code 0 (0x0).
The thread 0x2678 has exited with code 0 (0x0).
The thread 0x2ed0 has exited with code 0 (0x0).
The thread 0x71c has exited with code 0 (0x0).
The thread 0x2940 has exited with code 0 (0x0).
The thread 0x247c has exited with code 0 (0x0).
The thread 0x2330 has exited with code 0 (0x0).
The thread 0x2de0 has exited with code 0 (0x0).
The thread 0x738 has exited with code 0 (0x0).
Exception thrown at 0x76D73572 in csgo.exe: Microsoft C++ exception: std::runtime_error at memory location 0x0117F570.
Exception thrown at 0x76D73572 in csgo.exe: Microsoft C++ exception: std::runtime_error at memory location 0x0117F570.
Exception thrown at 0x76D73572 in csgo.exe: Microsoft C++ exception: std::runtime_error at memory location 0x0117F570.
Exception thrown at 0x76D73572 in csgo.exe: Microsoft C++ exception: std::runtime_error at memory location 0x0117F570.
Exception thrown at 0x76D73572 in csgo.exe: Microsoft C++ exception: std::runtime_error at memory location 0x0117F570.
Exception thrown at 0x76D73572 in csgo.exe: Microsoft C++ exception: std::runtime_error at memory location 0x0117F570.
The program '[860] csgo.exe' has exited with code 0 (0x0).

 

To pokazuje debugger. Podczas odpalenia triggera nic sie nie dzieje.

Odnośnik do komentarza

Zarchiwizowany

Ten temat przebywa obecnie w archiwum. Dodawanie nowych odpowiedzi zostało zablokowane.

Gość
Ten temat został zamknięty. Brak możliwości dodania odpowiedzi.

  Tagi

×
×
  • Dodaj nową pozycję...

Powiadomienie o plikach cookie

Umieściliśmy na Twoim urządzeniu pliki cookie, aby pomóc Ci usprawnić przeglądanie strony. Możesz dostosować ustawienia plików cookie, w przeciwnym wypadku zakładamy, że wyrażasz na to zgodę. Regulamin. Polityka prywatności