Retarded Question about Indigo Compiler

  • Автор темы Автор темы Mew
  • Дата начала Дата начала
Начинающий
Начинающий
Статус
Оффлайн
Регистрация
15 Май 2017
Сообщения
112
Реакции
29
So the Indigo SRC was released some time ago, and in Indigo there are lines specifically related to swapping code around/etc to make it UD.
I have been trying to get SMEFPWs indigo to compile with an injector and it compiles IN Visual Studio, but in the compiler it gives me a retarded ass error.
Here's the code for the compiler,
Код:
Expand Collapse Copy
@echo off
cd "%ProgramFiles(x86)%\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\"
call vcvarsall x86
rem cd %~dp0
IF "%1%" EQU "-clean" (
CD /D "%~dp0"
RD /S /Q INDIGO_TMP
rem del INDIGO_INJECTOR\Decrypt.*
rem del INDIGO_DLL\Decrypt.*
del INDIGO_INJECTOR\HackBin.h
GoTo exit
)
IF "%1%" EQU "" (
Set TMP_DIR=INDIGO_TMP
) ELSE (
Set TMP_DIR=%1%
)
:: Initialize ::
SetLocal EnableDelayedExpansion EnableExtensions
Set TotalChars=62
Set CharSet=0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWQYZ
:: COPY_SCRIPTS ::
CD /D "%~dp0"
RD /S /Q %TMP_DIR%
mkdir %TMP_DIR%
mkdir INDIGO_RELEASE
copy /V /Y INDIGO_TOOLS\COMPILE\Injector.bat %TMP_DIR%
copy /V /Y INDIGO_TOOLS\COMPILE\DLL.bat %TMP_DIR%
copy /V /Y INDIGO_TOOLS\COMPILE\HexMaker.exe %TMP_DIR%
copy /V /Y INDIGO_TOOLS\COMPILE\Injector.ini %TMP_DIR%
copy /V /Y INDIGO_TOOLS\COMPILE\DLL.ini %TMP_DIR%
Set infile=%TMP_DIR%\Injector.ini
Set find=###
Set replace=%TMP_DIR%
set COUNT=0
for /F "tokens=* delims=," %%n in (!infile!) do (
set LINE=%%n
set TMPR=!LINE:%find%=%replace%!
Echo !TMPR!>>TMP.TXT
)
move TMP.TXT %infile%
Set infile=%TMP_DIR%\DLL.ini
Set find=###
Set replace=%TMP_DIR%
set COUNT=0
for /F "tokens=* delims=," %%n in (!infile!) do (
set LINE=%%n
set TMPR=!LINE:%find%=%replace%!
Echo !TMPR!>>TMP.TXT
)
move TMP.TXT %infile%
:: START ::
set /p BUILD_COUNTS="How many copies homo: "
:: SET VISUAL STUDIO ENVIROMENT ::
call "%VS140COMNTOOLS%\vsvars32.bat"
call "%DXSDK_DIR%\Utilities\bin\dx_setenv.cmd" X86
:: COMPILE BUILDS ::
Set _BuildCount=%BUILD_COUNTS%
:BuildLoop
echo --------------------------------------------------
echo Compile Cheat DLL [%_BuildCount%]
echo --------------------------------------------------
CD /D "%~dp0"
RANDOMIZER.exe %TMP_DIR%\DLL.ini
call %TMP_DIR%\DLL.bat
echo --------------------------------------------------
echo Compile Injector [%_BuildCount%]
echo --------------------------------------------------
CD /D "%~dp0"
RANDOMIZER.exe %TMP_DIR%\Injector.ini
call %TMP_DIR%\Injector.bat
echo --------------------------------------------------
echo Generate Random Name
echo --------------------------------------------------
Set PassLenght=15
:Loop
Set /A Rnd=%TotalChars%*%Random%/32768
Set Pswd=!CharSet:~%Rnd%,1!%Pswd%
Set /A PassLenght-=1
If %PassLenght% GTR 0 GoTo Loop
echo Rename INDIGO FILES
CD /D "%~dp0"
ren INDIGO_RELEASE\Indigo.exe %Pswd%_.exe
ren INDIGO_RELEASE\Indigo.map %Pswd%_.map
echo --------------------------------------------------
echo Protecting [%_BuildCount%]
echo --------------------------------------------------
CD /D "%~dp0"
INDIGO_TOOLS\VMProtect.exe INDIGO_RELEASE\%Pswd%_.exe INDIGO_RELEASE\%Pswd%.exe -pf INDIGO_TOOLS\Settings.vmp  -sf INDIGO_TOOLS\script.txt
del /F /Q INDIGO_RELEASE\%Pswd%_.exe
del /F /Q INDIGO_RELEASE\%Pswd%_.map
Set Pswd=
Set /A _BuildCount-=1
If %_BuildCount% GTR 0 GoTo BuildLoop
rem RD /S /Q %TMP_DIR%
echo --------------------------------------------------
echo Compile Finished!
echo --------------------------------------------------
pause
:exit
And finally here is the compiler output
Код:
Expand Collapse Copy
**********************************************************************
** Visual Studio 2017 Developer Command Prompt v15.0.26430.4
** Copyright (c) 2017 Microsoft Corporation
**********************************************************************
[vcvarsall.bat] Environment initialized for: 'x86'
A subdirectory or file INDIGO_RELEASE already exists.
        1 file(s) copied.
        1 file(s) copied.
        1 file(s) copied.
        1 file(s) copied.
        1 file(s) copied.
        1 file(s) moved.
        1 file(s) moved.
