├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── build.yml ├── .gitignore ├── .vscode ├── c_cpp_properties.json └── settings.json ├── LICENSE ├── MatchBot.sln ├── MatchBot ├── Makefile ├── MatchAdmin.cpp ├── MatchAdmin.h ├── MatchAdminMenu.cpp ├── MatchAdminMenu.h ├── MatchBot.cpp ├── MatchBot.def ├── MatchBot.h ├── MatchBot.vcxproj ├── MatchBot.vcxproj.filters ├── MatchBugFix.cpp ├── MatchBugFix.h ├── MatchCaptain.cpp ├── MatchCaptain.h ├── MatchChangeMap.cpp ├── MatchChangeMap.h ├── MatchCommand.cpp ├── MatchCommand.h ├── MatchCvarMenu.cpp ├── MatchCvarMenu.h ├── MatchLO3.cpp ├── MatchLO3.h ├── MatchLanguage.cpp ├── MatchLanguage.h ├── MatchMenu.cpp ├── MatchMenu.h ├── MatchMessage.cpp ├── MatchMessage.h ├── MatchMute.cpp ├── MatchMute.h ├── MatchPause.cpp ├── MatchPause.h ├── MatchPlayer.cpp ├── MatchPlayer.h ├── MatchReady.cpp ├── MatchReady.h ├── MatchRestrictItem.cpp ├── MatchRestrictItem.h ├── MatchRetry.cpp ├── MatchRetry.h ├── MatchRound.cpp ├── MatchRound.h ├── MatchStats.cpp ├── MatchStats.h ├── MatchTask.cpp ├── MatchTask.h ├── MatchTimer.cpp ├── MatchTimer.h ├── MatchUtil.cpp ├── MatchUtil.h ├── MatchVoteMap.cpp ├── MatchVoteMap.h ├── MatchVoteMenu.cpp ├── MatchVoteMenu.h ├── MatchVoteOvertime.cpp ├── MatchVoteOvertime.h ├── MatchVoteSwapTeam.cpp ├── MatchVoteSwapTeam.h ├── MatchVoteTeam.cpp ├── MatchVoteTeam.h ├── MatchWarmup.cpp ├── MatchWarmup.h ├── MetaDLL.cpp ├── MetaDLL.h ├── MetaEngine.cpp ├── MetaEngine.h ├── MetaMod.cpp ├── MetaMod.h ├── PostCompile.ps1 ├── ReAPI.cpp ├── ReAPI.h ├── ReGameDLL.cpp ├── ReGameDLL.h ├── include │ ├── MemScript.h │ ├── TimeFormat.h │ ├── cssdk │ │ ├── common │ │ │ ├── IGameServerData.h │ │ │ ├── IObjectContainer.h │ │ │ ├── ObjectList.h │ │ │ ├── Sequence.h │ │ │ ├── SteamCommon.h │ │ │ ├── beamdef.h │ │ │ ├── cl_entity.h │ │ │ ├── com_model.h │ │ │ ├── con_nprint.h │ │ │ ├── const.h │ │ │ ├── crc.h │ │ │ ├── cvardef.h │ │ │ ├── demo_api.h │ │ │ ├── director_cmds.h │ │ │ ├── dlight.h │ │ │ ├── dll_state.h │ │ │ ├── entity_state.h │ │ │ ├── entity_types.h │ │ │ ├── enums.h │ │ │ ├── event_api.h │ │ │ ├── event_args.h │ │ │ ├── event_flags.h │ │ │ ├── hltv.h │ │ │ ├── in_buttons.h │ │ │ ├── ivoicetweak.h │ │ │ ├── kbutton.h │ │ │ ├── mathlib.h │ │ │ ├── net_api.h │ │ │ ├── netadr.h │ │ │ ├── nowin.h │ │ │ ├── parsemsg.cpp │ │ │ ├── parsemsg.h │ │ │ ├── particledef.h │ │ │ ├── pmtrace.h │ │ │ ├── port.h │ │ │ ├── qfont.h │ │ │ ├── qlimits.h │ │ │ ├── quakedef.h │ │ │ ├── r_efx.h │ │ │ ├── r_studioint.h │ │ │ ├── ref_params.h │ │ │ ├── screenfade.h │ │ │ ├── studio_event.h │ │ │ ├── triangleapi.h │ │ │ ├── usercmd.h │ │ │ ├── vmodes.h │ │ │ ├── weaponinfo.h │ │ │ ├── winsani_in.h │ │ │ └── winsani_out.h │ │ ├── dlls │ │ │ ├── API │ │ │ │ ├── CSEntity.h │ │ │ │ ├── CSInterfaces.h │ │ │ │ ├── CSPlayer.h │ │ │ │ ├── CSPlayerItem.h │ │ │ │ └── CSPlayerWeapon.h │ │ │ ├── activity.h │ │ │ ├── activitymap.h │ │ │ ├── airtank.h │ │ │ ├── ammo.h │ │ │ ├── basemonster.h │ │ │ ├── bmodels.h │ │ │ ├── bot │ │ │ │ ├── cs_bot.h │ │ │ │ ├── cs_bot_chatter.h │ │ │ │ ├── cs_bot_manager.h │ │ │ │ └── cs_gamestate.h │ │ │ ├── buttons.h │ │ │ ├── cbase.h │ │ │ ├── cdll_dll.h │ │ │ ├── client.h │ │ │ ├── csbot_dll.h │ │ │ ├── decals.h │ │ │ ├── doors.h │ │ │ ├── effects.h │ │ │ ├── enginecallback.h │ │ │ ├── explode.h │ │ │ ├── extdef.h │ │ │ ├── extdll.h │ │ │ ├── func_break.h │ │ │ ├── func_tank.h │ │ │ ├── gamerules.h │ │ │ ├── gib.h │ │ │ ├── h_battery.h │ │ │ ├── h_cycler.h │ │ │ ├── healthkit.h │ │ │ ├── hintmessage.h │ │ │ ├── hookchains.h │ │ │ ├── hostage │ │ │ │ ├── hostage.h │ │ │ │ ├── hostage_improv.h │ │ │ │ ├── hostage_localnav.h │ │ │ │ └── hostage_states.h │ │ │ ├── items.h │ │ │ ├── lights.h │ │ │ ├── mapinfo.h │ │ │ ├── maprules.h │ │ │ ├── monsterevent.h │ │ │ ├── monsters.h │ │ │ ├── mortar.h │ │ │ ├── observer.h │ │ │ ├── pathcorner.h │ │ │ ├── plats.h │ │ │ ├── player.h │ │ │ ├── qstring.h │ │ │ ├── regamedll_api.h │ │ │ ├── regamedll_const.h │ │ │ ├── revert_saved.h │ │ │ ├── saverestore.h │ │ │ ├── schedule.h │ │ │ ├── skill.h │ │ │ ├── sound.h │ │ │ ├── spectator.h │ │ │ ├── subs.h │ │ │ ├── training_gamerules.h │ │ │ ├── trains.h │ │ │ ├── triggers.h │ │ │ ├── unisignals.h │ │ │ ├── util.h │ │ │ ├── vector.h │ │ │ ├── vehicle.h │ │ │ ├── weapons.h │ │ │ ├── weapontype.h │ │ │ └── wpn_shared.h │ │ ├── engine │ │ │ ├── FlightRecorder.h │ │ │ ├── IMessageManager.h │ │ │ ├── Sequence.h │ │ │ ├── archtypes.h │ │ │ ├── bspfile.h │ │ │ ├── cmd_rehlds.h │ │ │ ├── common_rehlds.h │ │ │ ├── crc32c.cpp │ │ │ ├── crc32c.h │ │ │ ├── custom.h │ │ │ ├── customentity.h │ │ │ ├── d_local.h │ │ │ ├── edict.h │ │ │ ├── eiface.h │ │ │ ├── keydefs.h │ │ │ ├── maintypes.h │ │ │ ├── model.h │ │ │ ├── modelgen.h │ │ │ ├── osconfig.h │ │ │ ├── pr_dlls.h │ │ │ ├── progdefs.h │ │ │ ├── progs.h │ │ │ ├── rehlds_api.h │ │ │ ├── rehlds_interfaces.h │ │ │ ├── shake.h │ │ │ ├── spritegn.h │ │ │ ├── static_map.h │ │ │ ├── studio.h │ │ │ ├── sys_shared.cpp │ │ │ ├── sys_shared.h │ │ │ └── userid_rehlds.h │ │ ├── game_shared │ │ │ ├── GameEvent.h │ │ │ ├── bitvec.h │ │ │ ├── bot │ │ │ │ ├── bot.h │ │ │ │ ├── bot_constants.h │ │ │ │ ├── bot_manager.h │ │ │ │ ├── bot_profile.h │ │ │ │ ├── bot_util.h │ │ │ │ ├── improv.h │ │ │ │ ├── nav.h │ │ │ │ ├── nav_area.h │ │ │ │ ├── nav_node.h │ │ │ │ ├── nav_path.h │ │ │ │ └── simple_state_machine.h │ │ │ ├── perf_counter.h │ │ │ ├── shared_util.h │ │ │ ├── simple_checksum.h │ │ │ ├── steam_util.h │ │ │ ├── voice_common.h │ │ │ └── voice_gamemgr.h │ │ ├── pm_shared │ │ │ ├── pm_defs.h │ │ │ ├── pm_info.h │ │ │ ├── pm_materials.h │ │ │ ├── pm_movevars.h │ │ │ └── pm_shared.h │ │ └── public │ │ │ ├── FileSystem.h │ │ │ ├── basetypes.h │ │ │ ├── commonmacros.h │ │ │ ├── interface.cpp │ │ │ ├── interface.h │ │ │ ├── strtools.h │ │ │ ├── tier0 │ │ │ ├── dbg.cpp │ │ │ ├── dbg.h │ │ │ └── platform.h │ │ │ ├── utlarray.h │ │ │ ├── utlmemory.h │ │ │ └── utlvector.h │ └── metamod │ │ ├── dllapi.h │ │ ├── engine_api.h │ │ ├── enginecallbacks.h │ │ ├── h_export.h │ │ ├── meta_api.h │ │ ├── mutil.h │ │ └── plinfo.h ├── precompiled.cpp └── precompiled.h ├── README.md └── cstrike ├── addons ├── hitboxfixer │ └── hbf.cfg ├── matchbot │ ├── admin_help.html │ ├── cfg │ │ ├── end.cfg │ │ ├── esl-ot.cfg │ │ ├── esl.cfg │ │ ├── halftime.cfg │ │ ├── matchbot.cfg │ │ ├── start.cfg │ │ └── warmup.cfg │ ├── commands.txt │ ├── cvars.txt │ ├── language.txt │ ├── maplist.txt │ ├── users.txt │ └── users_help.html ├── metamod │ ├── config.ini │ └── plugins.ini └── spread │ └── spread.cfg ├── liblist.gam ├── rehlds.cfg └── server.cfg /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/LICENSE -------------------------------------------------------------------------------- /MatchBot.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot.sln -------------------------------------------------------------------------------- /MatchBot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/Makefile -------------------------------------------------------------------------------- /MatchBot/MatchAdmin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/MatchAdmin.cpp -------------------------------------------------------------------------------- /MatchBot/MatchAdmin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/MatchAdmin.h -------------------------------------------------------------------------------- /MatchBot/MatchAdminMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/MatchAdminMenu.cpp -------------------------------------------------------------------------------- /MatchBot/MatchAdminMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/MatchAdminMenu.h -------------------------------------------------------------------------------- /MatchBot/MatchBot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/MatchBot.cpp -------------------------------------------------------------------------------- /MatchBot/MatchBot.def: -------------------------------------------------------------------------------- 1 | LIBRARY MatchBot_mm 2 | 3 | EXPORTS 4 | 5 | GiveFnptrsToDll @1 6 | 7 | SECTIONS 8 | 9 | .data READ WRITE 10 | 11 | -------------------------------------------------------------------------------- /MatchBot/MatchBot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/MatchBot.h -------------------------------------------------------------------------------- /MatchBot/MatchBot.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/MatchBot.vcxproj -------------------------------------------------------------------------------- /MatchBot/MatchBot.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/MatchBot.vcxproj.filters -------------------------------------------------------------------------------- /MatchBot/MatchBugFix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/MatchBugFix.cpp -------------------------------------------------------------------------------- /MatchBot/MatchBugFix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/MatchBugFix.h -------------------------------------------------------------------------------- /MatchBot/MatchCaptain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/MatchCaptain.cpp -------------------------------------------------------------------------------- /MatchBot/MatchCaptain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/MatchCaptain.h -------------------------------------------------------------------------------- /MatchBot/MatchChangeMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/MatchChangeMap.cpp -------------------------------------------------------------------------------- /MatchBot/MatchChangeMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/MatchChangeMap.h -------------------------------------------------------------------------------- /MatchBot/MatchCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/MatchCommand.cpp -------------------------------------------------------------------------------- /MatchBot/MatchCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/MatchCommand.h -------------------------------------------------------------------------------- /MatchBot/MatchCvarMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/MatchCvarMenu.cpp -------------------------------------------------------------------------------- /MatchBot/MatchCvarMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/MatchCvarMenu.h -------------------------------------------------------------------------------- /MatchBot/MatchLO3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/MatchLO3.cpp -------------------------------------------------------------------------------- /MatchBot/MatchLO3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/MatchLO3.h -------------------------------------------------------------------------------- /MatchBot/MatchLanguage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/MatchLanguage.cpp -------------------------------------------------------------------------------- /MatchBot/MatchLanguage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/MatchLanguage.h -------------------------------------------------------------------------------- /MatchBot/MatchMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/MatchMenu.cpp -------------------------------------------------------------------------------- /MatchBot/MatchMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/MatchMenu.h -------------------------------------------------------------------------------- /MatchBot/MatchMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/MatchMessage.cpp -------------------------------------------------------------------------------- /MatchBot/MatchMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/MatchMessage.h -------------------------------------------------------------------------------- /MatchBot/MatchMute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/MatchMute.cpp -------------------------------------------------------------------------------- /MatchBot/MatchMute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/MatchMute.h -------------------------------------------------------------------------------- /MatchBot/MatchPause.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/MatchPause.cpp -------------------------------------------------------------------------------- /MatchBot/MatchPause.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/MatchPause.h -------------------------------------------------------------------------------- /MatchBot/MatchPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/MatchPlayer.cpp -------------------------------------------------------------------------------- /MatchBot/MatchPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/MatchPlayer.h -------------------------------------------------------------------------------- /MatchBot/MatchReady.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/MatchReady.cpp -------------------------------------------------------------------------------- /MatchBot/MatchReady.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/MatchReady.h -------------------------------------------------------------------------------- /MatchBot/MatchRestrictItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/MatchRestrictItem.cpp -------------------------------------------------------------------------------- /MatchBot/MatchRestrictItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/MatchRestrictItem.h -------------------------------------------------------------------------------- /MatchBot/MatchRetry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/MatchRetry.cpp -------------------------------------------------------------------------------- /MatchBot/MatchRetry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/MatchRetry.h -------------------------------------------------------------------------------- /MatchBot/MatchRound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/MatchRound.cpp -------------------------------------------------------------------------------- /MatchBot/MatchRound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/MatchRound.h -------------------------------------------------------------------------------- /MatchBot/MatchStats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/MatchStats.cpp -------------------------------------------------------------------------------- /MatchBot/MatchStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/MatchStats.h -------------------------------------------------------------------------------- /MatchBot/MatchTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/MatchTask.cpp -------------------------------------------------------------------------------- /MatchBot/MatchTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/MatchTask.h -------------------------------------------------------------------------------- /MatchBot/MatchTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/MatchTimer.cpp -------------------------------------------------------------------------------- /MatchBot/MatchTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/MatchTimer.h -------------------------------------------------------------------------------- /MatchBot/MatchUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/MatchUtil.cpp -------------------------------------------------------------------------------- /MatchBot/MatchUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/MatchUtil.h -------------------------------------------------------------------------------- /MatchBot/MatchVoteMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/MatchVoteMap.cpp -------------------------------------------------------------------------------- /MatchBot/MatchVoteMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/MatchVoteMap.h -------------------------------------------------------------------------------- /MatchBot/MatchVoteMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/MatchVoteMenu.cpp -------------------------------------------------------------------------------- /MatchBot/MatchVoteMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/MatchVoteMenu.h -------------------------------------------------------------------------------- /MatchBot/MatchVoteOvertime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/MatchVoteOvertime.cpp -------------------------------------------------------------------------------- /MatchBot/MatchVoteOvertime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/MatchVoteOvertime.h -------------------------------------------------------------------------------- /MatchBot/MatchVoteSwapTeam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/MatchVoteSwapTeam.cpp -------------------------------------------------------------------------------- /MatchBot/MatchVoteSwapTeam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/MatchVoteSwapTeam.h -------------------------------------------------------------------------------- /MatchBot/MatchVoteTeam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/MatchVoteTeam.cpp -------------------------------------------------------------------------------- /MatchBot/MatchVoteTeam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/MatchVoteTeam.h -------------------------------------------------------------------------------- /MatchBot/MatchWarmup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/MatchWarmup.cpp -------------------------------------------------------------------------------- /MatchBot/MatchWarmup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/MatchWarmup.h -------------------------------------------------------------------------------- /MatchBot/MetaDLL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/MetaDLL.cpp -------------------------------------------------------------------------------- /MatchBot/MetaDLL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/MetaDLL.h -------------------------------------------------------------------------------- /MatchBot/MetaEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/MetaEngine.cpp -------------------------------------------------------------------------------- /MatchBot/MetaEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/MetaEngine.h -------------------------------------------------------------------------------- /MatchBot/MetaMod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/MetaMod.cpp -------------------------------------------------------------------------------- /MatchBot/MetaMod.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /MatchBot/PostCompile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/PostCompile.ps1 -------------------------------------------------------------------------------- /MatchBot/ReAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/ReAPI.cpp -------------------------------------------------------------------------------- /MatchBot/ReAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/ReAPI.h -------------------------------------------------------------------------------- /MatchBot/ReGameDLL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/ReGameDLL.cpp -------------------------------------------------------------------------------- /MatchBot/ReGameDLL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/ReGameDLL.h -------------------------------------------------------------------------------- /MatchBot/include/MemScript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/MemScript.h -------------------------------------------------------------------------------- /MatchBot/include/TimeFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/TimeFormat.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/common/IGameServerData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/common/IGameServerData.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/common/IObjectContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/common/IObjectContainer.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/common/ObjectList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/common/ObjectList.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/common/Sequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/common/Sequence.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/common/SteamCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/common/SteamCommon.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/common/beamdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/common/beamdef.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/common/cl_entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/common/cl_entity.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/common/com_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/common/com_model.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/common/con_nprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/common/con_nprint.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/common/const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/common/const.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/common/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/common/crc.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/common/cvardef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/common/cvardef.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/common/demo_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/common/demo_api.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/common/director_cmds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/common/director_cmds.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/common/dlight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/common/dlight.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/common/dll_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/common/dll_state.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/common/entity_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/common/entity_state.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/common/entity_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/common/entity_types.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/common/enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/common/enums.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/common/event_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/common/event_api.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/common/event_args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/common/event_args.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/common/event_flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/common/event_flags.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/common/hltv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/common/hltv.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/common/in_buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/common/in_buttons.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/common/ivoicetweak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/common/ivoicetweak.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/common/kbutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/common/kbutton.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/common/mathlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/common/mathlib.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/common/net_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/common/net_api.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/common/netadr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/common/netadr.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/common/nowin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/common/nowin.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/common/parsemsg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/common/parsemsg.cpp -------------------------------------------------------------------------------- /MatchBot/include/cssdk/common/parsemsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/common/parsemsg.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/common/particledef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/common/particledef.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/common/pmtrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/common/pmtrace.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/common/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/common/port.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/common/qfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/common/qfont.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/common/qlimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/common/qlimits.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/common/quakedef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/common/quakedef.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/common/r_efx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/common/r_efx.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/common/r_studioint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/common/r_studioint.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/common/ref_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/common/ref_params.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/common/screenfade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/common/screenfade.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/common/studio_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/common/studio_event.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/common/triangleapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/common/triangleapi.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/common/usercmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/common/usercmd.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/common/vmodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/common/vmodes.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/common/weaponinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/common/weaponinfo.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/common/winsani_in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/common/winsani_in.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/common/winsani_out.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/common/winsani_out.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/dlls/API/CSEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/dlls/API/CSEntity.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/dlls/API/CSInterfaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/dlls/API/CSInterfaces.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/dlls/API/CSPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/dlls/API/CSPlayer.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/dlls/API/CSPlayerItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/dlls/API/CSPlayerItem.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/dlls/API/CSPlayerWeapon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/dlls/API/CSPlayerWeapon.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/dlls/activity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/dlls/activity.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/dlls/activitymap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/dlls/activitymap.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/dlls/airtank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/dlls/airtank.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/dlls/ammo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/dlls/ammo.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/dlls/basemonster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/dlls/basemonster.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/dlls/bmodels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/dlls/bmodels.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/dlls/bot/cs_bot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/dlls/bot/cs_bot.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/dlls/bot/cs_bot_chatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/dlls/bot/cs_bot_chatter.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/dlls/bot/cs_bot_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/dlls/bot/cs_bot_manager.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/dlls/bot/cs_gamestate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/dlls/bot/cs_gamestate.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/dlls/buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/dlls/buttons.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/dlls/cbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/dlls/cbase.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/dlls/cdll_dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/dlls/cdll_dll.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/dlls/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/dlls/client.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/dlls/csbot_dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/dlls/csbot_dll.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/dlls/decals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/dlls/decals.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/dlls/doors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/dlls/doors.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/dlls/effects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/dlls/effects.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/dlls/enginecallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/dlls/enginecallback.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/dlls/explode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/dlls/explode.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/dlls/extdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/dlls/extdef.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/dlls/extdll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/dlls/extdll.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/dlls/func_break.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/dlls/func_break.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/dlls/func_tank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/dlls/func_tank.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/dlls/gamerules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/dlls/gamerules.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/dlls/gib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/dlls/gib.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/dlls/h_battery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/dlls/h_battery.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/dlls/h_cycler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/dlls/h_cycler.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/dlls/healthkit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/dlls/healthkit.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/dlls/hintmessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/dlls/hintmessage.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/dlls/hookchains.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/dlls/hookchains.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/dlls/hostage/hostage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/dlls/hostage/hostage.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/dlls/hostage/hostage_improv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/dlls/hostage/hostage_improv.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/dlls/hostage/hostage_localnav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/dlls/hostage/hostage_localnav.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/dlls/hostage/hostage_states.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/dlls/hostage/hostage_states.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/dlls/items.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/dlls/items.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/dlls/lights.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/dlls/lights.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/dlls/mapinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/dlls/mapinfo.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/dlls/maprules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/dlls/maprules.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/dlls/monsterevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/dlls/monsterevent.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/dlls/monsters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/dlls/monsters.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/dlls/mortar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/dlls/mortar.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/dlls/observer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/dlls/observer.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/dlls/pathcorner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/dlls/pathcorner.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/dlls/plats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/dlls/plats.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/dlls/player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/dlls/player.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/dlls/qstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/dlls/qstring.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/dlls/regamedll_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/dlls/regamedll_api.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/dlls/regamedll_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/dlls/regamedll_const.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/dlls/revert_saved.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/dlls/revert_saved.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/dlls/saverestore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/dlls/saverestore.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/dlls/schedule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/dlls/schedule.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/dlls/skill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/dlls/skill.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/dlls/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/dlls/sound.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/dlls/spectator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/dlls/spectator.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/dlls/subs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/dlls/subs.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/dlls/training_gamerules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/dlls/training_gamerules.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/dlls/trains.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/dlls/trains.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/dlls/triggers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/dlls/triggers.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/dlls/unisignals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/dlls/unisignals.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/dlls/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/dlls/util.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/dlls/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/dlls/vector.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/dlls/vehicle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/dlls/vehicle.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/dlls/weapons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/dlls/weapons.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/dlls/weapontype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/dlls/weapontype.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/dlls/wpn_shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/dlls/wpn_shared.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/engine/FlightRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/engine/FlightRecorder.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/engine/IMessageManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/engine/IMessageManager.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/engine/Sequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/engine/Sequence.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/engine/archtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/engine/archtypes.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/engine/bspfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/engine/bspfile.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/engine/cmd_rehlds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/engine/cmd_rehlds.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/engine/common_rehlds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/engine/common_rehlds.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/engine/crc32c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/engine/crc32c.cpp -------------------------------------------------------------------------------- /MatchBot/include/cssdk/engine/crc32c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/engine/crc32c.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/engine/custom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/engine/custom.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/engine/customentity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/engine/customentity.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/engine/d_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/engine/d_local.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/engine/edict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/engine/edict.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/engine/eiface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/engine/eiface.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/engine/keydefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/engine/keydefs.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/engine/maintypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/engine/maintypes.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/engine/model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/engine/model.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/engine/modelgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/engine/modelgen.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/engine/osconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/engine/osconfig.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/engine/pr_dlls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/engine/pr_dlls.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/engine/progdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/engine/progdefs.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/engine/progs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/engine/progs.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/engine/rehlds_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/engine/rehlds_api.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/engine/rehlds_interfaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/engine/rehlds_interfaces.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/engine/shake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/engine/shake.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/engine/spritegn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/engine/spritegn.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/engine/static_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/engine/static_map.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/engine/studio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/engine/studio.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/engine/sys_shared.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/engine/sys_shared.cpp -------------------------------------------------------------------------------- /MatchBot/include/cssdk/engine/sys_shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/engine/sys_shared.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/engine/userid_rehlds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/engine/userid_rehlds.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/game_shared/GameEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/game_shared/GameEvent.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/game_shared/bitvec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/game_shared/bitvec.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/game_shared/bot/bot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/game_shared/bot/bot.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/game_shared/bot/bot_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/game_shared/bot/bot_constants.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/game_shared/bot/bot_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/game_shared/bot/bot_manager.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/game_shared/bot/bot_profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/game_shared/bot/bot_profile.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/game_shared/bot/bot_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/game_shared/bot/bot_util.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/game_shared/bot/improv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/game_shared/bot/improv.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/game_shared/bot/nav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/game_shared/bot/nav.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/game_shared/bot/nav_area.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/game_shared/bot/nav_area.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/game_shared/bot/nav_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/game_shared/bot/nav_node.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/game_shared/bot/nav_path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/game_shared/bot/nav_path.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/game_shared/bot/simple_state_machine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/game_shared/bot/simple_state_machine.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/game_shared/perf_counter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/game_shared/perf_counter.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/game_shared/shared_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/game_shared/shared_util.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/game_shared/simple_checksum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/game_shared/simple_checksum.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/game_shared/steam_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/game_shared/steam_util.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/game_shared/voice_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/game_shared/voice_common.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/game_shared/voice_gamemgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/game_shared/voice_gamemgr.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/pm_shared/pm_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/pm_shared/pm_defs.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/pm_shared/pm_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/pm_shared/pm_info.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/pm_shared/pm_materials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/pm_shared/pm_materials.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/pm_shared/pm_movevars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/pm_shared/pm_movevars.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/pm_shared/pm_shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/pm_shared/pm_shared.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/public/FileSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/public/FileSystem.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/public/basetypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/public/basetypes.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/public/commonmacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/public/commonmacros.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/public/interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/public/interface.cpp -------------------------------------------------------------------------------- /MatchBot/include/cssdk/public/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/public/interface.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/public/strtools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/public/strtools.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/public/tier0/dbg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/public/tier0/dbg.cpp -------------------------------------------------------------------------------- /MatchBot/include/cssdk/public/tier0/dbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/public/tier0/dbg.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/public/tier0/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/public/tier0/platform.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/public/utlarray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/public/utlarray.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/public/utlmemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/public/utlmemory.h -------------------------------------------------------------------------------- /MatchBot/include/cssdk/public/utlvector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/cssdk/public/utlvector.h -------------------------------------------------------------------------------- /MatchBot/include/metamod/dllapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/metamod/dllapi.h -------------------------------------------------------------------------------- /MatchBot/include/metamod/engine_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/metamod/engine_api.h -------------------------------------------------------------------------------- /MatchBot/include/metamod/enginecallbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/metamod/enginecallbacks.h -------------------------------------------------------------------------------- /MatchBot/include/metamod/h_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/metamod/h_export.h -------------------------------------------------------------------------------- /MatchBot/include/metamod/meta_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/metamod/meta_api.h -------------------------------------------------------------------------------- /MatchBot/include/metamod/mutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/metamod/mutil.h -------------------------------------------------------------------------------- /MatchBot/include/metamod/plinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/include/metamod/plinfo.h -------------------------------------------------------------------------------- /MatchBot/precompiled.cpp: -------------------------------------------------------------------------------- 1 | #include "precompiled.h" 2 | -------------------------------------------------------------------------------- /MatchBot/precompiled.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/MatchBot/precompiled.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/README.md -------------------------------------------------------------------------------- /cstrike/addons/hitboxfixer/hbf.cfg: -------------------------------------------------------------------------------- 1 | hbf_enabled "1" 2 | hbf_debug "0" -------------------------------------------------------------------------------- /cstrike/addons/matchbot/admin_help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/cstrike/addons/matchbot/admin_help.html -------------------------------------------------------------------------------- /cstrike/addons/matchbot/cfg/end.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/cstrike/addons/matchbot/cfg/end.cfg -------------------------------------------------------------------------------- /cstrike/addons/matchbot/cfg/esl-ot.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/cstrike/addons/matchbot/cfg/esl-ot.cfg -------------------------------------------------------------------------------- /cstrike/addons/matchbot/cfg/esl.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/cstrike/addons/matchbot/cfg/esl.cfg -------------------------------------------------------------------------------- /cstrike/addons/matchbot/cfg/halftime.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/cstrike/addons/matchbot/cfg/halftime.cfg -------------------------------------------------------------------------------- /cstrike/addons/matchbot/cfg/matchbot.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/cstrike/addons/matchbot/cfg/matchbot.cfg -------------------------------------------------------------------------------- /cstrike/addons/matchbot/cfg/start.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cstrike/addons/matchbot/cfg/warmup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/cstrike/addons/matchbot/cfg/warmup.cfg -------------------------------------------------------------------------------- /cstrike/addons/matchbot/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/cstrike/addons/matchbot/commands.txt -------------------------------------------------------------------------------- /cstrike/addons/matchbot/cvars.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/cstrike/addons/matchbot/cvars.txt -------------------------------------------------------------------------------- /cstrike/addons/matchbot/language.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/cstrike/addons/matchbot/language.txt -------------------------------------------------------------------------------- /cstrike/addons/matchbot/maplist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/cstrike/addons/matchbot/maplist.txt -------------------------------------------------------------------------------- /cstrike/addons/matchbot/users.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/cstrike/addons/matchbot/users.txt -------------------------------------------------------------------------------- /cstrike/addons/matchbot/users_help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/cstrike/addons/matchbot/users_help.html -------------------------------------------------------------------------------- /cstrike/addons/metamod/config.ini: -------------------------------------------------------------------------------- 1 | clientmeta no -------------------------------------------------------------------------------- /cstrike/addons/metamod/plugins.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/cstrike/addons/metamod/plugins.ini -------------------------------------------------------------------------------- /cstrike/addons/spread/spread.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/cstrike/addons/spread/spread.cfg -------------------------------------------------------------------------------- /cstrike/liblist.gam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/cstrike/liblist.gam -------------------------------------------------------------------------------- /cstrike/rehlds.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/cstrike/rehlds.cfg -------------------------------------------------------------------------------- /cstrike/server.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmileYzn/MatchBot/HEAD/cstrike/server.cfg --------------------------------------------------------------------------------