How many copies homo: 1
Dx x86 target enviroment is now enabled.
Dx x64 host enviroment is now enabled.
--------------------------------------------------
Compile Cheat DLL [1]
--------------------------------------------------
Could Not Find C:\Users\user\Downloads\Indigo\CSGO_Indigo_GUI\INDIGO_TMP\Indigo.dll
Microsoft (R) C/C++ Optimizing Compiler Version 19.00.24210 for x86
Copyright (C) Microsoft Corporation.  All rights reserved.
Decrypt.cpp
CSX_Cvar.cpp
CSX_Hook.cpp
CSX_Log.cpp
CSX_Memory.cpp
CSX/CSX_Memory.cpp(267): error C2181: illegal else without matching if
CSX_Utils.cpp
Decrypt.cpp
Main.cpp
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(46): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(46): error C2146: syntax error: missing ';' before identifier 'headPositions'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(47): error C2143: syntax error: missing ';' before '*'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(47): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(32): error C2059: syntax error: '='
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(32): error C2238: unexpected token(s) preceding ';'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(36): error C2143: syntax error: missing ';' before '{'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(36): error C2447: '{': missing function header (old-style formal list?)
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(753): error C2039: 'unordered_map': is not a member of 'std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\sstream(12): note: see declaration of 'std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(753): error C2873: 'unordered_map': symbol cannot be used in a using-declaration
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(754): error C2039: 'unordered_multimap': is not a member of 'std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\sstream(12): note: see declaration of 'std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(754): error C2873: 'unordered_multimap': symbol cannot be used in a using-declaration
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\main\../Settings/Settings.h(133): fatal error C1075: the left brace '{' was unmatched at the end of the file
ReflectiveLoader.cpp
CRC.cpp
KeyValues.cpp
SDK.cpp
Sounds.cpp
SDK/Sounds.cpp(985): warning C4838: conversion from 'int' to 'char' requires a narrowing conversion
SDK/Sounds.cpp(10022): warning C4838: conversion from 'int' to 'char' requires a narrowing conversion
SDK/Sounds.cpp(33937): warning C4838: conversion from 'int' to 'char' requires a narrowing conversion
SDK/Sounds.cpp(68904): warning C4838: conversion from 'int' to 'char' requires a narrowing conversion
SDK/Sounds.cpp(95073): warning C4838: conversion from 'int' to 'char' requires a narrowing conversion
SDK/Sounds.cpp(129392): warning C4838: conversion from 'int' to 'char' requires a narrowing conversion
Spoofed.cpp
Vector.cpp
Vector2D.cpp
Vector4D.cpp
VMatrix.cpp
Engine.cpp
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(46): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(46): error C2146: syntax error: missing ';' before identifier 'headPositions'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(47): error C2143: syntax error: missing ';' before '*'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(47): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(32): error C2059: syntax error: '='
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(32): error C2238: unexpected token(s) preceding ';'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(36): error C2143: syntax error: missing ';' before '{'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(36): error C2447: '{': missing function header (old-style formal list?)
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(753): error C2039: 'unordered_map': is not a member of 'std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\sstream(12): note: see declaration of 'std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(753): error C2873: 'unordered_map': symbol cannot be used in a using-declaration
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(754): error C2039: 'unordered_multimap': is not a member of 'std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\sstream(12): note: see declaration of 'std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(754): error C2873: 'unordered_multimap': symbol cannot be used in a using-declaration
Engine/Engine.cpp(67): error C3083: 'Interfaces': the symbol to the left of a '::' must be a type
Engine/Engine.cpp(67): error C2039: 'Engine': is not a member of 'Settings::Misc::SDK'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\misc\../../SDK/Spoofed.h(3): note: see declaration of 'Settings::Misc::SDK'
Engine/Engine.cpp(67): error C2882: 'Engine': illegal use of namespace identifier in expression
Engine/Engine.cpp(81): error C3083: 'Interfaces': the symbol to the left of a '::' must be a type
Engine/Engine.cpp(81): error C2039: 'Client': is not a member of 'Settings::Misc::SDK'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\misc\../../SDK/Spoofed.h(3): note: see declaration of 'Settings::Misc::SDK'
Engine/Engine.cpp(81): error C2882: 'Client': illegal use of namespace identifier in expression
Engine/Engine.cpp(94): error C3083: 'Interfaces': the symbol to the left of a '::' must be a type
Engine/Engine.cpp(94): error C2039: 'EntityList': is not a member of 'Settings::Misc::SDK'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\misc\../../SDK/Spoofed.h(3): note: see declaration of 'Settings::Misc::SDK'
Engine/Engine.cpp(94): error C3861: 'EntityList': identifier not found
Engine/Engine.cpp(107): error C3083: 'Interfaces': the symbol to the left of a '::' must be a type
Engine/Engine.cpp(107): error C2039: 'GlobalVars': is not a member of 'Settings::Misc::SDK'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\misc\../../SDK/Spoofed.h(3): note: see declaration of 'Settings::Misc::SDK'
Engine/Engine.cpp(107): error C3861: 'GlobalVars': identifier not found
Engine/Engine.cpp(127): error C3083: 'Interfaces': the symbol to the left of a '::' must be a type
Engine/Engine.cpp(127): error C2039: 'EngineTrace': is not a member of 'Settings::Misc::SDK'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\misc\../../SDK/Spoofed.h(3): note: see declaration of 'Settings::Misc::SDK'
Engine/Engine.cpp(127): error C3861: 'EngineTrace': identifier not found
Engine/Engine.cpp(135): error C3083: 'Interfaces': the symbol to the left of a '::' must be a type
Engine/Engine.cpp(135): error C2039: 'ClientMode': is not a member of 'Settings::Misc::SDK'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\misc\../../SDK/Spoofed.h(3): note: see declaration of 'Settings::Misc::SDK'
Engine/Engine.cpp(135): error C3861: 'ClientMode': identifier not found
Engine/Engine.cpp(148): error C3083: 'Interfaces': the symbol to the left of a '::' must be a type
Engine/Engine.cpp(148): error C2039: 'ModelInfo': is not a member of 'Settings::Misc::SDK'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\misc\../../SDK/Spoofed.h(3): note: see declaration of 'Settings::Misc::SDK'
Engine/Engine.cpp(148): error C3861: 'ModelInfo': identifier not found
Engine/Engine.cpp(160): error C3083: 'Interfaces': the symbol to the left of a '::' must be a type
Engine/Engine.cpp(160): error C2039: 'Sound': is not a member of 'Settings::Misc::SDK'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\misc\../../SDK/Spoofed.h(3): note: see declaration of 'Settings::Misc::SDK'
Engine/Engine.cpp(160): error C3861: 'Sound': identifier not found
Engine/Engine.cpp(168): error C3083: 'Interfaces': the symbol to the left of a '::' must be a type
Engine/Engine.cpp(168): error C2039: 'ModelRender': is not a member of 'Settings::Misc::SDK'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\misc\../../SDK/Spoofed.h(3): note: see declaration of 'Settings::Misc::SDK'
Engine/Engine.cpp(168): error C3861: 'ModelRender': identifier not found
Engine/Engine.cpp(175): error C3083: 'Interfaces': the symbol to the left of a '::' must be a type
Engine/Engine.cpp(175): error C2039: 'RenderView': is not a member of 'Settings::Misc::SDK'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\misc\../../SDK/Spoofed.h(3): note: see declaration of 'Settings::Misc::SDK'
Engine/Engine.cpp(175): error C3861: 'RenderView': identifier not found
Engine/Engine.cpp(184): error C3083: 'Interfaces': the symbol to the left of a '::' must be a type
Engine/Engine.cpp(184): error C2039: 'MaterialSystem': is not a member of 'Settings::Misc::SDK'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\misc\../../SDK/Spoofed.h(3): note: see declaration of 'Settings::Misc::SDK'
Engine/Engine.cpp(184): error C3861: 'MaterialSystem': identifier not found
Engine/Engine.cpp(191): error C3083: 'Interfaces': the symbol to the left of a '::' must be a type
Engine/Engine.cpp(191): error C2039: 'Surface': is not a member of 'Settings::Misc::SDK'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\misc\../../SDK/Spoofed.h(3): note: see declaration of 'Settings::Misc::SDK'
Engine/Engine.cpp(191): error C3861: 'Surface': identifier not found
Engine/Engine.cpp(198): error C3083: 'Interfaces': the symbol to the left of a '::' must be a type
Engine/Engine.cpp(198): error C2039: 'GameEvent': is not a member of 'Settings::Misc::SDK'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\misc\../../SDK/Spoofed.h(3): note: see declaration of 'Settings::Misc::SDK'
Engine/Engine.cpp(198): error C3861: 'GameEvent': identifier not found
Engine/Engine.cpp(212): error C3083: 'Interfaces': the symbol to the left of a '::' must be a type
Engine/Engine.cpp(212): error C2039: 'InputSystem': is not a member of 'Settings::Misc::SDK'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\misc\../../SDK/Spoofed.h(3): note: see declaration of 'Settings::Misc::SDK'
Engine/Engine.cpp(212): error C3861: 'InputSystem': identifier not found
Engine/Engine.cpp(220): error C3083: 'Interfaces': the symbol to the left of a '::' must be a type
Engine/Engine.cpp(220): error C2039: 'Client': is not a member of 'Settings::Misc::SDK'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\misc\../../SDK/Spoofed.h(3): note: see declaration of 'Settings::Misc::SDK'
Engine/Engine.cpp(220): error C2882: 'Client': illegal use of namespace identifier in expression
Engine/Engine.cpp(220): error C2227: left of '->GetAllClasses' must point to class/struct/union/generic type
Engine/Engine.cpp(445): error C2039: 'misc_Clan': is not a member of 'Settings::Misc'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\main\../Settings/Settings.h(132): note: see declaration of 'Settings::Misc'
Engine/Engine.cpp(445): error C2065: 'misc_Clan': undeclared identifier
Engine/Engine.cpp(925): error C2039: 'vector': is not a member of 'Settings::Misc::std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(14): note: see declaration of 'Settings::Misc::std'
Engine/Engine.cpp(925): error C2143: syntax error: missing ';' before '<'
Engine/Engine.cpp(925): error C2059: syntax error: '<'
Engine/Engine.cpp(925): error C2039: 'string': is not a member of 'Settings::Misc::std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(14): note: see declaration of 'Settings::Misc::std'
Engine/Engine.cpp(925): error C2143: syntax error: missing ';' before '{'
Engine/Engine.cpp(925): error C2143: syntax error: missing ';' before '}'
Engine/Engine.cpp(953): error C2039: 'string': is not a member of 'Settings::Misc::std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(14): note: see declaration of 'Settings::Misc::std'
Engine/Engine.cpp(953): error C2065: 'chatspam': undeclared identifier
Engine/Engine.cpp(953): error C2228: left of '.size' must have class/struct/union
Engine/Engine.cpp(953): note: type is 'unknown-type'
Engine/Engine.cpp(970): error C2039: 'vector': is not a member of 'Settings::Misc::std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(14): note: see declaration of 'Settings::Misc::std'
Engine/Engine.cpp(970): error C2143: syntax error: missing ';' before '<'
Engine/Engine.cpp(970): error C2059: syntax error: '<'
Engine/Engine.cpp(970): error C2039: 'string': is not a member of 'Settings::Misc::std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(14): note: see declaration of 'Settings::Misc::std'
Engine/Engine.cpp(970): error C2143: syntax error: missing ';' before '{'
Engine/Engine.cpp(970): error C2143: syntax error: missing ';' before '}'
Engine/Engine.cpp(1001): error C2039: 'string': is not a member of 'Settings::Misc::std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(14): note: see declaration of 'Settings::Misc::std'
Engine/Engine.cpp(1001): error C2065: 'chatspamsss': undeclared identifier
Engine/Engine.cpp(1001): error C2228: left of '.size' must have class/struct/union
Engine/Engine.cpp(1001): note: type is 'unknown-type'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\main\../Settings/Settings.h(133): fatal error C1075: the left brace '{' was unmatched at the end of the file
Entity.cpp
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(46): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(46): error C2146: syntax error: missing ';' before identifier 'headPositions'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(47): error C2143: syntax error: missing ';' before '*'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(47): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(32): error C2059: syntax error: '='
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(32): error C2238: unexpected token(s) preceding ';'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(36): error C2143: syntax error: missing ';' before '{'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(36): error C2447: '{': missing function header (old-style formal list?)
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(753): error C2039: 'unordered_map': is not a member of 'std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\sstream(12): note: see declaration of 'std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(753): error C2873: 'unordered_map': symbol cannot be used in a using-declaration
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(754): error C2039: 'unordered_multimap': is not a member of 'std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\sstream(12): note: see declaration of 'std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(754): error C2873: 'unordered_multimap': symbol cannot be used in a using-declaration
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\main\../Settings/Settings.h(133): fatal error C1075: the left brace '{' was unmatched at the end of the file
Generating Code...
Compiling...
Hook.cpp
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(46): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(46): error C2146: syntax error: missing ';' before identifier 'headPositions'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(47): error C2143: syntax error: missing ';' before '*'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(47): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(32): error C2059: syntax error: '='
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(32): error C2238: unexpected token(s) preceding ';'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(36): error C2143: syntax error: missing ';' before '{'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(36): error C2447: '{': missing function header (old-style formal list?)
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(753): error C2039: 'unordered_map': is not a member of 'std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\sstream(12): note: see declaration of 'std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(753): error C2873: 'unordered_map': symbol cannot be used in a using-declaration
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(754): error C2039: 'unordered_multimap': is not a member of 'std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\sstream(12): note: see declaration of 'std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(754): error C2873: 'unordered_multimap': symbol cannot be used in a using-declaration
Engine/Hook.cpp(168): error C2039: 'misc_ThirdPerson': is not a member of 'Settings::Misc'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\main\../Settings/Settings.h(132): note: see declaration of 'Settings::Misc'
Engine/Hook.cpp(168): error C2065: 'misc_ThirdPerson': undeclared identifier
Engine/Hook.cpp(202): error C2039: 'qLastTickAngle': is not a member of 'Settings::Misc'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\main\../Settings/Settings.h(132): note: see declaration of 'Settings::Misc'
Engine/Hook.cpp(202): error C2065: 'qLastTickAngle': undeclared identifier
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\main\../Settings/Settings.h(133): fatal error C1075: the left brace '{' was unmatched at the end of the file
NetVar.cpp
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(46): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(46): error C2146: syntax error: missing ';' before identifier 'headPositions'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(47): error C2143: syntax error: missing ';' before '*'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(47): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(32): error C2059: syntax error: '='
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(32): error C2238: unexpected token(s) preceding ';'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(36): error C2143: syntax error: missing ';' before '{'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(36): error C2447: '{': missing function header (old-style formal list?)
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(753): error C2039: 'unordered_map': is not a member of 'std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\sstream(12): note: see declaration of 'std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(753): error C2873: 'unordered_map': symbol cannot be used in a using-declaration
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(754): error C2039: 'unordered_multimap': is not a member of 'std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\sstream(12): note: see declaration of 'std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(754): error C2873: 'unordered_multimap': symbol cannot be used in a using-declaration
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\main\../Settings/Settings.h(133): fatal error C1075: the left brace '{' was unmatched at the end of the file
Offset.cpp
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(46): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(46): error C2146: syntax error: missing ';' before identifier 'headPositions'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(47): error C2143: syntax error: missing ';' before '*'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(47): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(32): error C2059: syntax error: '='
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(32): error C2238: unexpected token(s) preceding ';'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(36): error C2143: syntax error: missing ';' before '{'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(36): error C2447: '{': missing function header (old-style formal list?)
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(753): error C2039: 'unordered_map': is not a member of 'std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\sstream(12): note: see declaration of 'std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(753): error C2873: 'unordered_map': symbol cannot be used in a using-declaration
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(754): error C2039: 'unordered_multimap': is not a member of 'std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\sstream(12): note: see declaration of 'std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(754): error C2873: 'unordered_multimap': symbol cannot be used in a using-declaration
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\main\../Settings/Settings.h(133): fatal error C1075: the left brace '{' was unmatched at the end of the file
Players.cpp
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(46): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(46): error C2146: syntax error: missing ';' before identifier 'headPositions'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(47): error C2143: syntax error: missing ';' before '*'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(47): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(32): error C2059: syntax error: '='
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(32): error C2238: unexpected token(s) preceding ';'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(36): error C2143: syntax error: missing ';' before '{'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(36): error C2447: '{': missing function header (old-style formal list?)
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(753): error C2039: 'unordered_map': is not a member of 'std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\sstream(12): note: see declaration of 'std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(753): error C2873: 'unordered_map': symbol cannot be used in a using-declaration
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(754): error C2039: 'unordered_multimap': is not a member of 'std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\sstream(12): note: see declaration of 'std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(754): error C2873: 'unordered_multimap': symbol cannot be used in a using-declaration
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\main\../Settings/Settings.h(133): fatal error C1075: the left brace '{' was unmatched at the end of the file
Render.cpp
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(46): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(46): error C2146: syntax error: missing ';' before identifier 'headPositions'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(47): error C2143: syntax error: missing ';' before '*'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(47): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(32): error C2059: syntax error: '='
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(32): error C2238: unexpected token(s) preceding ';'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(36): error C2143: syntax error: missing ';' before '{'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(36): error C2447: '{': missing function header (old-style formal list?)
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(753): error C2039: 'unordered_map': is not a member of 'std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\sstream(12): note: see declaration of 'std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(753): error C2873: 'unordered_map': symbol cannot be used in a using-declaration
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(754): error C2039: 'unordered_multimap': is not a member of 'std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\sstream(12): note: see declaration of 'std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(754): error C2873: 'unordered_multimap': symbol cannot be used in a using-declaration
Engine/Render.cpp(32): error C2664: 'HRESULT D3DXCreateFontA(LPDIRECT3DDEVICE9,INT,UINT,UINT,UINT,BOOL,DWORD,DWORD,DWORD,DWORD,LPCSTR,LPD3DXFONT *)': cannot convert argument 1 from 'Settings::Misc::IDirect3DDevice9 *' to 'LPDIRECT3DDEVICE9'
Engine/Render.cpp(32): note: Types pointed to are unrelated; conversion requires reinterpret_cast, C-style cast or function-style cast
Engine/Render.cpp(59): error C2027: use of undefined type 'Settings::Misc::IDirect3DDevice9'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\../ImGui/imgui_impl_dx9.h(7): note: see declaration of 'Settings::Misc::IDirect3DDevice9'
Engine/Render.cpp(59): error C2227: left of '->CreateStateBlock' must point to class/struct/union/generic type
Engine/Render.cpp(60): error C2027: use of undefined type 'Settings::Misc::IDirect3DDevice9'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\../ImGui/imgui_impl_dx9.h(7): note: see declaration of 'Settings::Misc::IDirect3DDevice9'
Engine/Render.cpp(60): error C2227: left of '->CreateStateBlock' must point to class/struct/union/generic type
Engine/Render.cpp(63): error C2027: use of undefined type 'Settings::Misc::IDirect3DDevice9'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\../ImGui/imgui_impl_dx9.h(7): note: see declaration of 'Settings::Misc::IDirect3DDevice9'
Engine/Render.cpp(63): error C2227: left of '->GetRenderState' must point to class/struct/union/generic type
Engine/Render.cpp(64): error C2027: use of undefined type 'Settings::Misc::IDirect3DDevice9'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\../ImGui/imgui_impl_dx9.h(7): note: see declaration of 'Settings::Misc::IDirect3DDevice9'
Engine/Render.cpp(64): error C2227: left of '->SetRenderState' must point to class/struct/union/generic type
Engine/Render.cpp(68): error C2027: use of undefined type 'Settings::Misc::IDirect3DDevice9'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\../ImGui/imgui_impl_dx9.h(7): note: see declaration of 'Settings::Misc::IDirect3DDevice9'
Engine/Render.cpp(68): error C2227: left of '->SetRenderState' must point to class/struct/union/generic type
Engine/Render.cpp(84): error C2027: use of undefined type 'Settings::Misc::IDirect3DDevice9'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\../ImGui/imgui_impl_dx9.h(7): note: see declaration of 'Settings::Misc::IDirect3DDevice9'
Engine/Render.cpp(84): error C2227: left of '->DrawPrimitiveUP' must point to class/struct/union/generic type
Engine/Render.cpp(103): error C2027: use of undefined type 'Settings::Misc::IDirect3DDevice9'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\../ImGui/imgui_impl_dx9.h(7): note: see declaration of 'Settings::Misc::IDirect3DDevice9'
Engine/Render.cpp(103): error C2227: left of '->DrawPrimitiveUP' must point to class/struct/union/generic type
Engine/Render.cpp(114): error C2027: use of undefined type 'Settings::Misc::IDirect3DDevice9'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\../ImGui/imgui_impl_dx9.h(7): note: see declaration of 'Settings::Misc::IDirect3DDevice9'
Engine/Render.cpp(114): error C2227: left of '->DrawPrimitiveUP' must point to class/struct/union/generic type
Engine/Render.cpp(195): error C2027: use of undefined type 'Settings::Misc::IDirect3DDevice9'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\../ImGui/imgui_impl_dx9.h(7): note: see declaration of 'Settings::Misc::IDirect3DDevice9'
Engine/Render.cpp(195): error C2227: left of '->SetFVF' must point to class/struct/union/generic type
Engine/Render.cpp(196): error C2027: use of undefined type 'Settings::Misc::IDirect3DDevice9'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\../ImGui/imgui_impl_dx9.h(7): note: see declaration of 'Settings::Misc::IDirect3DDevice9'
Engine/Render.cpp(196): error C2227: left of '->SetRenderState' must point to class/struct/union/generic type
Engine/Render.cpp(197): error C2027: use of undefined type 'Settings::Misc::IDirect3DDevice9'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\../ImGui/imgui_impl_dx9.h(7): note: see declaration of 'Settings::Misc::IDirect3DDevice9'
Engine/Render.cpp(197): error C2227: left of '->SetRenderState' must point to class/struct/union/generic type
Engine/Render.cpp(198): error C2027: use of undefined type 'Settings::Misc::IDirect3DDevice9'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\../ImGui/imgui_impl_dx9.h(7): note: see declaration of 'Settings::Misc::IDirect3DDevice9'
Engine/Render.cpp(198): error C2227: left of '->SetRenderState' must point to class/struct/union/generic type
Engine/Render.cpp(199): error C2027: use of undefined type 'Settings::Misc::IDirect3DDevice9'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\../ImGui/imgui_impl_dx9.h(7): note: see declaration of 'Settings::Misc::IDirect3DDevice9'
Engine/Render.cpp(199): error C2227: left of '->SetRenderState' must point to class/struct/union/generic type
Engine/Render.cpp(200): error C2027: use of undefined type 'Settings::Misc::IDirect3DDevice9'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\../ImGui/imgui_impl_dx9.h(7): note: see declaration of 'Settings::Misc::IDirect3DDevice9'
Engine/Render.cpp(200): error C2227: left of '->SetRenderState' must point to class/struct/union/generic type
Engine/Render.cpp(201): error C2027: use of undefined type 'Settings::Misc::IDirect3DDevice9'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\../ImGui/imgui_impl_dx9.h(7): note: see declaration of 'Settings::Misc::IDirect3DDevice9'
Engine/Render.cpp(201): error C2227: left of '->SetRenderState' must point to class/struct/union/generic type
Engine/Render.cpp(250): error C2027: use of undefined type 'Settings::Misc::IDirect3DDevice9'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\../ImGui/imgui_impl_dx9.h(7): note: see declaration of 'Settings::Misc::IDirect3DDevice9'
Engine/Render.cpp(250): error C2227: left of '->SetTexture' must point to class/struct/union/generic type
Engine/Render.cpp(251): error C2027: use of undefined type 'Settings::Misc::IDirect3DDevice9'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\../ImGui/imgui_impl_dx9.h(7): note: see declaration of 'Settings::Misc::IDirect3DDevice9'
Engine/Render.cpp(251): error C2227: left of '->SetPixelShader' must point to class/struct/union/generic type
Engine/Render.cpp(252): error C2027: use of undefined type 'Settings::Misc::IDirect3DDevice9'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\../ImGui/imgui_impl_dx9.h(7): note: see declaration of 'Settings::Misc::IDirect3DDevice9'
Engine/Render.cpp(252): error C2227: left of '->SetFVF' must point to class/struct/union/generic type
Engine/Render.cpp(253): error C2027: use of undefined type 'Settings::Misc::IDirect3DDevice9'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\../ImGui/imgui_impl_dx9.h(7): note: see declaration of 'Settings::Misc::IDirect3DDevice9'
Engine/Render.cpp(253): error C2227: left of '->SetRenderState' must point to class/struct/union/generic type
Engine/Render.cpp(254): error C2027: use of undefined type 'Settings::Misc::IDirect3DDevice9'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\../ImGui/imgui_impl_dx9.h(7): note: see declaration of 'Settings::Misc::IDirect3DDevice9'
Engine/Render.cpp(254): error C2227: left of '->SetRenderState' must point to class/struct/union/generic type
Engine/Render.cpp(255): error C2027: use of undefined type 'Settings::Misc::IDirect3DDevice9'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\../ImGui/imgui_impl_dx9.h(7): note: see declaration of 'Settings::Misc::IDirect3DDevice9'
Engine/Render.cpp(255): error C2227: left of '->SetRenderState' must point to class/struct/union/generic type
Engine/Render.cpp(256): error C2027: use of undefined type 'Settings::Misc::IDirect3DDevice9'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\../ImGui/imgui_impl_dx9.h(7): note: see declaration of 'Settings::Misc::IDirect3DDevice9'
Engine/Render.cpp(256): error C2227: left of '->SetRenderState' must point to class/struct/union/generic type
Engine/Render.cpp(257): error C2027: use of undefined type 'Settings::Misc::IDirect3DDevice9'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\../ImGui/imgui_impl_dx9.h(7): note: see declaration of 'Settings::Misc::IDirect3DDevice9'
Engine/Render.cpp(257): error C2227: left of '->SetRenderState' must point to class/struct/union/generic type
Engine/Render.cpp(258): error C2027: use of undefined type 'Settings::Misc::IDirect3DDevice9'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\../ImGui/imgui_impl_dx9.h(7): note: see declaration of 'Settings::Misc::IDirect3DDevice9'
Engine/Render.cpp(258): error C2227: left of '->SetRenderState' must point to class/struct/union/generic type
Engine/Render.cpp(259): error C2027: use of undefined type 'Settings::Misc::IDirect3DDevice9'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\../ImGui/imgui_impl_dx9.h(7): note: see declaration of 'Settings::Misc::IDirect3DDevice9'
Engine/Render.cpp(259): error C2227: left of '->SetRenderState' must point to class/struct/union/generic type
Engine/Render.cpp(260): error C2027: use of undefined type 'Settings::Misc::IDirect3DDevice9'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\../ImGui/imgui_impl_dx9.h(7): note: see declaration of 'Settings::Misc::IDirect3DDevice9'
Engine/Render.cpp(260): error C2227: left of '->SetRenderState' must point to class/struct/union/generic type
Engine/Render.cpp(261): error C2027: use of undefined type 'Settings::Misc::IDirect3DDevice9'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\../ImGui/imgui_impl_dx9.h(7): note: see declaration of 'Settings::Misc::IDirect3DDevice9'
Engine/Render.cpp(261): error C2227: left of '->SetRenderState' must point to class/struct/union/generic type
Engine/Render.cpp(262): error C2027: use of undefined type 'Settings::Misc::IDirect3DDevice9'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\../ImGui/imgui_impl_dx9.h(7): note: see declaration of 'Settings::Misc::IDirect3DDevice9'
Engine/Render.cpp(262): error C2227: left of '->SetRenderState' must point to class/struct/union/generic type
Engine/Render.cpp(263): error C2027: use of undefined type 'Settings::Misc::IDirect3DDevice9'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\../ImGui/imgui_impl_dx9.h(7): note: see declaration of 'Settings::Misc::IDirect3DDevice9'
Engine/Render.cpp(263): error C2227: left of '->SetRenderState' must point to class/struct/union/generic type
Engine/Render.cpp(264): error C2027: use of undefined type 'Settings::Misc::IDirect3DDevice9'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\../ImGui/imgui_impl_dx9.h(7): note: see declaration of 'Settings::Misc::IDirect3DDevice9'
Engine/Render.cpp(264): error C2227: left of '->SetRenderState' must point to class/struct/union/generic type
Engine/Render.cpp(265): error C2027: use of undefined type 'Settings::Misc::IDirect3DDevice9'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\../ImGui/imgui_impl_dx9.h(7): note: see declaration of 'Settings::Misc::IDirect3DDevice9'
Engine/Render.cpp(265): error C2227: left of '->SetRenderState' must point to class/struct/union/generic type
Engine/Render.cpp(266): error C2027: use of undefined type 'Settings::Misc::IDirect3DDevice9'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\../ImGui/imgui_impl_dx9.h(7): note: see declaration of 'Settings::Misc::IDirect3DDevice9'
Engine/Render.cpp(266): error C2227: left of '->SetRenderState' must point to class/struct/union/generic type
Engine/Render.cpp(267): error C2027: use of undefined type 'Settings::Misc::IDirect3DDevice9'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\../ImGui/imgui_impl_dx9.h(7): note: see declaration of 'Settings::Misc::IDirect3DDevice9'
Engine/Render.cpp(267): error C2227: left of '->SetRenderState' must point to class/struct/union/generic type
Engine/Render.cpp(268): error C2027: use of undefined type 'Settings::Misc::IDirect3DDevice9'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\../ImGui/imgui_impl_dx9.h(7): note: see declaration of 'Settings::Misc::IDirect3DDevice9'
Engine/Render.cpp(268): error C2227: left of '->SetRenderState' must point to class/struct/union/generic type
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\main\../Settings/Settings.h(133): fatal error C1075: the left brace '{' was unmatched at the end of the file
Weapon.cpp
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(46): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(46): error C2146: syntax error: missing ';' before identifier 'headPositions'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(47): error C2143: syntax error: missing ';' before '*'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(47): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(32): error C2059: syntax error: '='
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(32): error C2238: unexpected token(s) preceding ';'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(36): error C2143: syntax error: missing ';' before '{'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(36): error C2447: '{': missing function header (old-style formal list?)
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(753): error C2039: 'unordered_map': is not a member of 'std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\sstream(12): note: see declaration of 'std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(753): error C2873: 'unordered_map': symbol cannot be used in a using-declaration
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(754): error C2039: 'unordered_multimap': is not a member of 'std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\sstream(12): note: see declaration of 'std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(754): error C2873: 'unordered_multimap': symbol cannot be used in a using-declaration
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\main\../Settings/Settings.h(133): fatal error C1075: the left brace '{' was unmatched at the end of the file
License.cpp
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(46): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(46): error C2146: syntax error: missing ';' before identifier 'headPositions'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(47): error C2143: syntax error: missing ';' before '*'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(47): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(32): error C2059: syntax error: '='
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(32): error C2238: unexpected token(s) preceding ';'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(36): error C2143: syntax error: missing ';' before '{'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(36): error C2447: '{': missing function header (old-style formal list?)
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(753): error C2039: 'unordered_map': is not a member of 'std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\sstream(12): note: see declaration of 'std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(753): error C2873: 'unordered_map': symbol cannot be used in a using-declaration
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(754): error C2039: 'unordered_multimap': is not a member of 'std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\sstream(12): note: see declaration of 'std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(754): error C2873: 'unordered_multimap': symbol cannot be used in a using-declaration
License/License.cpp(2): error C2039: 'string': is not a member of 'Settings::Misc::std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(14): note: see declaration of 'Settings::Misc::std'
License/License.cpp(29620): error C2039: 'vector': is not a member of 'Settings::Misc::std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(14): note: see declaration of 'Settings::Misc::std'
License/License.cpp(31627): error C2039: 'ostringstream': is not a member of 'Settings::Misc::std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(14): note: see declaration of 'Settings::Misc::std'
License/License.cpp(32128): error C2039: 'vector': is not a member of 'Settings::Misc::std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(14): note: see declaration of 'Settings::Misc::std'
License/License.cpp(32128): error C2059: syntax error: 'empty declaration'
License/License.cpp(32128): error C2143: syntax error: missing ';' before '<'
License/License.cpp(32128): error C2059: syntax error: '>'
License/License.cpp(32128): error C2039: 'const_iterator': is not a member of '`global namespace''
License/License.cpp(32128): error C2065: 'iter': undeclared identifier
License/License.cpp(32128): error C2059: syntax error: ')'
License/License.cpp(32130): error C2059: syntax error: ';'
License/License.cpp(33132): error C2039: 'hex': is not a member of 'Settings::Misc::std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(14): note: see declaration of 'Settings::Misc::std'
License/License.cpp(33132): error C2065: 'iter': undeclared identifier
License/License.cpp(33634): error C2065: 'hHash': undeclared identifier
License/License.cpp(33634): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
License/License.cpp(34135): error C2065: 'hProv': undeclared identifier
License/License.cpp(34135): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
License/License.cpp(34135): error C2440: 'initializing': cannot convert from 'initializer list' to 'int'
License/License.cpp(34135): note: The initializer contains too many elements
License/License.cpp(34636): error C2059: syntax error: 'return'
License/License.cpp(35138): error C2653: 'CLicense': is not a class or namespace name
License/License.cpp(37146): error C2653: 'CLicense': is not a class or namespace name
License/License.cpp(39163): error C2653: 'CLicense': is not a class or namespace name
License/License.cpp(43180): error C2653: 'CLicense': is not a class or namespace name
License/License.cpp(44685): error C3861: 'StringToHex': identifier not found
License/License.cpp(45687): error C3861: 'StringToHex': identifier not found
License/License.cpp(46689): error C3861: 'StringToHex': identifier not found
License/License.cpp(47691): error C3861: 'StringToHex': identifier not found
License/License.cpp(48694): error C2653: 'CLicense': is not a class or namespace name
License/License.cpp(50199): error C3861: 'GetHashText': identifier not found
License/License.cpp(54730): error C2653: 'CLicense': is not a class or namespace name
License/License.cpp(61747): error C2653: 'CLicense': is not a class or namespace name
License/License.cpp(62250): error C3861: 'base64_encode': identifier not found
License/License.cpp(63253): error C2653: 'CLicense': is not a class or namespace name
License/License.cpp(64758): error C3861: 'GetUrlData': identifier not found
License/License.cpp(66265): error C3861: 'GetHashText': identifier not found
License/License.cpp(67772): error C2653: 'CLicense': is not a class or namespace name
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\main\../Settings/Settings.h(133): fatal error C1075: the left brace '{' was unmatched at the end of the file
imgui.cpp
imgui_draw.cpp
imgui_impl_dx9.cpp
Settings.cpp
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(32): error C2059: syntax error: '='
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(32): error C2238: unexpected token(s) preceding ';'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(36): error C2143: syntax error: missing ';' before '{'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(36): error C2447: '{': missing function header (old-style formal list?)
Settings/Settings.cpp(15): error C2065: 'AIMBOT_TEXT': undeclared identifier
Settings/Settings.cpp(15): error C2065: 'CVAR_AIMBOT_BACKTRACK': undeclared identifier
Settings/Settings.cpp(24): error C2065: 'AIMBOT_TEXT': undeclared identifier
Settings/Settings.cpp(24): error C2065: 'CVAR_AIMBOT_BACKTRACK_TICK': undeclared identifier
Settings/Settings.cpp(32): error C2065: 'AIMBOT_TEXT': undeclared identifier
Settings/Settings.cpp(32): error C2065: 'CVAR_AIMBOT_DEATHMATCH': undeclared identifier
Settings/Settings.cpp(43): error C2065: 'AIMBOT_TEXT': undeclared identifier
Settings/Settings.cpp(43): error C2065: 'CVAR_AIMBOT_WALLATTACK': undeclared identifier
Settings/Settings.cpp(53): error C2065: 'AIMBOT_TEXT': undeclared identifier
Settings/Settings.cpp(53): error C2065: 'CVAR_AIMBOT_CHECKSMOKE': undeclared identifier
Settings/Settings.cpp(62): error C2065: 'AIMBOT_TEXT': undeclared identifier
Settings/Settings.cpp(62): error C2065: 'CVAR_AIMBOT_ANTIJUMP': undeclared identifier
Settings/Settings.cpp(72): error C2065: 'AIMBOT_TEXT': undeclared identifier
Settings/Settings.cpp(72): error C2065: 'CVAR_AIMBOT_RCSTYPE': undeclared identifier
Settings/Settings.cpp(76): error C2065: 'AIMBOT_TEXT': undeclared identifier
Settings/Settings.cpp(76): error C2065: 'CVAR_AIMBOT_DRAWFOV': undeclared identifier
Settings/Settings.cpp(84): error C2065: 'AIMBOT_TEXT': undeclared identifier
Settings/Settings.cpp(84): error C2065: 'CVAR_AIMBOT_DRAWSPOT': undeclared identifier
Settings/Settings.cpp(94): error C2065: 'CVAR_AIMBOT_ACTIVE': undeclared identifier
Settings/Settings.cpp(101): error C2065: 'CVAR_AIMBOT_SMOOTH': undeclared identifier
Settings/Settings.cpp(109): error C2065: 'CVAR_AIMBOT_FOV': undeclared identifier
Settings/Settings.cpp(113): error C2065: 'CVAR_AIMBOT_FOVTYPE': undeclared identifier
Settings/Settings.cpp(121): error C2065: 'CVAR_AIMBOT_BESTHIT': undeclared identifier
Settings/Settings.cpp(126): error C2065: 'CVAR_AIMBOT_SPOT': undeclared identifier
Settings/Settings.cpp(130): error C2065: 'CVAR_AIMBOT_DELAY': undeclared identifier
Settings/Settings.cpp(135): error C2065: 'CVAR_AIMBOT_RCS': undeclared identifier
Settings/Settings.cpp(145): error C2065: 'CVAR_AIMBOT_AUTOPISTOL': undeclared identifier
Settings/Settings.cpp(158): error C2065: 'CVAR_AIMBOT_ACTIVE': undeclared identifier
Settings/Settings.cpp(166): error C2065: 'CVAR_AIMBOT_SMOOTH': undeclared identifier
Settings/Settings.cpp(171): error C2065: 'CVAR_AIMBOT_FOV': undeclared identifier
Settings/Settings.cpp(181): error C2065: 'CVAR_AIMBOT_FOVTYPE': undeclared identifier
Settings/Settings.cpp(192): error C2065: 'CVAR_AIMBOT_BESTHIT': undeclared identifier
Settings/Settings.cpp(196): error C2065: 'CVAR_AIMBOT_SPOT': undeclared identifier
Settings/Settings.cpp(205): error C2065: 'CVAR_AIMBOT_DELAY': undeclared identifier
Settings/Settings.cpp(215): error C2065: 'CVAR_AIMBOT_RCS': undeclared identifier
Settings/Settings.cpp(225): error C2065: 'CVAR_AIMBOT_RCSFOV': undeclared identifier
Settings/Settings.cpp(234): error C2065: 'CVAR_AIMBOT_RCSSMOOTH': undeclared identifier
Settings/Settings.cpp(238): error C2065: 'CVAR_AIMBOT_RCSCLAMPTYPE': undeclared identifier
Settings/Settings.cpp(246): error C2065: 'CVAR_AIMBOT_ACTIVE': undeclared identifier
Settings/Settings.cpp(255): error C2065: 'CVAR_AIMBOT_SMOOTH': undeclared identifier
Settings/Settings.cpp(265): error C2065: 'CVAR_AIMBOT_FOV': undeclared identifier
Settings/Settings.cpp(274): error C2065: 'CVAR_AIMBOT_FOVTYPE': undeclared identifier
Settings/Settings.cpp(284): error C2065: 'CVAR_AIMBOT_BESTHIT': undeclared identifier
Settings/Settings.cpp(293): error C2065: 'CVAR_AIMBOT_SPOT': undeclared identifier
Settings/Settings.cpp(303): error C2065: 'CVAR_AIMBOT_DELAY': undeclared identifier
Settings/Settings.cpp(314): error C2065: 'CVAR_AIMBOT_RCS': undeclared identifier
Settings/Settings.cpp(324): error C2065: 'TRIGGER_TEXT': undeclared identifier
Settings/Settings.cpp(324): error C2065: 'CVAR_TRIGGER_ENABLE': undeclared identifier
Settings/Settings.cpp(329): error C2065: 'TRIGGER_TEXT': undeclared identifier
Settings/Settings.cpp(329): error C2065: 'CVAR_TRIGGER_DEATHMATCH': undeclared identifier
Settings/Settings.cpp(339): error C2065: 'TRIGGER_TEXT': undeclared identifier
Settings/Settings.cpp(339): error C2065: 'CVAR_TRIGGER_WALLATTACK': undeclared identifier
Settings/Settings.cpp(343): error C2065: 'TRIGGER_TEXT': undeclared identifier
Settings/Settings.cpp(343): error C2065: 'CVAR_TRIGGER_FASTZOOM': undeclared identifier
Settings/Settings.cpp(351): error C2065: 'TRIGGER_TEXT': undeclared identifier
Settings/Settings.cpp(351): error C2065: 'CVAR_TRIGGER_KEY': undeclared identifier
Settings/Settings.cpp(351): error C2065: 'CVAR_KEY_MOUSE3': undeclared identifier
Settings/Settings.cpp(351): error C2228: left of '.c_str' must have class/struct/union
Settings/Settings.cpp(356): error C2065: 'TRIGGER_TEXT': undeclared identifier
Settings/Settings.cpp(356): error C2065: 'CVAR_TRIGGER_KEYMODE': undeclared identifier
Settings/Settings.cpp(366): error C2065: 'TRIGGER_TEXT': undeclared identifier
Settings/Settings.cpp(366): error C2065: 'CVAR_TRIGGER_SMOKCHECK': undeclared identifier
Settings/Settings.cpp(374): error C2065: 'TRIGGER_TEXT': undeclared identifier
Settings/Settings.cpp(374): error C2065: 'CVAR_TRIGGER_DRAWFOV': undeclared identifier
Settings/Settings.cpp(381): error C2065: 'TRIGGER_TEXT': undeclared identifier
Settings/Settings.cpp(381): error C2065: 'CVAR_TRIGGER_DRAWSPOT': undeclared identifier
Settings/Settings.cpp(386): error C2065: 'TRIGGER_TEXT': undeclared identifier
Settings/Settings.cpp(386): error C2065: 'CVAR_TRIGGER_DRAWFOVASSIST': undeclared identifier
Settings/Settings.cpp(398): error C2065: 'CVAR_TRIGGER_DISTANCEMIN': undeclared identifier
Settings/Settings.cpp(404): error C2065: 'CVAR_TRIGGER_DISTANCEMAX': undeclared identifier
Settings/Settings.cpp(413): error C2065: 'CVAR_TRIGGER_FOV': undeclared identifier
Settings/Settings.cpp(423): error C2065: 'CVAR_TRIGGER_DELAYBEFORE': undeclared identifier
Settings/Settings.cpp(434): error C2065: 'CVAR_TRIGGER_DELAYAFTER': undeclared identifier
Settings/Settings.cpp(445): error C2065: 'CVAR_TRIGGER_HEADONLY': undeclared identifier
Settings/Settings.cpp(454): error C2065: 'CVAR_TRIGGER_HITGROUP': undeclared identifier
Settings/Settings.cpp(458): error C2065: 'CVAR_TRIGGER_ASSIST': undeclared identifier
Settings/Settings.cpp(463): error C2065: 'CVAR_TRIGGER_ASSISTRCS': undeclared identifier
Settings/Settings.cpp(472): error C2065: 'CVAR_TRIGGER_ASSISTFOV': undeclared identifier
Settings/Settings.cpp(478): error C2065: 'CVAR_TRIGGER_ASSISTFOVTYPE': undeclared identifier
Settings/Settings.cpp(483): error C2065: 'CVAR_TRIGGER_ASSISTSMOOTH': undeclared identifier
Settings/Settings.cpp(494): error C2065: 'VISUAL_TEXT': undeclared identifier
Settings/Settings.cpp(494): error C2065: 'CVAR_ESP_STYLE': undeclared identifier
Settings/Settings.cpp(505): error C2065: 'VISUAL_TEXT': undeclared identifier
Settings/Settings.cpp(505): error C2065: 'CVAR_ESP_SIZE': undeclared identifier
Settings/Settings.cpp(513): error C2065: 'VISUAL_TEXT': undeclared identifier
Settings/Settings.cpp(513): error C2065: 'CVAR_ESP_LINE': undeclared identifier
Settings/Settings.cpp(517): error C2065: 'VISUAL_TEXT': undeclared identifier
Settings/Settings.cpp(517): error C2065: 'CVAR_ESP_OUTLINE': undeclared identifier
Settings/Settings.cpp(523): error C2065: 'VISUAL_TEXT': undeclared identifier
Settings/Settings.cpp(523): error C2065: 'CVAR_ESP_NAME': undeclared identifier
Settings/Settings.cpp(530): error C2065: 'VISUAL_TEXT': undeclared identifier
Settings/Settings.cpp(530): error C2065: 'CVAR_ESP_TIME': undeclared identifier
Settings/Settings.cpp(539): error C2065: 'VISUAL_TEXT': undeclared identifier
Settings/Settings.cpp(539): error C2065: 'CVAR_ESP_WATER': undeclared identifier
Settings/Settings.cpp(549): error C2065: 'VISUAL_TEXT': undeclared identifier
Settings/Settings.cpp(549): error C2065: 'CVAR_ESP_CHEATBUILD': undeclared identifier
Settings/Settings.cpp(559): error C2065: 'VISUAL_TEXT': undeclared identifier
Settings/Settings.cpp(559): fatal error C1003: error count exceeds 100; stopping compilation
Gui.cpp
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(46): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(46): error C2146: syntax error: missing ';' before identifier 'headPositions'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(47): error C2143: syntax error: missing ';' before '*'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(47): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(32): error C2059: syntax error: '='
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(32): error C2238: unexpected token(s) preceding ';'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(36): error C2143: syntax error: missing ';' before '{'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(36): error C2447: '{': missing function header (old-style formal list?)
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(753): error C2039: 'unordered_map': is not a member of 'std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\sstream(12): note: see declaration of 'std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(753): error C2873: 'unordered_map': symbol cannot be used in a using-declaration
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(754): error C2039: 'unordered_multimap': is not a member of 'std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\sstream(12): note: see declaration of 'std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(754): error C2873: 'unordered_multimap': symbol cannot be used in a using-declaration
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\Gui.h(37): error C2039: 'vector': is not a member of 'Settings::Misc::std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(14): note: see declaration of 'Settings::Misc::std'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\Gui.h(37): error C2143: syntax error: missing ')' before '<'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\Gui.h(37): error C2143: syntax error: missing ';' before '<'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\Gui.h(37): error C2059: syntax error: '<'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\Gui.h(37): error C2039: 'string': is not a member of 'Settings::Misc::std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(14): note: see declaration of 'Settings::Misc::std'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\Gui.h(37): error C2059: syntax error: ')'
Gui/Gui.cpp(67): error C2039: 'GetIO': is not a member of 'Settings::Misc::ImGui'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\Gui.h(35): note: see declaration of 'Settings::Misc::ImGui'
Gui/Gui.cpp(67): error C3861: 'GetIO': identifier not found
Gui/Gui.cpp(71): error C2039: 'GetStyle': is not a member of 'Settings::Misc::ImGui'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\Gui.h(35): note: see declaration of 'Settings::Misc::ImGui'
Gui/Gui.cpp(71): error C3861: 'GetStyle': identifier not found
Gui/Gui.cpp(339): error C2039: 'Render': is not a member of 'Settings::Misc::ImGui'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\Gui.h(35): note: see declaration of 'Settings::Misc::ImGui'
Gui/Gui.cpp(339): error C3861: 'Render': identifier not found
Gui/Gui.cpp(519): error C2039: 'GetIO': is not a member of 'Settings::Misc::ImGui'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\Gui.h(35): note: see declaration of 'Settings::Misc::ImGui'
Gui/Gui.cpp(519): error C3861: 'GetIO': identifier not found
Gui/Gui.cpp(519): error C2228: left of '.MouseDrawCursor' must have class/struct/union
Gui/Gui.cpp(519): note: type is 'unknown-type'
Gui/Gui.cpp(541): error C2039: 'GetStyle': is not a member of 'Settings::Misc::ImGui'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\Gui.h(35): note: see declaration of 'Settings::Misc::ImGui'
Gui/Gui.cpp(541): error C3861: 'GetStyle': identifier not found
Gui/Gui.cpp(541): error C2228: left of '.WindowMinSize' must have class/struct/union
Gui/Gui.cpp(541): note: type is 'unknown-type'
Gui/Gui.cpp(546): error C2039: 'GetStyle': is not a member of 'Settings::Misc::ImGui'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\Gui.h(35): note: see declaration of 'Settings::Misc::ImGui'
Gui/Gui.cpp(546): error C3861: 'GetStyle': identifier not found
Gui/Gui.cpp(546): error C2228: left of '.WindowMinSize' must have class/struct/union
Gui/Gui.cpp(546): note: type is 'unknown-type'
Gui/Gui.cpp(554): error C2039: 'SetNextWindowSize': is not a member of 'Settings::Misc::ImGui'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\Gui.h(35): note: see declaration of 'Settings::Misc::ImGui'
Gui/Gui.cpp(554): error C3861: 'SetNextWindowSize': identifier not found
Gui/Gui.cpp(564): error C2039: 'Begin': is not a member of 'Settings::Misc::ImGui'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\Gui.h(35): note: see declaration of 'Settings::Misc::ImGui'
Gui/Gui.cpp(564): error C3861: 'Begin': identifier not found
Gui/Gui.cpp(567): error C2039: 'Text': is not a member of 'Settings::Misc::ImGui'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\Gui.h(35): note: see declaration of 'Settings::Misc::ImGui'
Gui/Gui.cpp(567): error C2065: 'C4_TIMER_STRING': undeclared identifier
Gui/Gui.cpp(567): error C2039: 'fC4Timer': is not a member of 'Settings::Misc::CEsp'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\main\../Cheat/Client.h(17): note: see declaration of 'Settings::Misc::CEsp'
Gui/Gui.cpp(567): error C3861: 'Text': identifier not found
Gui/Gui.cpp(578): error C2039: 'End': is not a member of 'Settings::Misc::ImGui'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\Gui.h(35): note: see declaration of 'Settings::Misc::ImGui'
Gui/Gui.cpp(578): error C3861: 'End': identifier not found
Gui/Gui.cpp(583): error C2039: 'GetStyle': is not a member of 'Settings::Misc::ImGui'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\Gui.h(35): note: see declaration of 'Settings::Misc::ImGui'
Gui/Gui.cpp(583): error C3861: 'GetStyle': identifier not found
Gui/Gui.cpp(583): error C2228: left of '.WindowMinSize' must have class/struct/union
Gui/Gui.cpp(583): note: type is 'unknown-type'
Gui/Gui.cpp(594): error C2039: 'misc_SkinChanger': is not a member of 'Settings::Misc'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\main\../Settings/Settings.h(132): note: see declaration of 'Settings::Misc'
Gui/Gui.cpp(594): error C2065: 'misc_SkinChanger': undeclared identifier
Gui/Gui.cpp(596): error C2039: 'GetStyle': is not a member of 'Settings::Misc::ImGui'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\Gui.h(35): note: see declaration of 'Settings::Misc::ImGui'
Gui/Gui.cpp(596): error C3861: 'GetStyle': identifier not found
Gui/Gui.cpp(596): error C2228: left of '.WindowMinSize' must have class/struct/union
Gui/Gui.cpp(596): note: type is 'unknown-type'
Gui/Gui.cpp(607): error C2039: 'GetStyle': is not a member of 'Settings::Misc::ImGui'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\Gui.h(35): note: see declaration of 'Settings::Misc::ImGui'
Gui/Gui.cpp(607): error C3861: 'GetStyle': identifier not found
Gui/Gui.cpp(607): error C2228: left of '.WindowMinSize' must have class/struct/union
Gui/Gui.cpp(607): note: type is 'unknown-type'
Gui/Gui.cpp(614): error C2039: 'SetNextWindowSize': is not a member of 'Settings::Misc::ImGui'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\Gui.h(35): note: see declaration of 'Settings::Misc::ImGui'
Gui/Gui.cpp(614): error C3861: 'SetNextWindowSize': identifier not found
Gui/Gui.cpp(621): error C2039: 'Begin': is not a member of 'Settings::Misc::ImGui'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\Gui.h(35): note: see declaration of 'Settings::Misc::ImGui'
Gui/Gui.cpp(621): error C2039: 'misc_SkinChanger': is not a member of 'Settings::Misc'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\main\../Settings/Settings.h(132): note: see declaration of 'Settings::Misc'
Gui/Gui.cpp(621): error C2065: 'misc_SkinChanger': undeclared identifier
Gui/Gui.cpp(621): error C3861: 'Begin': identifier not found
Gui/Gui.cpp(655): error C2039: 'Separator': is not a member of 'Settings::Misc::ImGui'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\Gui.h(35): note: see declaration of 'Settings::Misc::ImGui'
Gui/Gui.cpp(655): error C3861: 'Separator': identifier not found
Gui/Gui.cpp(663): error C2039: 'Text': is not a member of 'Settings::Misc::ImGui'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\Gui.h(35): note: see declaration of 'Settings::Misc::ImGui'
Gui/Gui.cpp(663): error C3861: 'Text': identifier not found
Gui/Gui.cpp(674): error C2039: 'Separator': is not a member of 'Settings::Misc::ImGui'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\Gui.h(35): note: see declaration of 'Settings::Misc::ImGui'
Gui/Gui.cpp(674): error C3861: 'Separator': identifier not found
Gui/Gui.cpp(685): error C2039: 'Text': is not a member of 'Settings::Misc::ImGui'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\Gui.h(35): note: see declaration of 'Settings::Misc::ImGui'
Gui/Gui.cpp(685): error C3861: 'Text': identifier not found
Gui/Gui.cpp(689): error C2039: 'PushItemWidth': is not a member of 'Settings::Misc::ImGui'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\Gui.h(35): note: see declaration of 'Settings::Misc::ImGui'
Gui/Gui.cpp(689): error C3861: 'PushItemWidth': identifier not found
Gui/Gui.cpp(706): error C2039: 'Combo': is not a member of 'Settings::Misc::ImGui'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\Gui.h(35): note: see declaration of 'Settings::Misc::ImGui'
Gui/Gui.cpp(706): error C3861: 'Combo': identifier not found
Gui/Gui.cpp(760): error C2664: 'bool Settings::Misc::ImGui::ComboBoxArray(const char *,int *,std::vector)': cannot convert argument 3 from 'std::vector<std::string,std::allocator<_Ty>>' to 'std::vector'
        with
        [
            _Ty=std::string
        ]
Gui/Gui.cpp(760): note: No user-defined-conversion operator available that can perform this conversion, or the operator cannot be called
Gui/Gui.cpp(768): error C2039: 'Combo': is not a member of 'Settings::Misc::ImGui'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\Gui.h(35): note: see declaration of 'Settings::Misc::ImGui'
Gui/Gui.cpp(768): error C3861: 'Combo': identifier not found
Gui/Gui.cpp(772): error C2039: 'SliderFloat': is not a member of 'Settings::Misc::ImGui'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\Gui.h(35): note: see declaration of 'Settings::Misc::ImGui'
Gui/Gui.cpp(772): error C3861: 'SliderFloat': identifier not found
Gui/Gui.cpp(782): error C2039: 'InputInt': is not a member of 'Settings::Misc::ImGui'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\Gui.h(35): note: see declaration of 'Settings::Misc::ImGui'
Gui/Gui.cpp(782): error C3861: 'InputInt': identifier not found
Gui/Gui.cpp(791): error C2039: 'Separator': is not a member of 'Settings::Misc::ImGui'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\Gui.h(35): note: see declaration of 'Settings::Misc::ImGui'
Gui/Gui.cpp(791): error C3861: 'Separator': identifier not found
Gui/Gui.cpp(801): error C2039: 'Combo': is not a member of 'Settings::Misc::ImGui'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\Gui.h(35): note: see declaration of 'Settings::Misc::ImGui'
Gui/Gui.cpp(801): error C3861: 'Combo': identifier not found
Gui/Gui.cpp(812): error C2039: 'Separator': is not a member of 'Settings::Misc::ImGui'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\Gui.h(35): note: see declaration of 'Settings::Misc::ImGui'
Gui/Gui.cpp(812): error C3861: 'Separator': identifier not found
Gui/Gui.cpp(822): error C2039: 'PopItemWidth': is not a member of 'Settings::Misc::ImGui'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\Gui.h(35): note: see declaration of 'Settings::Misc::ImGui'
Gui/Gui.cpp(822): error C3861: 'PopItemWidth': identifier not found
Gui/Gui.cpp(830): error C2039: 'Button': is not a member of 'Settings::Misc::ImGui'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\Gui.h(35): note: see declaration of 'Settings::Misc::ImGui'
Gui/Gui.cpp(830): error C3861: 'Button': identifier not found
Gui/Gui.cpp(850): error C2039: 'End': is not a member of 'Settings::Misc::ImGui'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\Gui.h(35): note: see declaration of 'Settings::Misc::ImGui'
Gui/Gui.cpp(850): error C3861: 'End': identifier not found
Gui/Gui.cpp(860): error C2039: 'GetStyle': is not a member of 'Settings::Misc::ImGui'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\Gui.h(35): note: see declaration of 'Settings::Misc::ImGui'
Gui/Gui.cpp(860): error C3861: 'GetStyle': identifier not found
Gui/Gui.cpp(860): error C2228: left of '.WindowMinSize' must have class/struct/union
Gui/Gui.cpp(860): note: type is 'unknown-type'
Gui/Gui.cpp(865): error C2039: 'misc_KnifeChanger': is not a member of 'Settings::Misc'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\main\../Settings/Settings.h(132): note: see declaration of 'Settings::Misc'
Gui/Gui.cpp(865): error C2065: 'misc_KnifeChanger': undeclared identifier
Gui/Gui.cpp(867): error C2039: 'GetStyle': is not a member of 'Settings::Misc::ImGui'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\Gui.h(35): note: see declaration of 'Settings::Misc::ImGui'
Gui/Gui.cpp(867): error C3861: 'GetStyle': identifier not found
Gui/Gui.cpp(867): error C2228: left of '.WindowMinSize' must have class/struct/union
Gui/Gui.cpp(867): note: type is 'unknown-type'
Gui/Gui.cpp(872): error C2039: 'GetStyle': is not a member of 'Settings::Misc::ImGui'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\Gui.h(35): note: see declaration of 'Settings::Misc::ImGui'
Gui/Gui.cpp(872): error C3861: 'GetStyle': identifier not found
Gui/Gui.cpp(872): error C2228: left of '.WindowMinSize' must have class/struct/union
Gui/Gui.cpp(872): note: type is 'unknown-type'
Gui/Gui.cpp(879): error C2039: 'SetNextWindowSize': is not a member of 'Settings::Misc::ImGui'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\gui\Gui.h(35): note: see declaration of 'Settings::Misc::ImGui'
Gui/Gui.cpp(879): fatal error C1003: error count exceeds 100; stopping compilation
Client.cpp
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(46): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(46): error C2146: syntax error: missing ';' before identifier 'headPositions'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(47): error C2143: syntax error: missing ';' before '*'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(47): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(32): error C2059: syntax error: '='
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(32): error C2238: unexpected token(s) preceding ';'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(36): error C2143: syntax error: missing ';' before '{'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(36): error C2447: '{': missing function header (old-style formal list?)
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(753): error C2039: 'unordered_map': is not a member of 'std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\sstream(12): note: see declaration of 'std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(753): error C2873: 'unordered_map': symbol cannot be used in a using-declaration
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(754): error C2039: 'unordered_multimap': is not a member of 'std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\sstream(12): note: see declaration of 'std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(754): error C2873: 'unordered_multimap': symbol cannot be used in a using-declaration
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\ctime(18): error C2039: 'clock_t': is not a member of '`global namespace''
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\ctime(18): error C2873: 'clock_t': symbol cannot be used in a using-declaration
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\ctime(20): error C2039: 'asctime': is not a member of '`global namespace''
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\ctime(20): error C2873: 'asctime': symbol cannot be used in a using-declaration
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\ctime(20): error C2039: 'clock': is not a member of '`global namespace''
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\ctime(20): error C2873: 'clock': symbol cannot be used in a using-declaration
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\ctime(20): error C2039: 'ctime': is not a member of '`global namespace''
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\ctime(20): error C2873: 'ctime': symbol cannot be used in a using-declaration
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\ctime(21): error C2039: 'difftime': is not a member of '`global namespace''
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\ctime(21): error C2873: 'difftime': symbol cannot be used in a using-declaration
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\ctime(21): error C2039: 'gmtime': is not a member of '`global namespace''
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\ctime(21): error C2873: 'gmtime': symbol cannot be used in a using-declaration
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\ctime(21): error C2039: 'localtime': is not a member of '`global namespace''
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\ctime(21): error C2873: 'localtime': symbol cannot be used in a using-declaration
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\ctime(22): error C2039: 'mktime': is not a member of '`global namespace''
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\ctime(22): error C2873: 'mktime': symbol cannot be used in a using-declaration
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\ctime(22): error C2039: 'strftime': is not a member of '`global namespace''
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\ctime(22): error C2873: 'strftime': symbol cannot be used in a using-declaration
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\ctime(22): error C2039: 'time': is not a member of '`global namespace''
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\ctime(22): error C2873: 'time': symbol cannot be used in a using-declaration
Cheat/Client.cpp(247): error C2664: 'Settings::Misc::Engine::CRender::CRender(const Settings::Misc::Engine::CRender &)': cannot convert argument 1 from 'Settings::Misc::IDirect3DDevice9 *' to 'IDirect3DDevice9 *'
Cheat/Client.cpp(247): note: Types pointed to are unrelated; conversion requires reinterpret_cast, C-style cast or function-style cast
Cheat/Client.cpp(573): error C2065: 'WATER_MARK': undeclared identifier
Cheat/Client.cpp(585): error C2039: 'misc_RainbowMenu': is not a member of 'Settings::Misc'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\main\../Settings/Settings.h(132): note: see declaration of 'Settings::Misc'
Cheat/Client.cpp(585): error C2065: 'misc_RainbowMenu': undeclared identifier
Cheat/Client.cpp(601): error C2039: 'OnRender': is not a member of 'Settings::Misc::CEsp'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Client.h(17): note: see declaration of 'Settings::Misc::CEsp'
Cheat/Client.cpp(622): error C2039: 'time': is not a member of 'Settings::Misc::std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\ctime(17): note: see declaration of 'Settings::Misc::std'
Cheat/Client.cpp(634): error C2039: 'asctime': is not a member of 'Settings::Misc::std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\ctime(17): note: see declaration of 'Settings::Misc::std'
Cheat/Client.cpp(634): error C2039: 'localtime': is not a member of 'Settings::Misc::std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\ctime(17): note: see declaration of 'Settings::Misc::std'
Cheat/Client.cpp(707): error C2039: 'OnCreateMove': is not a member of 'Settings::Misc::CEsp'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Client.h(17): note: see declaration of 'Settings::Misc::CEsp'
Cheat/Client.cpp(746): error C2227: left of '->legitBackTrack' must point to class/struct/union/generic type
Cheat/Client.cpp(746): note: type is 'int *'
Cheat/Client.cpp(777): error C2039: 'OnReset': is not a member of 'Settings::Misc::CEsp'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Client.h(17): note: see declaration of 'Settings::Misc::CEsp'
Cheat/Client.cpp(792): error C2039: 'OnEvents': is not a member of 'Settings::Misc::CEsp'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Client.h(17): note: see declaration of 'Settings::Misc::CEsp'
Cheat/Client.cpp(818): error C2065: 'SpoofedConvar': undeclared identifier
Cheat/Client.cpp(818): error C2065: 'sv_cheats_spoofed': undeclared identifier
Cheat/Client.cpp(818): error C2061: syntax error: identifier 'SpoofedConvar'
Cheat/Client.cpp(828): error C2065: 'sv_cheats_spoofed': undeclared identifier
Cheat/Client.cpp(828): error C2227: left of '->SetInt' must point to class/struct/union/generic type
Cheat/Client.cpp(828): note: type is 'unknown-type'
Cheat/Client.cpp(877): error C2039: 'OnDrawModelExecute': is not a member of 'Settings::Misc::CEsp'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Client.h(17): note: see declaration of 'Settings::Misc::CEsp'
Cheat/Client.cpp(919): error C2039: 'SoundEsp': is not a member of 'Settings::Misc::CEsp'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Client.h(17): note: see declaration of 'Settings::Misc::CEsp'
Cheat/Client.cpp(919): error C2228: left of '.AddSound' must have class/struct/union
Cheat/Client.cpp(957): error C2039: 'SetNextWindowSize': is not a member of 'Settings::Misc::ImGui'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\../Gui/Gui.h(35): note: see declaration of 'Settings::Misc::ImGui'
Cheat/Client.cpp(957): error C3861: 'SetNextWindowSize': identifier not found
Cheat/Client.cpp(961): error C2039: 'Begin': is not a member of 'Settings::Misc::ImGui'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\../Gui/Gui.h(35): note: see declaration of 'Settings::Misc::ImGui'
Cheat/Client.cpp(961): error C2065: 'CHEAT_NAME': undeclared identifier
Cheat/Client.cpp(961): error C3861: 'Begin': identifier not found
Cheat/Client.cpp(990): error C2065: 'AIMBOT_TEXT': undeclared identifier
Cheat/Client.cpp(990): error C2065: 'TRIGGER_TEXT': undeclared identifier
Cheat/Client.cpp(990): error C2065: 'VISUAL_TEXT': undeclared identifier
Cheat/Client.cpp(990): error C2065: 'RADAR_TEXT': undeclared identifier
Cheat/Client.cpp(991): error C2065: 'KNIFEBOT_TEXT': undeclared identifier
Cheat/Client.cpp(991): error C2065: 'MISC_TEXT': undeclared identifier
Cheat/Client.cpp(991): error C2065: 'COLORS_TEXT': undeclared identifier
Cheat/Client.cpp(991): error C2065: 'CONFIG_TEXT': undeclared identifier
Cheat/Client.cpp(1021): error C2039: 'Spacing': is not a member of 'Settings::Misc::ImGui'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\../Gui/Gui.h(35): note: see declaration of 'Settings::Misc::ImGui'
Cheat/Client.cpp(1021): error C3861: 'Spacing': identifier not found
Cheat/Client.cpp(1028): error C2039: 'Separator': is not a member of 'Settings::Misc::ImGui'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\../Gui/Gui.h(35): note: see declaration of 'Settings::Misc::ImGui'
Cheat/Client.cpp(1028): error C3861: 'Separator': identifier not found
Cheat/Client.cpp(1035): error C2039: 'Spacing': is not a member of 'Settings::Misc::ImGui'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\../Gui/Gui.h(35): note: see declaration of 'Settings::Misc::ImGui'
Cheat/Client.cpp(1035): error C3861: 'Spacing': identifier not found
Cheat/Client.cpp(1072): error C2039: 'PushItemWidth': is not a member of 'Settings::Misc::ImGui'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\../Gui/Gui.h(35): note: see declaration of 'Settings::Misc::ImGui'
Cheat/Client.cpp(1072): error C3861: 'PushItemWidth': identifier not found
Cheat/Client.cpp(1076): error C2039: 'Text': is not a member of 'Settings::Misc::ImGui'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\../Gui/Gui.h(35): note: see declaration of 'Settings::Misc::ImGui'
Cheat/Client.cpp(1076): error C3861: 'Text': identifier not found
Cheat/Client.cpp(1086): error C2039: 'SameLine': is not a member of 'Settings::Misc::ImGui'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\../Gui/Gui.h(35): note: see declaration of 'Settings::Misc::ImGui'
Cheat/Client.cpp(1086): error C3861: 'SameLine': identifier not found
Cheat/Client.cpp(1093): error C2039: 'Combo': is not a member of 'Settings::Misc::ImGui'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\../Gui/Gui.h(35): note: see declaration of 'Settings::Misc::ImGui'
Cheat/Client.cpp(1093): error C3861: 'Combo': identifier not found
Cheat/Client.cpp(1101): error C2039: 'PopItemWidth': is not a member of 'Settings::Misc::ImGui'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\../Gui/Gui.h(35): note: see declaration of 'Settings::Misc::ImGui'
Cheat/Client.cpp(1101): error C3861: 'PopItemWidth': identifier not found
Cheat/Client.cpp(1111): error C2039: 'Spacing': is not a member of 'Settings::Misc::ImGui'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\../Gui/Gui.h(35): note: see declaration of 'Settings::Misc::ImGui'
Cheat/Client.cpp(1111): error C3861: 'Spacing': identifier not found
Cheat/Client.cpp(1118): error C2039: 'Separator': is not a member of 'Settings::Misc::ImGui'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\../Gui/Gui.h(35): note: see declaration of 'Settings::Misc::ImGui'
Cheat/Client.cpp(1118): error C3861: 'Separator': identifier not found
Cheat/Client.cpp(1124): error C2039: 'Spacing': is not a member of 'Settings::Misc::ImGui'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\../Gui/Gui.h(35): note: see declaration of 'Settings::Misc::ImGui'
Cheat/Client.cpp(1124): error C3861: 'Spacing': identifier not found
Cheat/Client.cpp(1134): error C2039: 'Checkbox': is not a member of 'Settings::Misc::ImGui'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\../Gui/Gui.h(35): note: see declaration of 'Settings::Misc::ImGui'
Cheat/Client.cpp(1134): error C3861: 'Checkbox': identifier not found
Cheat/Client.cpp(1143): error C2039: 'SameLine': is not a member of 'Settings::Misc::ImGui'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\../Gui/Gui.h(35): note: see declaration of 'Settings::Misc::ImGui'
Cheat/Client.cpp(1143): error C3861: 'SameLine': identifier not found
Cheat/Client.cpp(1150): error C2039: 'Checkbox': is not a member of 'Settings::Misc::ImGui'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\../Gui/Gui.h(35): note: see declaration of 'Settings::Misc::ImGui'
Cheat/Client.cpp(1150): error C3861: 'Checkbox': identifier not found
Cheat/Client.cpp(1157): error C2039: 'SameLine': is not a member of 'Settings::Misc::ImGui'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\../Gui/Gui.h(35): note: see declaration of 'Settings::Misc::ImGui'
Cheat/Client.cpp(1157): error C3861: 'SameLine': identifier not found
Cheat/Client.cpp(1163): error C2039: 'Checkbox': is not a member of 'Settings::Misc::ImGui'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\../Gui/Gui.h(35): note: see declaration of 'Settings::Misc::ImGui'
Cheat/Client.cpp(1163): error C3861: 'Checkbox': identifier not found
Cheat/Client.cpp(1174): error C2039: 'Checkbox': is not a member of 'Settings::Misc::ImGui'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\../Gui/Gui.h(35): note: see declaration of 'Settings::Misc::ImGui'
Cheat/Client.cpp(1174): error C3861: 'Checkbox': identifier not found
Cheat/Client.cpp(1184): error C2039: 'SameLine': is not a member of 'Settings::Misc::ImGui'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\../Gui/Gui.h(35): note: see declaration of 'Settings::Misc::ImGui'
Cheat/Client.cpp(1184): error C3861: 'SameLine': identifier not found
Cheat/Client.cpp(1192): error C2039: 'Checkbox': is not a member of 'Settings::Misc::ImGui'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\../Gui/Gui.h(35): note: see declaration of 'Settings::Misc::ImGui'
Cheat/Client.cpp(1192): error C3861: 'Checkbox': identifier not found
Cheat/Client.cpp(1192): fatal error C1003: error count exceeds 100; stopping compilation
Triggerbot.cpp
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(46): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(46): error C2146: syntax error: missing ';' before identifier 'headPositions'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(47): error C2143: syntax error: missing ';' before '*'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(47): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(32): error C2059: syntax error: '='
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(32): error C2238: unexpected token(s) preceding ';'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(36): error C2143: syntax error: missing ';' before '{'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(36): error C2447: '{': missing function header (old-style formal list?)
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(753): error C2039: 'unordered_map': is not a member of 'std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\sstream(12): note: see declaration of 'std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(753): error C2873: 'unordered_map': symbol cannot be used in a using-declaration
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(754): error C2039: 'unordered_multimap': is not a member of 'std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\sstream(12): note: see declaration of 'std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(754): error C2873: 'unordered_multimap': symbol cannot be used in a using-declaration
Cheat\Triggerbot\Triggerbot.cpp(845): error C2065: 'CVAR_TRIGGER_ENABLED': undeclared identifier
Cheat\Triggerbot\Triggerbot.cpp(876): error C2065: 'CVAR_TRIGGER_DISABLED': undeclared identifier
Cheat\Triggerbot\Triggerbot.cpp(889): error C2065: 'CVAR_TRIGGER_ENABLED': undeclared identifier
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\main\../Settings/Settings.h(133): fatal error C1075: the left brace '{' was unmatched at the end of the file
DynSkin.cpp
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(46): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(46): error C2146: syntax error: missing ';' before identifier 'headPositions'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(47): error C2143: syntax error: missing ';' before '*'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(47): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(32): error C2059: syntax error: '='
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(32): error C2238: unexpected token(s) preceding ';'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(36): error C2143: syntax error: missing ';' before '{'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(36): error C2447: '{': missing function header (old-style formal list?)
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\main\../Settings/Settings.h(133): fatal error C1075: the left brace '{' was unmatched at the end of the file
Skin.cpp
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(46): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(46): error C2146: syntax error: missing ';' before identifier 'headPositions'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(47): error C2143: syntax error: missing ';' before '*'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(47): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(32): error C2059: syntax error: '='
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(32): error C2238: unexpected token(s) preceding ';'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(36): error C2143: syntax error: missing ';' before '{'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(36): error C2447: '{': missing function header (old-style formal list?)
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\main\../Settings/Settings.h(133): fatal error C1075: the left brace '{' was unmatched at the end of the file
Radar.cpp
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(46): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(46): error C2146: syntax error: missing ';' before identifier 'headPositions'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(47): error C2143: syntax error: missing ';' before '*'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(47): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(32): error C2059: syntax error: '='
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(32): error C2238: unexpected token(s) preceding ';'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(36): error C2143: syntax error: missing ';' before '{'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(36): error C2447: '{': missing function header (old-style formal list?)
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(753): error C2039: 'unordered_map': is not a member of 'std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\sstream(12): note: see declaration of 'std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(753): error C2873: 'unordered_map': symbol cannot be used in a using-declaration
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(754): error C2039: 'unordered_multimap': is not a member of 'std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\sstream(12): note: see declaration of 'std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(754): error C2873: 'unordered_multimap': symbol cannot be used in a using-declaration
Cheat\Radar\Radar.cpp(621): error C2039: 'GetCursorScreenPos': is not a member of 'Settings::Misc::ImGui'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\../Gui/Gui.h(35): note: see declaration of 'Settings::Misc::ImGui'
Cheat\Radar\Radar.cpp(621): error C3861: 'GetCursorScreenPos': identifier not found
Cheat\Radar\Radar.cpp(632): error C2039: 'GetContentRegionAvail': is not a member of 'Settings::Misc::ImGui'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\../Gui/Gui.h(35): note: see declaration of 'Settings::Misc::ImGui'
Cheat\Radar\Radar.cpp(632): error C3861: 'GetContentRegionAvail': identifier not found
Cheat\Radar\Radar.cpp(972): error C2039: 'GetWindowDrawList': is not a member of 'Settings::Misc::ImGui'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\../Gui/Gui.h(35): note: see declaration of 'Settings::Misc::ImGui'
Cheat\Radar\Radar.cpp(972): error C3861: 'GetWindowDrawList': identifier not found
Cheat\Radar\Radar.cpp(1004): error C2039: 'SoundEsp': is not a member of 'Settings::Misc::CEsp'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\main\../Cheat/Client.h(17): note: see declaration of 'Settings::Misc::CEsp'
Cheat\Radar\Radar.cpp(1004): error C2228: left of '.Sound' must have class/struct/union
Cheat\Radar\Radar.cpp(1004): error C2228: left of '.size' must have class/struct/union
Cheat\Radar\Radar.cpp(1018): error C2039: 'SoundEsp': is not a member of 'Settings::Misc::CEsp'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\main\../Cheat/Client.h(17): note: see declaration of 'Settings::Misc::CEsp'
Cheat\Radar\Radar.cpp(1018): error C2228: left of '.Sound' must have class/struct/union
Cheat\Radar\Radar.cpp(1018): error C2228: left of '.vOrigin' must have class/struct/union
Cheat\Radar\Radar.cpp(1028): error C2039: 'GetWindowDrawList': is not a member of 'Settings::Misc::ImGui'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\../Gui/Gui.h(35): note: see declaration of 'Settings::Misc::ImGui'
Cheat\Radar\Radar.cpp(1028): error C3861: 'GetWindowDrawList': identifier not found
Cheat\Radar\Radar.cpp(1052): error C2039: 'GetStyle': is not a member of 'Settings::Misc::ImGui'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\../Gui/Gui.h(35): note: see declaration of 'Settings::Misc::ImGui'
Cheat\Radar\Radar.cpp(1052): error C3861: 'GetStyle': identifier not found
Cheat\Radar\Radar.cpp(1052): error C2228: left of '.Alpha' must have class/struct/union
Cheat\Radar\Radar.cpp(1052): note: type is 'unknown-type'
Cheat\Radar\Radar.cpp(1064): error C2039: 'GetStyle': is not a member of 'Settings::Misc::ImGui'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\../Gui/Gui.h(35): note: see declaration of 'Settings::Misc::ImGui'
Cheat\Radar\Radar.cpp(1064): error C3861: 'GetStyle': identifier not found
Cheat\Radar\Radar.cpp(1064): error C2228: left of '.Alpha' must have class/struct/union
Cheat\Radar\Radar.cpp(1064): note: type is 'unknown-type'
Cheat\Radar\Radar.cpp(1070): error C2039: 'Begin': is not a member of 'Settings::Misc::ImGui'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\../Gui/Gui.h(35): note: see declaration of 'Settings::Misc::ImGui'
Cheat\Radar\Radar.cpp(1070): error C2065: 'RADAR_TEXT': undeclared identifier
Cheat\Radar\Radar.cpp(1070): error C3861: 'Begin': identifier not found
Cheat\Radar\Radar.cpp(1072): error C2039: 'GetWindowDrawList': is not a member of 'Settings::Misc::ImGui'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\../Gui/Gui.h(35): note: see declaration of 'Settings::Misc::ImGui'
Cheat\Radar\Radar.cpp(1072): error C3861: 'GetWindowDrawList': identifier not found
Cheat\Radar\Radar.cpp(1078): error C2039: 'GetCursorScreenPos': is not a member of 'Settings::Misc::ImGui'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\../Gui/Gui.h(35): note: see declaration of 'Settings::Misc::ImGui'
Cheat\Radar\Radar.cpp(1078): error C3861: 'GetCursorScreenPos': identifier not found
Cheat\Radar\Radar.cpp(1088): error C2039: 'GetContentRegionAvail': is not a member of 'Settings::Misc::ImGui'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\../Gui/Gui.h(35): note: see declaration of 'Settings::Misc::ImGui'
Cheat\Radar\Radar.cpp(1088): error C3861: 'GetContentRegionAvail': identifier not found
Cheat\Radar\Radar.cpp(1137): error C2039: 'End': is not a member of 'Settings::Misc::ImGui'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\../Gui/Gui.h(35): note: see declaration of 'Settings::Misc::ImGui'
Cheat\Radar\Radar.cpp(1137): error C3861: 'End': identifier not found
Cheat\Radar\Radar.cpp(1142): error C2039: 'GetStyle': is not a member of 'Settings::Misc::ImGui'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\../Gui/Gui.h(35): note: see declaration of 'Settings::Misc::ImGui'
Cheat\Radar\Radar.cpp(1142): error C3861: 'GetStyle': identifier not found
Cheat\Radar\Radar.cpp(1142): error C2228: left of '.Alpha' must have class/struct/union
Cheat\Radar\Radar.cpp(1142): note: type is 'unknown-type'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\main\../Settings/Settings.h(133): fatal error C1075: the left brace '{' was unmatched at the end of the file
Misc.cpp
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(46): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(46): error C2146: syntax error: missing ';' before identifier 'headPositions'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(47): error C2143: syntax error: missing ';' before '*'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(47): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(32): error C2059: syntax error: '='
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(32): error C2238: unexpected token(s) preceding ';'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(36): error C2143: syntax error: missing ';' before '{'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(36): error C2447: '{': missing function header (old-style formal list?)
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(753): error C2039: 'unordered_map': is not a member of 'std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\sstream(12): note: see declaration of 'std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(753): error C2873: 'unordered_map': symbol cannot be used in a using-declaration
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(754): error C2039: 'unordered_multimap': is not a member of 'std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\sstream(12): note: see declaration of 'std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(754): error C2873: 'unordered_multimap': symbol cannot be used in a using-declaration
Cheat\Misc\Misc.cpp(5): error C2039: 'misc_Punch': is not a member of 'Settings::Misc'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\main\../Settings/Settings.h(132): note: see declaration of 'Settings::Misc'
Cheat\Misc\Misc.cpp(5): error C2065: 'misc_Punch': undeclared identifier
Cheat\Misc\Misc.cpp(36): error C2039: 'misc_Bhop': is not a member of 'Settings::Misc'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\main\../Settings/Settings.h(132): note: see declaration of 'Settings::Misc'
Cheat\Misc\Misc.cpp(36): error C2065: 'misc_Bhop': undeclared identifier
Cheat\Misc\Misc.cpp(48): error C2039: 'misc_spamregular': is not a member of 'Settings::Misc'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\main\../Settings/Settings.h(132): note: see declaration of 'Settings::Misc'
Cheat\Misc\Misc.cpp(48): error C2065: 'misc_spamregular': undeclared identifier
Cheat\Misc\Misc.cpp(58): error C2039: 'misc_spamrandom': is not a member of 'Settings::Misc'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\main\../Settings/Settings.h(132): note: see declaration of 'Settings::Misc'
Cheat\Misc\Misc.cpp(58): error C2065: 'misc_spamrandom': undeclared identifier
Cheat\Misc\Misc.cpp(70): error C2039: 'misc_Clan': is not a member of 'Settings::Misc'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\main\../Settings/Settings.h(132): note: see declaration of 'Settings::Misc'
Cheat\Misc\Misc.cpp(70): error C2065: 'misc_Clan': undeclared identifier
Cheat\Misc\Misc.cpp(86): error C2039: 'misc_SkyName': is not a member of 'Settings::Misc'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\main\../Settings/Settings.h(132): note: see declaration of 'Settings::Misc'
Cheat\Misc\Misc.cpp(86): error C2065: 'misc_SkyName': undeclared identifier
Cheat\Misc\Misc.cpp(95): error C2039: 'misc_NoSky': is not a member of 'Settings::Misc'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\main\../Settings/Settings.h(132): note: see declaration of 'Settings::Misc'
Cheat\Misc\Misc.cpp(95): error C2065: 'misc_NoSky': undeclared identifier
Cheat\Misc\Misc.cpp(116): error C2039: 'misc_Snow': is not a member of 'Settings::Misc'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\main\../Settings/Settings.h(132): note: see declaration of 'Settings::Misc'
Cheat\Misc\Misc.cpp(116): error C2065: 'misc_Snow': undeclared identifier
Cheat\Misc\Misc.cpp(146): error C2039: 'misc_EPostprocess': is not a member of 'Settings::Misc'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\main\../Settings/Settings.h(132): note: see declaration of 'Settings::Misc'
Cheat\Misc\Misc.cpp(146): error C2065: 'misc_EPostprocess': undeclared identifier
Cheat\Misc\Misc.cpp(173): error C2039: 'misc_AutoStrafe': is not a member of 'Settings::Misc'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\main\../Settings/Settings.h(132): note: see declaration of 'Settings::Misc'
Cheat\Misc\Misc.cpp(173): error C2065: 'misc_AutoStrafe': undeclared identifier
Cheat\Misc\Misc.cpp(230): error C2039: 'misc_ThirdPerson': is not a member of 'Settings::Misc'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\main\../Settings/Settings.h(132): note: see declaration of 'Settings::Misc'
Cheat\Misc\Misc.cpp(230): error C2065: 'misc_ThirdPerson': undeclared identifier
Cheat\Misc\Misc.cpp(239): error C2039: 'misc_ThirdPersonRange': is not a member of 'Settings::Misc'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\main\../Settings/Settings.h(132): note: see declaration of 'Settings::Misc'
Cheat\Misc\Misc.cpp(239): error C2065: 'misc_ThirdPersonRange': undeclared identifier
Cheat\Misc\Misc.cpp(243): error C2039: 'qLastTickAngle': is not a member of 'Settings::Misc'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\main\../Settings/Settings.h(132): note: see declaration of 'Settings::Misc'
Cheat\Misc\Misc.cpp(243): error C2065: 'qLastTickAngle': undeclared identifier
Cheat\Misc\Misc.cpp(289): error C2039: 'misc_NoFlash': is not a member of 'Settings::Misc'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\main\../Settings/Settings.h(132): note: see declaration of 'Settings::Misc'
Cheat\Misc\Misc.cpp(289): error C2065: 'misc_NoFlash': undeclared identifier
Cheat\Misc\Misc.cpp(335): error C2039: 'misc_NoFlash': is not a member of 'Settings::Misc'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\main\../Settings/Settings.h(132): note: see declaration of 'Settings::Misc'
Cheat\Misc\Misc.cpp(335): error C2065: 'misc_NoFlash': undeclared identifier
Cheat\Misc\Misc.cpp(390): error C2039: 'misc_AutoAccept': is not a member of 'Settings::Misc'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\main\../Settings/Settings.h(132): note: see declaration of 'Settings::Misc'
Cheat\Misc\Misc.cpp(390): error C2065: 'misc_AutoAccept': undeclared identifier
Cheat\Misc\Misc.cpp(443): error C2039: 'misc_FovChanger': is not a member of 'Settings::Misc'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\main\../Settings/Settings.h(132): note: see declaration of 'Settings::Misc'
Cheat\Misc\Misc.cpp(443): error C2065: 'misc_FovChanger': undeclared identifier
Cheat\Misc\Misc.cpp(490): error C2039: 'misc_FovView': is not a member of 'Settings::Misc'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\main\../Settings/Settings.h(132): note: see declaration of 'Settings::Misc'
Cheat\Misc\Misc.cpp(490): error C2065: 'misc_FovView': undeclared identifier
Cheat\Misc\Misc.cpp(498): error C2039: 'misc_FovChanger': is not a member of 'Settings::Misc'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\main\../Settings/Settings.h(132): note: see declaration of 'Settings::Misc'
Cheat\Misc\Misc.cpp(498): error C2065: 'misc_FovChanger': undeclared identifier
Cheat\Misc\Misc.cpp(538): error C2039: 'misc_FovModelView': is not a member of 'Settings::Misc'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\main\../Settings/Settings.h(132): note: see declaration of 'Settings::Misc'
Cheat\Misc\Misc.cpp(538): error C2065: 'misc_FovModelView': undeclared identifier
Cheat\Misc\Misc.cpp(674): error C2039: 'misc_Spectators': is not a member of 'Settings::Misc'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\main\../Settings/Settings.h(132): note: see declaration of 'Settings::Misc'
Cheat\Misc\Misc.cpp(674): error C2065: 'misc_Spectators': undeclared identifier
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\main\../Settings/Settings.h(133): fatal error C1075: the left brace '{' was unmatched at the end of the file
Knifebot.cpp
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(46): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(46): error C2146: syntax error: missing ';' before identifier 'headPositions'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(47): error C2143: syntax error: missing ';' before '*'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(47): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(32): error C2059: syntax error: '='
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(32): error C2238: unexpected token(s) preceding ';'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(36): error C2143: syntax error: missing ';' before '{'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(36): error C2447: '{': missing function header (old-style formal list?)
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(753): error C2039: 'unordered_map': is not a member of 'std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\sstream(12): note: see declaration of 'std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(753): error C2873: 'unordered_map': symbol cannot be used in a using-declaration
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(754): error C2039: 'unordered_multimap': is not a member of 'std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\sstream(12): note: see declaration of 'std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(754): error C2873: 'unordered_multimap': symbol cannot be used in a using-declaration
Cheat\Knifebot\Knifebot.cpp(5): error C3083: 'Knifebot': the symbol to the left of a '::' must be a type
Cheat\Knifebot\Knifebot.cpp(5): error C2039: 'knf_Active': is not a member of 'Settings'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\main\../Settings/Settings.h(6): note: see declaration of 'Settings'
Cheat\Knifebot\Knifebot.cpp(5): error C2065: 'knf_Active': undeclared identifier
Cheat\Knifebot\Knifebot.cpp(18): error C3083: 'Knifebot': the symbol to the left of a '::' must be a type
Cheat\Knifebot\Knifebot.cpp(18): error C2039: 'knf_Team': is not a member of 'Settings'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\main\../Settings/Settings.h(6): note: see declaration of 'Settings'
Cheat\Knifebot\Knifebot.cpp(18): error C2065: 'knf_Team': undeclared identifier
Cheat\Knifebot\Knifebot.cpp(56): error C3083: 'Knifebot': the symbol to the left of a '::' must be a type
Cheat\Knifebot\Knifebot.cpp(56): error C2039: 'knf_Attack': is not a member of 'Settings'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\main\../Settings/Settings.h(6): note: see declaration of 'Settings'
Cheat\Knifebot\Knifebot.cpp(56): error C2065: 'knf_Attack': undeclared identifier
Cheat\Knifebot\Knifebot.cpp(57): error C2050: switch expression not integral
Cheat\Knifebot\Knifebot.cpp(59): error C3083: 'Knifebot': the symbol to the left of a '::' must be a type
Cheat\Knifebot\Knifebot.cpp(59): error C2039: 'knf_DistAttack': is not a member of 'Settings'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\main\../Settings/Settings.h(6): note: see declaration of 'Settings'
Cheat\Knifebot\Knifebot.cpp(59): error C2065: 'knf_DistAttack': undeclared identifier
Cheat\Knifebot\Knifebot.cpp(62): error C3083: 'Knifebot': the symbol to the left of a '::' must be a type
Cheat\Knifebot\Knifebot.cpp(62): error C2039: 'knf_DistAttack2': is not a member of 'Settings'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\main\../Settings/Settings.h(6): note: see declaration of 'Settings'
Cheat\Knifebot\Knifebot.cpp(62): error C2065: 'knf_DistAttack2': undeclared identifier
Cheat\Knifebot\Knifebot.cpp(65): error C3083: 'Knifebot': the symbol to the left of a '::' must be a type
Cheat\Knifebot\Knifebot.cpp(65): error C2039: 'knf_DistAttack': is not a member of 'Settings'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\main\../Settings/Settings.h(6): note: see declaration of 'Settings'
Cheat\Knifebot\Knifebot.cpp(65): error C2065: 'knf_DistAttack': undeclared identifier
Cheat\Knifebot\Knifebot.cpp(84): error C3083: 'Knifebot': the symbol to the left of a '::' must be a type
Cheat\Knifebot\Knifebot.cpp(84): error C2039: 'knf_Attack': is not a member of 'Settings'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\main\../Settings/Settings.h(6): note: see declaration of 'Settings'
Cheat\Knifebot\Knifebot.cpp(84): error C2065: 'knf_Attack': undeclared identifier
Cheat\Knifebot\Knifebot.cpp(85): error C2050: switch expression not integral
Cheat\Knifebot\Knifebot.cpp(95): error C3083: 'Knifebot': the symbol to the left of a '::' must be a type
Cheat\Knifebot\Knifebot.cpp(95): error C2039: 'knf_DistAttack2': is not a member of 'Settings'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\main\../Settings/Settings.h(6): note: see declaration of 'Settings'
Cheat\Knifebot\Knifebot.cpp(95): error C2065: 'knf_DistAttack2': undeclared identifier
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\main\../Settings/Settings.h(133): fatal error C1075: the left brace '{' was unmatched at the end of the file
Esp.cpp
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(46): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(46): error C2146: syntax error: missing ';' before identifier 'headPositions'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(47): error C2143: syntax error: missing ';' before '*'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(47): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(753): error C2039: 'unordered_map': is not a member of 'std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\sstream(12): note: see declaration of 'std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(753): error C2873: 'unordered_map': symbol cannot be used in a using-declaration
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(754): error C2039: 'unordered_multimap': is not a member of 'std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\sstream(12): note: see declaration of 'std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(754): error C2873: 'unordered_multimap': symbol cannot be used in a using-declaration
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\esp\Esp.h(32): error C2059: syntax error: '='
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\esp\Esp.h(32): error C2238: unexpected token(s) preceding ';'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\esp\Esp.h(36): error C2143: syntax error: missing ';' before '{'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\esp\Esp.h(36): error C2447: '{': missing function header (old-style formal list?)
Cheat\Esp\Esp.cpp(5): error C2039: 'hitmarkerAlpha': is not a member of 'Settings::Misc'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\main\../Settings/Settings.h(132): note: see declaration of 'Settings::Misc'
Cheat\Esp\Esp.cpp(5): error C2065: 'hitmarkerAlpha': undeclared identifier
Cheat\Esp\Esp.cpp(6): error C2039: 'hitmarkerAlpha': is not a member of 'Settings::Misc'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\main\../Settings/Settings.h(132): note: see declaration of 'Settings::Misc'
Cheat\Esp\Esp.cpp(6): error C2065: 'hitmarkerAlpha': undeclared identifier
Cheat\Esp\Esp.cpp(17): error C2181: illegal else without matching if
Cheat\Esp\Esp.cpp(17): error C2039: 'hitmarkerAlpha': is not a member of 'Settings::Misc'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\main\../Settings/Settings.h(132): note: see declaration of 'Settings::Misc'
Cheat\Esp\Esp.cpp(17): error C2065: 'hitmarkerAlpha': undeclared identifier
Cheat\Esp\Esp.cpp(18): error C2039: 'hitmarkerAlpha': is not a member of 'Settings::Misc'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\main\../Settings/Settings.h(132): note: see declaration of 'Settings::Misc'
Cheat\Esp\Esp.cpp(18): error C2065: 'hitmarkerAlpha': undeclared identifier
Cheat\Esp\Esp.cpp(71): error C2039: 'hitmarkerAlpha': is not a member of 'Settings::Misc'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\main\../Settings/Settings.h(132): note: see declaration of 'Settings::Misc'
Cheat\Esp\Esp.cpp(71): error C2065: 'hitmarkerAlpha': undeclared identifier
Cheat\Esp\Esp.cpp(73): error C2039: 'hitmarkerAlpha': is not a member of 'Settings::Misc'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\main\../Settings/Settings.h(132): note: see declaration of 'Settings::Misc'
Cheat\Esp\Esp.cpp(73): error C2065: 'hitmarkerAlpha': undeclared identifier
Cheat\Esp\Esp.cpp(78): error C2039: 'hitmarkerAlpha': is not a member of 'Settings::Misc'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\main\../Settings/Settings.h(132): note: see declaration of 'Settings::Misc'
Cheat\Esp\Esp.cpp(78): error C2065: 'hitmarkerAlpha': undeclared identifier
Cheat\Esp\Esp.cpp(86): error C2039: 'hitmarkerAlpha': is not a member of 'Settings::Misc'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\main\../Settings/Settings.h(132): note: see declaration of 'Settings::Misc'
Cheat\Esp\Esp.cpp(86): error C2065: 'hitmarkerAlpha': undeclared identifier
Cheat\Esp\Esp.cpp(94): error C2039: 'hitmarkerAlpha': is not a member of 'Settings::Misc'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\main\../Settings/Settings.h(132): note: see declaration of 'Settings::Misc'
Cheat\Esp\Esp.cpp(94): error C2065: 'hitmarkerAlpha': undeclared identifier
Cheat\Esp\Esp.cpp(200): error C2065: 'CT_HP_ColorM': undeclared identifier
Cheat\Esp\Esp.cpp(200): error C2228: left of '.SetColor' must have class/struct/union
Cheat\Esp\Esp.cpp(200): note: type is 'unknown-type'
Cheat\Esp\Esp.cpp(210): error C2065: 'TT_HP_ColorM': undeclared identifier
Cheat\Esp\Esp.cpp(210): error C2228: left of '.SetColor' must have class/struct/union
Cheat\Esp\Esp.cpp(210): note: type is 'unknown-type'
Cheat\Esp\Esp.cpp(219): error C2065: 'CT_AR_ColorM': undeclared identifier
Cheat\Esp\Esp.cpp(219): error C2228: left of '.SetColor' must have class/struct/union
Cheat\Esp\Esp.cpp(219): note: type is 'unknown-type'
Cheat\Esp\Esp.cpp(230): error C2065: 'TT_AR_ColorM': undeclared identifier
Cheat\Esp\Esp.cpp(230): error C2228: left of '.SetColor' must have class/struct/union
Cheat\Esp\Esp.cpp(230): note: type is 'unknown-type'
Cheat\Esp\Esp.cpp(234): error C2065: 'visible_flat': undeclared identifier
Cheat\Esp\Esp.cpp(242): error C2065: 'visible_tex': undeclared identifier
Cheat\Esp\Esp.cpp(252): error C2065: 'hidden_flat': undeclared identifier
Cheat\Esp\Esp.cpp(260): error C2065: 'hidden_tex': undeclared identifier
Cheat\Esp\Esp.cpp(270): error C2065: 'fExplodeC4Timer': undeclared identifier
Cheat\Esp\Esp.cpp(278): error C2065: 'fC4Timer': undeclared identifier
Cheat\Esp\Esp.cpp(287): error C2039: 'GetPlayerColor': is not a member of 'Settings::Misc::CEsp'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\esp\Esp.h(28): note: see declaration of 'Settings::Misc::CEsp'
Cheat\Esp\Esp.cpp(445): error C2039: 'CheckPlayerTeam': is not a member of 'Settings::Misc::CEsp'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\esp\Esp.h(28): note: see declaration of 'Settings::Misc::CEsp'
Cheat\Esp\Esp.cpp(489): error C2039: 'OnRender': is not a member of 'Settings::Misc::CEsp'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\esp\Esp.h(28): note: see declaration of 'Settings::Misc::CEsp'
Cheat\Esp\Esp.cpp(492): error C2065: 'SoundEsp': undeclared identifier
Cheat\Esp\Esp.cpp(492): error C2228: left of '.DrawSoundEsp' must have class/struct/union
Cheat\Esp\Esp.cpp(492): note: type is 'unknown-type'
Cheat\Esp\Esp.cpp(513): error C3861: 'Hitmarker': identifier not found
Cheat\Esp\Esp.cpp(522): error C2039: 'misc_AwpAim': is not a member of 'Settings::Misc'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\main\../Settings/Settings.h(132): note: see declaration of 'Settings::Misc'
Cheat\Esp\Esp.cpp(522): error C2065: 'misc_AwpAim': undeclared identifier
Cheat\Esp\Esp.cpp(524): error C2039: 'misc_AwpAimColor': is not a member of 'Settings::Misc'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\main\../Settings/Settings.h(132): note: see declaration of 'Settings::Misc'
Cheat\Esp\Esp.cpp(524): error C2065: 'misc_AwpAimColor': undeclared identifier
Cheat\Esp\Esp.cpp(525): error C2039: 'misc_AwpAimColor': is not a member of 'Settings::Misc'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\main\../Settings/Settings.h(132): note: see declaration of 'Settings::Misc'
Cheat\Esp\Esp.cpp(525): error C2065: 'misc_AwpAimColor': undeclared identifier
Cheat\Esp\Esp.cpp(526): error C2039: 'misc_AwpAimColor': is not a member of 'Settings::Misc'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\main\../Settings/Settings.h(132): note: see declaration of 'Settings::Misc'
Cheat\Esp\Esp.cpp(526): error C2065: 'misc_AwpAimColor': undeclared identifier
Cheat\Esp\Esp.cpp(562): error C3861: 'DrawPlayerEsp': identifier not found
Cheat\Esp\Esp.cpp(573): error C3861: 'DrawPlayerSkeleton': identifier not found
Cheat\Esp\Esp.cpp(583): error C3861: 'DrawPlayerBulletTrace': identifier not found
Cheat\Esp\Esp.cpp(606): error C2065: 'fExplodeC4Timer': undeclared identifier
Cheat\Esp\Esp.cpp(608): error C2065: 'fExplodeC4Timer': undeclared identifier
Cheat\Esp\Esp.cpp(615): error C2065: 'fC4Timer': undeclared identifier
Cheat\Esp\Esp.cpp(615): error C2065: 'fExplodeC4Timer': undeclared identifier
Cheat\Esp\Esp.cpp(625): error C2065: 'fC4Timer': undeclared identifier
Cheat\Esp\Esp.cpp(626): error C2065: 'fC4Timer': undeclared identifier
Cheat\Esp\Esp.cpp(639): error C2065: 'fExplodeC4Timer': undeclared identifier
Cheat\Esp\Esp.cpp(643): error C2065: 'fC4Timer': undeclared identifier
Cheat\Esp\Esp.cpp(804): error C2039: 'max': is not a member of 'Settings::Misc::std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(14): note: see declaration of 'Settings::Misc::std'
Cheat\Esp\Esp.cpp(804): error C3861: 'CSGO_Armor': identifier not found
Cheat\Esp\Esp.cpp(804): error C2672: 'std::max': no matching overloaded function found
Cheat\Esp\Esp.cpp(804): error C2780: '_Ty std::max(std::initializer_list<_Elem>)': expects 1 arguments - 2 provided
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\algorithm(3617): note: see declaration of 'std::max'
Cheat\Esp\Esp.cpp(804): error C2780: 'const _Ty &std::max(const _Ty &,const _Ty &,_Pr) noexcept(<expr>)': expects 3 arguments - 2 provided
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\algorithm(3588): note: see declaration of 'std::max'
Cheat\Esp\Esp.cpp(1047): error C2228: left of '.simtime' must have class/struct/union
Cheat\Esp\Esp.cpp(1047): note: type is 'int'
Cheat\Esp\Esp.cpp(1049): error C2228: left of '.hitboxPos' must have class/struct/union
Cheat\Esp\Esp.cpp(1049): note: type is 'int'
Cheat\Esp\Esp.cpp(1123): error C2039: 'OnCreateMove': is not a member of 'Settings::Misc::CEsp'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\esp\Esp.h(28): note: see declaration of 'Settings::Misc::CEsp'
Cheat\Esp\Esp.cpp(1137): error C2039: 'SoundEsp': is not a member of 'Settings::Misc::CEsp'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\esp\Esp.h(28): note: see declaration of 'Settings::Misc::CEsp'
Cheat\Esp\Esp.cpp(1137): error C2228: left of '.Update' must have class/struct/union
Cheat\Esp\Esp.cpp(1143): error C2039: 'OnReset': is not a member of 'Settings::Misc::CEsp'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\esp\Esp.h(28): note: see declaration of 'Settings::Misc::CEsp'
Cheat\Esp\Esp.cpp(1145): error C2039: 'SoundEsp': is not a member of 'Settings::Misc::CEsp'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\esp\Esp.h(28): note: see declaration of 'Settings::Misc::CEsp'
Cheat\Esp\Esp.cpp(1145): error C2228: left of '.Sound' must have class/struct/union
Cheat\Esp\Esp.cpp(1145): error C2228: left of '.clear' must have class/struct/union
Cheat\Esp\Esp.cpp(1186): error C2039: 'OnEvents': is not a member of 'Settings::Misc::CEsp'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\esp\Esp.h(28): note: see declaration of 'Settings::Misc::CEsp'
Cheat\Esp\Esp.cpp(1192): error C2039: 'hitmarkerAlpha': is not a member of 'Settings::Misc'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\main\../Settings/Settings.h(132): note: see declaration of 'Settings::Misc'
Cheat\Esp\Esp.cpp(1192): error C2065: 'hitmarkerAlpha': undeclared identifier
Cheat\Esp\Esp.cpp(1208): error C2065: 'rawData': undeclared identifier
Cheat\Esp\Esp.cpp(1215): error C2065: 'pew': undeclared identifier
Cheat\Esp\Esp.cpp(1222): error C2065: 'roblox': undeclared identifier
Cheat\Esp\Esp.cpp(1229): error C2065: 'hitler_wav': undeclared identifier
Cheat\Esp\Esp.cpp(1208): error C2360: initialization of 'bjzERGZxCdyTlyi' is skipped by 'case' label
Cheat\Esp\Esp.cpp(1207): note: see declaration of 'bjzERGZxCdyTlyi'
Cheat\Esp\Esp.cpp(1208): error C2360: initialization of 'oufyDqumlBZyHFl' is skipped by 'case' label
Cheat\Esp\Esp.cpp(1206): note: see declaration of 'oufyDqumlBZyHFl'
Cheat\Esp\Esp.cpp(1208): error C2360: initialization of 'OdBiCquNNksqkMHs' is skipped by 'case' label
Cheat\Esp\Esp.cpp(1205): note: see declaration of 'OdBiCquNNksqkMHs'
Cheat\Esp\Esp.cpp(1208): error C2360: initialization of 'pLXTBqtppTLiOUeGu' is skipped by 'case' label
Cheat\Esp\Esp.cpp(1204): note: see declaration of 'pLXTBqtppTLiOUeGu'
Cheat\Esp\Esp.cpp(1208): error C2360: initialization of 'hyNlsBvzliSlDIYqw' is skipped by 'case' label
Cheat\Esp\Esp.cpp(1203): note: see declaration of 'hyNlsBvzliSlDIYqw'
Cheat\Esp\Esp.cpp(1208): error C2360: initialization of 'cGZylZOFAaGENjDwP' is skipped by 'case' label
Cheat\Esp\Esp.cpp(1202): note: see declaration of 'cGZylZOFAaGENjDwP'
Cheat\Esp\Esp.cpp(1208): error C2360: initialization of 'mwkyUvSxRTBTPDVAu' is skipped by 'case' label
Cheat\Esp\Esp.cpp(1201): note: see declaration of 'mwkyUvSxRTBTPDVAu'
Cheat\Esp\Esp.cpp(1208): error C2360: initialization of 'hEvKOUlDgLomZeAGM' is skipped by 'case' label
Cheat\Esp\Esp.cpp(1200): note: see declaration of 'hEvKOUlDgLomZeAGM'
Cheat\Esp\Esp.cpp(1208): error C2360: initialization of 'ImRvNUkfIvHeClWVmX' is skipped by 'case' label
Cheat\Esp\Esp.cpp(1199): note: see declaration of 'ImRvNUkfIvHeClWVmX'
Cheat\Esp\Esp.cpp(1215): error C2360: initialization of 'fENyDOSjopDPynjES' is skipped by 'case' label
Cheat\Esp\Esp.cpp(1214): note: see declaration of 'fENyDOSjopDPynjES'
Cheat\Esp\Esp.cpp(1215): error C2360: initialization of 'sPtroxnYYMeuVulfN' is skipped by 'case' label
Cheat\Esp\Esp.cpp(1213): note: see declaration of 'sPtroxnYYMeuVulfN'
Cheat\Esp\Esp.cpp(1215): error C2360: initialization of 'CFFrXTsPoFZIWODj' is skipped by 'case' label
Cheat\Esp\Esp.cpp(1212): note: see declaration of 'CFFrXTsPoFZIWODj'
Cheat\Esp\Esp.cpp(1196): fatal error C1003: error count exceeds 100; stopping compilation
Generating Code...
Compiling...
Aimbot.cpp
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(46): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(46): error C2146: syntax error: missing ';' before identifier 'headPositions'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(47): error C2143: syntax error: missing ';' before '*'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Backtrack\LagComp.h(47): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(32): error C2059: syntax error: '='
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(32): error C2238: unexpected token(s) preceding ';'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(36): error C2143: syntax error: missing ';' before '{'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\cheat\Esp/Esp.h(36): error C2447: '{': missing function header (old-style formal list?)
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(753): error C2039: 'unordered_map': is not a member of 'std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\sstream(12): note: see declaration of 'std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(753): error C2873: 'unordered_map': symbol cannot be used in a using-declaration
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(754): error C2039: 'unordered_multimap': is not a member of 'std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\sstream(12): note: see declaration of 'std'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\unordered_map(754): error C2873: 'unordered_multimap': symbol cannot be used in a using-declaration
Cheat\Aimbot\Aimbot.cpp(638): error C2039: 'GetPlayerColor': is not a member of 'Settings::Misc::CEsp'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\main\../Cheat/Client.h(17): note: see declaration of 'Settings::Misc::CEsp'
Cheat\Aimbot\Aimbot.cpp(638): error C2660: 'Settings::Misc::Engine::CRender::DrawFillBox': function does not take 4 arguments
Cheat\Aimbot\Aimbot.cpp(660): error C2039: 'GetPlayerColor': is not a member of 'Settings::Misc::CEsp'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\main\../Cheat/Client.h(17): note: see declaration of 'Settings::Misc::CEsp'
c:\users\user\downloads\indigo\csgo_indigo_gui\indigo_tmp\main\../Settings/Settings.h(133): fatal error C1075: the left brace '{' was unmatched at the end of the file
Generating Code...
Could Not Find C:\Users\user\Downloads\Indigo\CSGO_Indigo_GUI\INDIGO_TMP\*.lib
Could Not Find C:\Users\user\Downloads\Indigo\CSGO_Indigo_GUI\INDIGO_TMP\*.exp
Exception EFOpenError in module HexMaker.exe at 000122D2.
Cannot open file "C:\Users\user\Downloads\Indigo\CSGO_Indigo_GUI\INDIGO_TMP\Indigo.dll". The system cannot find the file specified.
--------------------------------------------------
Compile Injector [1]
--------------------------------------------------
Could Not Find C:\Users\user\Downloads\Indigo\CSGO_Indigo_GUI\INDIGO_TMP\Indigo.exe
Microsoft (R) C/C++ Optimizing Compiler Version 19.00.24210 for x86
Copyright (C) Microsoft Corporation.  All rights reserved.
Decrypt.cpp
Inject.cpp
Inject.cpp(11): fatal error C1083: Cannot open include file: 'HackBin.h': No such file or directory
License.cpp
GetProcAddressR.cpp
LoadLibraryR.cpp
Generating Code...
The system cannot find the file specified.
The system cannot find the file specified.
--------------------------------------------------
Generate Random Name
--------------------------------------------------
Rename INDIGO FILES
The system cannot find the file specified.
The system cannot find the file specified.
--------------------------------------------------
Protecting [1]
--------------------------------------------------
VMProtect Professional v 2.13.8 Copyright 2003-2014 VMProtect Software
Registered to: Luca Marcone [marconeluca@gmail.com]
[Error] Cannot open file "C:\Users\user\Downloads\Indigo\CSGO_Indigo_GUI\INDIGO_RELEASE\oW99g1QBd2Yh7si_.exe". The system cannot find the file specified
Could Not Find C:\Users\user\Downloads\Indigo\CSGO_Indigo_GUI\INDIGO_RELEASE\oW99g1QBd2Yh7si_.exe
Could Not Find C:\Users\user\Downloads\Indigo\CSGO_Indigo_GUI\INDIGO_RELEASE\oW99g1QBd2Yh7si_.map
--------------------------------------------------
Compile Finished
--------------------------------------------------
Press any key to continue . . .
What confuses me the most is that it compiles in Visual Studio, I was thinking of using msbuild or vcexpress instead.
Does anybody know what's wrong?
 
Назад
Сверху Снизу