├── .arcconfig ├── .gitattributes ├── .github ├── CONTRIBUTING.md ├── FUNDING.yml ├── ISSUE_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── ci.yml │ ├── mocktest.yml │ ├── scripting.yml │ ├── translations.yml │ └── translations_sanitycheck.yml ├── .gitignore ├── .gitmodules ├── .travis.yml ├── AMBuildScript ├── README.md ├── appveyor.yml ├── bridge └── include │ ├── BridgeAPI.h │ ├── CoreProvider.h │ ├── IExtensionBridge.h │ ├── IFileSystemBridge.h │ ├── ILogger.h │ ├── IPlayerInfoBridge.h │ ├── IProviderCallbacks.h │ ├── IScriptManager.h │ ├── IVEngineServerBridge.h │ └── LogicProvider.h ├── changelog.txt ├── configs ├── admin_groups.cfg ├── admin_levels.cfg ├── admin_overrides.cfg ├── adminmenu_cfgs.txt ├── adminmenu_custom.txt ├── adminmenu_grouping.txt ├── adminmenu_sorting.txt ├── admins.cfg ├── admins_simple.ini ├── banreasons.txt ├── cfg │ ├── sm_warmode_off.cfg │ ├── sm_warmode_on.cfg │ └── sourcemod.cfg ├── core.cfg ├── databases.cfg ├── languages.cfg ├── maplists.cfg ├── metamod │ └── sourcemod.vdf └── sql-init-scripts │ ├── mysql │ ├── clientprefs-mysql.sql │ ├── create_admins.sql │ └── update_admins_r1409.sql │ ├── pgsql │ ├── clientprefs-pgsql.sql │ └── create_admins.sql │ └── sqlite │ ├── admins-sqlite.sq3 │ ├── clientprefs-sqlite.sq3 │ ├── clientprefs-sqlite.sql │ ├── create_admins.sql │ └── update_admins-r1409.sql ├── configure.py ├── core ├── AMBuilder ├── CellRecipientFilter.h ├── ChatTriggers.cpp ├── ChatTriggers.h ├── ConCmdManager.cpp ├── ConCmdManager.h ├── ConCommandBaseIterator.h ├── ConVarManager.cpp ├── ConVarManager.h ├── ConsoleDetours.cpp ├── ConsoleDetours.h ├── CoreConfig.cpp ├── CoreConfig.h ├── EventManager.cpp ├── EventManager.h ├── GameHooks.cpp ├── GameHooks.h ├── HalfLife2.cpp ├── HalfLife2.h ├── Logger.cpp ├── Logger.h ├── MenuManager.cpp ├── MenuManager.h ├── MenuStyle_Base.cpp ├── MenuStyle_Base.h ├── MenuStyle_Radio.cpp ├── MenuStyle_Radio.h ├── MenuStyle_Valve.cpp ├── MenuStyle_Valve.h ├── MenuVoting.cpp ├── MenuVoting.h ├── NextMap.cpp ├── NextMap.h ├── PlayerManager.cpp ├── PlayerManager.h ├── TimerSys.cpp ├── TimerSys.h ├── UserMessagePBHelpers.h ├── UserMessages.cpp ├── UserMessages.h ├── command_args.h ├── concmd_cleaner.cpp ├── concmd_cleaner.h ├── frame_hooks.cpp ├── frame_hooks.h ├── logic │ ├── ADTFactory.cpp │ ├── ADTFactory.h │ ├── AMBuilder │ ├── AdminCache.cpp │ ├── AdminCache.h │ ├── BaseWorker.cpp │ ├── BaseWorker.h │ ├── CDataPack.cpp │ ├── CDataPack.h │ ├── CellArray.h │ ├── Database.cpp │ ├── Database.h │ ├── DatabaseConfBuilder.cpp │ ├── DatabaseConfBuilder.h │ ├── DebugReporter.cpp │ ├── DebugReporter.h │ ├── ExtensionSys.cpp │ ├── ExtensionSys.h │ ├── ForwardSys.cpp │ ├── ForwardSys.h │ ├── FrameIterator.cpp │ ├── FrameIterator.h │ ├── GameConfigs.cpp │ ├── GameConfigs.h │ ├── HandleSys.cpp │ ├── HandleSys.h │ ├── LibrarySys.cpp │ ├── LibrarySys.h │ ├── Logger.cpp │ ├── Logger.h │ ├── LumpManager.cpp │ ├── LumpManager.h │ ├── MemoryUtils.cpp │ ├── MemoryUtils.h │ ├── MersenneTwister.h │ ├── Native.h │ ├── NativeOwner.cpp │ ├── NativeOwner.h │ ├── PhraseCollection.cpp │ ├── PhraseCollection.h │ ├── PluginSys.cpp │ ├── PluginSys.h │ ├── ProfileTools.cpp │ ├── ProfileTools.h │ ├── PseudoAddrManager.cpp │ ├── PseudoAddrManager.h │ ├── RootConsoleMenu.cpp │ ├── RootConsoleMenu.h │ ├── ShareSys.cpp │ ├── ShareSys.h │ ├── TextParsers.cpp │ ├── TextParsers.h │ ├── ThreadSupport.cpp │ ├── ThreadSupport.h │ ├── Translator.cpp │ ├── Translator.h │ ├── common_logic.cpp │ ├── common_logic.h │ ├── frame_tasks.cpp │ ├── frame_tasks.h │ ├── handle_helpers.h │ ├── sm_crc32.cpp │ ├── sm_crc32.h │ ├── sm_simple_prioqueue.h │ ├── sm_symtable.h │ ├── sm_trie.cpp │ ├── sm_trie.h │ ├── smn_admin.cpp │ ├── smn_adt_array.cpp │ ├── smn_adt_stack.cpp │ ├── smn_adt_trie.cpp │ ├── smn_banning.cpp │ ├── smn_console.cpp │ ├── smn_core.cpp │ ├── smn_database.cpp │ ├── smn_datapacks.cpp │ ├── smn_entitylump.cpp │ ├── smn_entitylump.h │ ├── smn_fakenatives.cpp │ ├── smn_filesystem.cpp │ ├── smn_float.cpp │ ├── smn_functions.cpp │ ├── smn_gameconfigs.cpp │ ├── smn_halflife.cpp │ ├── smn_handles.cpp │ ├── smn_lang.cpp │ ├── smn_maplists.cpp │ ├── smn_menus.cpp │ ├── smn_players.cpp │ ├── smn_profiler.cpp │ ├── smn_sorting.cpp │ ├── smn_string.cpp │ ├── smn_textparse.cpp │ ├── smn_timers.cpp │ ├── sprintf.cpp │ ├── sprintf.h │ ├── stringutil.cpp │ ├── stringutil.h │ └── version.rc ├── logic_bridge.cpp ├── logic_bridge.h ├── provider.h ├── sm_autonatives.cpp ├── sm_autonatives.h ├── sm_convar.h ├── sm_fastlink.h ├── sm_globals.h ├── sm_memtable.h ├── sm_stringutil.cpp ├── sm_stringutil.h ├── smn_bitbuffer.cpp ├── smn_commandline.cpp ├── smn_console.cpp ├── smn_entities.cpp ├── smn_events.cpp ├── smn_halflife.cpp ├── smn_hudtext.cpp ├── smn_keyvalues.cpp ├── smn_keyvalues.h ├── smn_nextmap.cpp ├── smn_player.cpp ├── smn_protobuf.cpp ├── smn_usermsgs.cpp ├── smn_usermsgs.h ├── smn_vector.cpp ├── sourcemm_api.cpp ├── sourcemm_api.h ├── sourcemod.cpp ├── sourcemod.h ├── version.rc ├── vprof_tool.cpp └── vprof_tool.h ├── editor ├── crimson │ ├── link │ │ └── extension.sp │ ├── spec │ │ ├── sourcepawn.key │ │ └── sourcepawn.spc │ └── tools │ │ └── compile.cmd ├── geshi │ ├── create-amxx-geshi.pl │ ├── create-pawn-geshi.pl │ └── sourcepawn.php ├── npp │ ├── create-pawn-npp.pl │ └── userDefineLang.xml ├── textpad │ ├── reg_class.reg │ └── sourcepawn.syn ├── ultraedit │ └── wordfile.txt └── vim │ ├── sourcepawn.vim │ └── vim.pl ├── extensions ├── bintools │ ├── AMBuilder │ ├── CallMaker.cpp │ ├── CallMaker.h │ ├── CallWrapper.cpp │ ├── CallWrapper.h │ ├── HookWrapper.cpp │ ├── HookWrapper.h │ ├── extension.cpp │ ├── extension.h │ ├── jit_call.cpp │ ├── jit_call_x64.cpp │ ├── jit_compile.h │ ├── jit_hook.cpp │ ├── smsdk_config.h │ ├── version.rc │ └── x64_macros.h ├── clientprefs │ ├── AMBuilder │ ├── cookie.cpp │ ├── cookie.h │ ├── extension.cpp │ ├── extension.h │ ├── menus.cpp │ ├── menus.h │ ├── natives.cpp │ ├── query.cpp │ ├── query.h │ ├── smsdk_config.h │ └── version.rc ├── cstrike │ ├── AMBuilder │ ├── RegNatives.cpp │ ├── RegNatives.h │ ├── extension.cpp │ ├── extension.h │ ├── forwards.cpp │ ├── forwards.h │ ├── itemdef-hash.h │ ├── natives.cpp │ ├── rulesfix.cpp │ ├── rulesfix.h │ ├── smsdk_config.h │ ├── timeleft.cpp │ ├── timeleft.h │ ├── util_cstrike.cpp │ ├── util_cstrike.h │ └── version.rc ├── curl │ ├── AMBuilder │ ├── curl-src │ │ ├── CHANGES │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README │ │ ├── RELEASE-NOTES │ │ ├── acinclude.m4 │ │ ├── aclocal.m4 │ │ ├── buildconf │ │ ├── buildconf.bat │ │ ├── compile │ │ ├── config.guess │ │ ├── config.sub │ │ ├── configure │ │ ├── configure.ac │ │ ├── curl-config.in │ │ ├── curl-style.el │ │ ├── depcomp │ │ ├── docs │ │ │ ├── BINDINGS │ │ │ ├── BUGS │ │ │ ├── CONTRIBUTE │ │ │ ├── DISTRO-DILEMMA │ │ │ ├── FAQ │ │ │ ├── FEATURES │ │ │ ├── HISTORY │ │ │ ├── INSTALL │ │ │ ├── INSTALL.devcpp │ │ │ ├── INTERNALS │ │ │ ├── KNOWN_BUGS │ │ │ ├── LICENSE-MIXING │ │ │ ├── MANUAL │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README.netware │ │ │ ├── README.win32 │ │ │ ├── RESOURCES │ │ │ ├── SSLCERTS │ │ │ ├── THANKS │ │ │ ├── TODO │ │ │ ├── TheArtOfHttpScripting │ │ │ ├── VERSIONS │ │ │ ├── curl-config.1 │ │ │ ├── curl-config.html │ │ │ ├── curl-config.pdf │ │ │ ├── curl.1 │ │ │ ├── curl.html │ │ │ ├── curl.pdf │ │ │ ├── examples │ │ │ │ ├── 10-at-a-time.c │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.example │ │ │ │ ├── Makefile.in │ │ │ │ ├── Makefile.inc │ │ │ │ ├── Makefile.m32 │ │ │ │ ├── README │ │ │ │ ├── anyauthput.c │ │ │ │ ├── cacertinmem.c │ │ │ │ ├── certinfo.c │ │ │ │ ├── cookie_interface.c │ │ │ │ ├── curlgtk.c │ │ │ │ ├── curlx.c │ │ │ │ ├── debug.c │ │ │ │ ├── fileupload.c │ │ │ │ ├── fopen.c │ │ │ │ ├── ftpget.c │ │ │ │ ├── ftpgetresp.c │ │ │ │ ├── ftpupload.c │ │ │ │ ├── ftpuploadresume.c │ │ │ │ ├── getinfo.c │ │ │ │ ├── getinmemory.c │ │ │ │ ├── ghiper.c │ │ │ │ ├── hiperfifo.c │ │ │ │ ├── htmltidy.c │ │ │ │ ├── htmltitle.cc │ │ │ │ ├── http-post.c │ │ │ │ ├── httpcustomheader.c │ │ │ │ ├── httpput.c │ │ │ │ ├── https.c │ │ │ │ ├── makefile.dj │ │ │ │ ├── multi-app.c │ │ │ │ ├── multi-debugcallback.c │ │ │ │ ├── multi-double.c │ │ │ │ ├── multi-post.c │ │ │ │ ├── multi-single.c │ │ │ │ ├── multithread.c │ │ │ │ ├── opensslthreadlock.c │ │ │ │ ├── persistant.c │ │ │ │ ├── post-callback.c │ │ │ │ ├── postit2.c │ │ │ │ ├── sampleconv.c │ │ │ │ ├── sendrecv.c │ │ │ │ ├── sepheaders.c │ │ │ │ ├── simple.c │ │ │ │ ├── simplepost.c │ │ │ │ ├── simplessl.c │ │ │ │ ├── synctime.c │ │ │ │ └── threaded-ssl.c │ │ │ ├── index.html │ │ │ └── libcurl │ │ │ │ ├── ABI │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── curl_easy_cleanup.3 │ │ │ │ ├── curl_easy_cleanup.html │ │ │ │ ├── curl_easy_cleanup.pdf │ │ │ │ ├── curl_easy_duphandle.3 │ │ │ │ ├── curl_easy_duphandle.html │ │ │ │ ├── curl_easy_duphandle.pdf │ │ │ │ ├── curl_easy_escape.3 │ │ │ │ ├── curl_easy_escape.html │ │ │ │ ├── curl_easy_escape.pdf │ │ │ │ ├── curl_easy_getinfo.3 │ │ │ │ ├── curl_easy_getinfo.html │ │ │ │ ├── curl_easy_getinfo.pdf │ │ │ │ ├── curl_easy_init.3 │ │ │ │ ├── curl_easy_init.html │ │ │ │ ├── curl_easy_init.pdf │ │ │ │ ├── curl_easy_pause.3 │ │ │ │ ├── curl_easy_pause.html │ │ │ │ ├── curl_easy_pause.pdf │ │ │ │ ├── curl_easy_perform.3 │ │ │ │ ├── curl_easy_perform.html │ │ │ │ ├── curl_easy_perform.pdf │ │ │ │ ├── curl_easy_recv.3 │ │ │ │ ├── curl_easy_recv.html │ │ │ │ ├── curl_easy_recv.pdf │ │ │ │ ├── curl_easy_reset.3 │ │ │ │ ├── curl_easy_reset.html │ │ │ │ ├── curl_easy_reset.pdf │ │ │ │ ├── curl_easy_send.3 │ │ │ │ ├── curl_easy_send.html │ │ │ │ ├── curl_easy_send.pdf │ │ │ │ ├── curl_easy_setopt.3 │ │ │ │ ├── curl_easy_setopt.html │ │ │ │ ├── curl_easy_setopt.pdf │ │ │ │ ├── curl_easy_strerror.3 │ │ │ │ ├── curl_easy_strerror.html │ │ │ │ ├── curl_easy_strerror.pdf │ │ │ │ ├── curl_easy_unescape.3 │ │ │ │ ├── curl_easy_unescape.html │ │ │ │ ├── curl_easy_unescape.pdf │ │ │ │ ├── curl_escape.3 │ │ │ │ ├── curl_escape.html │ │ │ │ ├── curl_escape.pdf │ │ │ │ ├── curl_formadd.3 │ │ │ │ ├── curl_formadd.html │ │ │ │ ├── curl_formadd.pdf │ │ │ │ ├── curl_formfree.3 │ │ │ │ ├── curl_formfree.html │ │ │ │ ├── curl_formfree.pdf │ │ │ │ ├── curl_formget.3 │ │ │ │ ├── curl_formget.html │ │ │ │ ├── curl_formget.pdf │ │ │ │ ├── curl_free.3 │ │ │ │ ├── curl_free.html │ │ │ │ ├── curl_free.pdf │ │ │ │ ├── curl_getdate.3 │ │ │ │ ├── curl_getdate.html │ │ │ │ ├── curl_getdate.pdf │ │ │ │ ├── curl_getenv.3 │ │ │ │ ├── curl_getenv.html │ │ │ │ ├── curl_getenv.pdf │ │ │ │ ├── curl_global_cleanup.3 │ │ │ │ ├── curl_global_cleanup.html │ │ │ │ ├── curl_global_cleanup.pdf │ │ │ │ ├── curl_global_init.3 │ │ │ │ ├── curl_global_init.html │ │ │ │ ├── curl_global_init.pdf │ │ │ │ ├── curl_global_init_mem.3 │ │ │ │ ├── curl_global_init_mem.html │ │ │ │ ├── curl_global_init_mem.pdf │ │ │ │ ├── curl_mprintf.3 │ │ │ │ ├── curl_mprintf.html │ │ │ │ ├── curl_mprintf.pdf │ │ │ │ ├── curl_multi_add_handle.3 │ │ │ │ ├── curl_multi_add_handle.html │ │ │ │ ├── curl_multi_add_handle.pdf │ │ │ │ ├── curl_multi_assign.3 │ │ │ │ ├── curl_multi_assign.html │ │ │ │ ├── curl_multi_assign.pdf │ │ │ │ ├── curl_multi_cleanup.3 │ │ │ │ ├── curl_multi_cleanup.html │ │ │ │ ├── curl_multi_cleanup.pdf │ │ │ │ ├── curl_multi_fdset.3 │ │ │ │ ├── curl_multi_fdset.html │ │ │ │ ├── curl_multi_fdset.pdf │ │ │ │ ├── curl_multi_info_read.3 │ │ │ │ ├── curl_multi_info_read.html │ │ │ │ ├── curl_multi_info_read.pdf │ │ │ │ ├── curl_multi_init.3 │ │ │ │ ├── curl_multi_init.html │ │ │ │ ├── curl_multi_init.pdf │ │ │ │ ├── curl_multi_perform.3 │ │ │ │ ├── curl_multi_perform.html │ │ │ │ ├── curl_multi_perform.pdf │ │ │ │ ├── curl_multi_remove_handle.3 │ │ │ │ ├── curl_multi_remove_handle.html │ │ │ │ ├── curl_multi_remove_handle.pdf │ │ │ │ ├── curl_multi_setopt.3 │ │ │ │ ├── curl_multi_setopt.html │ │ │ │ ├── curl_multi_setopt.pdf │ │ │ │ ├── curl_multi_socket.3 │ │ │ │ ├── curl_multi_socket.html │ │ │ │ ├── curl_multi_socket.pdf │ │ │ │ ├── curl_multi_strerror.3 │ │ │ │ ├── curl_multi_strerror.html │ │ │ │ ├── curl_multi_strerror.pdf │ │ │ │ ├── curl_multi_timeout.3 │ │ │ │ ├── curl_multi_timeout.html │ │ │ │ ├── curl_multi_timeout.pdf │ │ │ │ ├── curl_share_cleanup.3 │ │ │ │ ├── curl_share_cleanup.html │ │ │ │ ├── curl_share_cleanup.pdf │ │ │ │ ├── curl_share_init.3 │ │ │ │ ├── curl_share_init.html │ │ │ │ ├── curl_share_init.pdf │ │ │ │ ├── curl_share_setopt.3 │ │ │ │ ├── curl_share_setopt.html │ │ │ │ ├── curl_share_setopt.pdf │ │ │ │ ├── curl_share_strerror.3 │ │ │ │ ├── curl_share_strerror.html │ │ │ │ ├── curl_share_strerror.pdf │ │ │ │ ├── curl_slist_append.3 │ │ │ │ ├── curl_slist_append.html │ │ │ │ ├── curl_slist_append.pdf │ │ │ │ ├── curl_slist_free_all.3 │ │ │ │ ├── curl_slist_free_all.html │ │ │ │ ├── curl_slist_free_all.pdf │ │ │ │ ├── curl_strequal.3 │ │ │ │ ├── curl_strequal.html │ │ │ │ ├── curl_strequal.pdf │ │ │ │ ├── curl_unescape.3 │ │ │ │ ├── curl_unescape.html │ │ │ │ ├── curl_unescape.pdf │ │ │ │ ├── curl_version.3 │ │ │ │ ├── curl_version.html │ │ │ │ ├── curl_version.pdf │ │ │ │ ├── curl_version_info.3 │ │ │ │ ├── curl_version_info.html │ │ │ │ ├── curl_version_info.pdf │ │ │ │ ├── index.html │ │ │ │ ├── libcurl-easy.3 │ │ │ │ ├── libcurl-easy.html │ │ │ │ ├── libcurl-easy.pdf │ │ │ │ ├── libcurl-errors.3 │ │ │ │ ├── libcurl-errors.html │ │ │ │ ├── libcurl-errors.pdf │ │ │ │ ├── libcurl-multi.3 │ │ │ │ ├── libcurl-multi.html │ │ │ │ ├── libcurl-multi.pdf │ │ │ │ ├── libcurl-share.3 │ │ │ │ ├── libcurl-share.html │ │ │ │ ├── libcurl-share.pdf │ │ │ │ ├── libcurl-tutorial.3 │ │ │ │ ├── libcurl-tutorial.html │ │ │ │ ├── libcurl-tutorial.pdf │ │ │ │ ├── libcurl.3 │ │ │ │ ├── libcurl.html │ │ │ │ ├── libcurl.m4 │ │ │ │ └── libcurl.pdf │ │ ├── include │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ └── curl │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── curl.h │ │ │ │ ├── curlbuild.h │ │ │ │ ├── curlbuild.h.in │ │ │ │ ├── curlrules.h │ │ │ │ ├── curlver.h │ │ │ │ ├── easy.h │ │ │ │ ├── mprintf.h │ │ │ │ ├── multi.h │ │ │ │ ├── stdcheaders.h │ │ │ │ ├── typecheck-gcc.h │ │ │ │ └── types.h │ │ ├── install-sh │ │ ├── lib │ │ │ ├── AMBuilder │ │ │ ├── Makefile.Watcom │ │ │ ├── Makefile.am │ │ │ ├── Makefile.b32 │ │ │ ├── Makefile.in │ │ │ ├── Makefile.inc │ │ │ ├── Makefile.m32 │ │ │ ├── Makefile.netware │ │ │ ├── Makefile.riscos │ │ │ ├── Makefile.vc6 │ │ │ ├── Makefile.vc8 │ │ │ ├── README.NSS │ │ │ ├── README.ares │ │ │ ├── README.curl_off_t │ │ │ ├── README.curlx │ │ │ ├── README.encoding │ │ │ ├── README.hostip │ │ │ ├── README.httpauth │ │ │ ├── README.memoryleak │ │ │ ├── README.multi_socket │ │ │ ├── README.pipelining │ │ │ ├── amigaos.c │ │ │ ├── amigaos.h │ │ │ ├── arpa_telnet.h │ │ │ ├── base64.c │ │ │ ├── build_libcurl.sln │ │ │ ├── build_libcurl.vcproj │ │ │ ├── config-amigaos.h │ │ │ ├── config-mac.h │ │ │ ├── config-os400.h │ │ │ ├── config-riscos.h │ │ │ ├── config-sm-linux.h │ │ │ ├── config-sm-mac.h │ │ │ ├── config-symbian.h │ │ │ ├── config-tpf.h │ │ │ ├── config-win32.h │ │ │ ├── config-win32ce.h │ │ │ ├── config.dos │ │ │ ├── config.h.in │ │ │ ├── connect.c │ │ │ ├── connect.h │ │ │ ├── content_encoding.c │ │ │ ├── content_encoding.h │ │ │ ├── cookie.c │ │ │ ├── cookie.h │ │ │ ├── curl_addrinfo.c │ │ │ ├── curl_addrinfo.h │ │ │ ├── curl_base64.h │ │ │ ├── curl_ldap.h │ │ │ ├── curl_md5.h │ │ │ ├── curllib.dsp │ │ │ ├── curllib.dsw │ │ │ ├── curllib.vcproj │ │ │ ├── curlx.h │ │ │ ├── dict.c │ │ │ ├── dict.h │ │ │ ├── easy.c │ │ │ ├── easyif.h │ │ │ ├── escape.c │ │ │ ├── escape.h │ │ │ ├── file.c │ │ │ ├── file.h │ │ │ ├── firefox-db2pem.sh │ │ │ ├── formdata.c │ │ │ ├── formdata.h │ │ │ ├── ftp.c │ │ │ ├── ftp.h │ │ │ ├── getenv.c │ │ │ ├── getinfo.c │ │ │ ├── getinfo.h │ │ │ ├── gtls.c │ │ │ ├── gtls.h │ │ │ ├── hash.c │ │ │ ├── hash.h │ │ │ ├── hostares.c │ │ │ ├── hostasyn.c │ │ │ ├── hostip.c │ │ │ ├── hostip.h │ │ │ ├── hostip4.c │ │ │ ├── hostip6.c │ │ │ ├── hostsyn.c │ │ │ ├── hostthre.c │ │ │ ├── http.c │ │ │ ├── http.h │ │ │ ├── http_chunks.c │ │ │ ├── http_chunks.h │ │ │ ├── http_digest.c │ │ │ ├── http_digest.h │ │ │ ├── http_negotiate.c │ │ │ ├── http_negotiate.h │ │ │ ├── http_ntlm.c │ │ │ ├── http_ntlm.h │ │ │ ├── if2ip.c │ │ │ ├── if2ip.h │ │ │ ├── inet_ntop.c │ │ │ ├── inet_ntop.h │ │ │ ├── inet_pton.c │ │ │ ├── inet_pton.h │ │ │ ├── krb4.c │ │ │ ├── krb4.h │ │ │ ├── krb5.c │ │ │ ├── ldap.c │ │ │ ├── libcurl.framework.make │ │ │ ├── libcurl.imp │ │ │ ├── libcurl.plist │ │ │ ├── libcurl.rc │ │ │ ├── llist.c │ │ │ ├── llist.h │ │ │ ├── makefile.amiga │ │ │ ├── makefile.dj │ │ │ ├── md5.c │ │ │ ├── memdebug.c │ │ │ ├── memdebug.h │ │ │ ├── memory.h │ │ │ ├── mk-ca-bundle.pl │ │ │ ├── mprintf.c │ │ │ ├── msvcproj.foot │ │ │ ├── msvcproj.head │ │ │ ├── multi.c │ │ │ ├── multiif.h │ │ │ ├── netrc.c │ │ │ ├── netrc.h │ │ │ ├── nss.c │ │ │ ├── nssg.h │ │ │ ├── nwlib.c │ │ │ ├── nwos.c │ │ │ ├── parsedate.c │ │ │ ├── parsedate.h │ │ │ ├── progress.c │ │ │ ├── progress.h │ │ │ ├── qssl.c │ │ │ ├── qssl.h │ │ │ ├── rawstr.c │ │ │ ├── rawstr.h │ │ │ ├── security.c │ │ │ ├── select.c │ │ │ ├── select.h │ │ │ ├── sendf.c │ │ │ ├── sendf.h │ │ │ ├── setup-os400.h │ │ │ ├── setup.h │ │ │ ├── setup_once.h │ │ │ ├── share.c │ │ │ ├── share.h │ │ │ ├── sockaddr.h │ │ │ ├── socks.c │ │ │ ├── socks.h │ │ │ ├── speedcheck.c │ │ │ ├── speedcheck.h │ │ │ ├── splay.c │ │ │ ├── splay.h │ │ │ ├── ssh.c │ │ │ ├── ssh.h │ │ │ ├── sslgen.c │ │ │ ├── sslgen.h │ │ │ ├── ssluse.c │ │ │ ├── ssluse.h │ │ │ ├── strdup.c │ │ │ ├── strdup.h │ │ │ ├── strequal.c │ │ │ ├── strequal.h │ │ │ ├── strerror.c │ │ │ ├── strerror.h │ │ │ ├── strtok.c │ │ │ ├── strtok.h │ │ │ ├── strtoofft.c │ │ │ ├── strtoofft.h │ │ │ ├── telnet.c │ │ │ ├── telnet.h │ │ │ ├── tftp.c │ │ │ ├── tftp.h │ │ │ ├── timeval.c │ │ │ ├── timeval.h │ │ │ ├── transfer.c │ │ │ ├── transfer.h │ │ │ ├── url.c │ │ │ ├── url.h │ │ │ ├── urldata.h │ │ │ └── version.c │ │ ├── libcurl.pc.in │ │ ├── ltmain.sh │ │ ├── m4 │ │ │ ├── curl-compilers.m4 │ │ │ ├── curl-confopts.m4 │ │ │ ├── curl-functions.m4 │ │ │ └── curl-reentrant.m4 │ │ ├── maketgz │ │ ├── missing │ │ ├── mkinstalldirs │ │ ├── packages │ │ │ ├── AIX │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ └── RPM │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── README │ │ │ │ │ └── curl.spec.in │ │ │ ├── DOS │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── README │ │ │ │ └── common.dj │ │ │ ├── EPM │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── README │ │ │ │ └── curl.list.in │ │ │ ├── Linux │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ └── RPM │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── README │ │ │ │ │ ├── curl-ssl.spec.in │ │ │ │ │ ├── curl.spec.in │ │ │ │ │ └── make_curl_rpm │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── NetWare │ │ │ │ └── get_ver.awk │ │ │ ├── OS400 │ │ │ │ ├── README.OS400 │ │ │ │ ├── ccsidcurl.c │ │ │ │ ├── ccsidcurl.h │ │ │ │ ├── curl.inc.in │ │ │ │ ├── initscript.sh │ │ │ │ ├── make-include.sh │ │ │ │ ├── make-lib.sh │ │ │ │ ├── make-src.sh │ │ │ │ ├── make-tests.sh │ │ │ │ ├── makefile.sh │ │ │ │ ├── os400sys.c │ │ │ │ └── os400sys.h │ │ │ ├── README │ │ │ ├── Solaris │ │ │ │ ├── Makefile.am │ │ │ │ └── Makefile.in │ │ │ ├── Symbian │ │ │ │ ├── bwins │ │ │ │ │ └── libcurlu.def │ │ │ │ ├── eabi │ │ │ │ │ └── libcurlu.def │ │ │ │ ├── group │ │ │ │ │ ├── bld.inf │ │ │ │ │ ├── curl.iby │ │ │ │ │ ├── curl.mmp │ │ │ │ │ ├── curl.pkg │ │ │ │ │ ├── libcurl.iby │ │ │ │ │ ├── libcurl.mmp │ │ │ │ │ └── libcurl.pkg │ │ │ │ └── readme.txt │ │ │ ├── Win32 │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── README │ │ │ │ └── cygwin │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── README │ │ │ └── vms │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── axp │ │ │ │ └── README │ │ │ │ ├── batch_compile.com │ │ │ │ ├── build_vms.com │ │ │ │ ├── config-vms.h │ │ │ │ ├── curlmsg.h │ │ │ │ ├── curlmsg.msg │ │ │ │ ├── curlmsg.sdl │ │ │ │ ├── curlmsg_vms.h │ │ │ │ ├── defines.com │ │ │ │ ├── hpssl_alpha.opt │ │ │ │ ├── hpssl_ia64.opt │ │ │ │ ├── hpssl_vax.opt │ │ │ │ ├── ia64 │ │ │ │ └── README │ │ │ │ ├── readme │ │ │ │ └── vax │ │ │ │ └── README │ │ ├── reconf │ │ ├── sample.emacs │ │ ├── src │ │ │ ├── Makefile.Watcom │ │ │ ├── Makefile.am │ │ │ ├── Makefile.b32 │ │ │ ├── Makefile.in │ │ │ ├── Makefile.inc │ │ │ ├── Makefile.m32 │ │ │ ├── Makefile.netware │ │ │ ├── Makefile.riscos │ │ │ ├── Makefile.vc6 │ │ │ ├── Makefile.vc8 │ │ │ ├── config-amigaos.h │ │ │ ├── config-mac.h │ │ │ ├── config-riscos.h │ │ │ ├── config-win32.h │ │ │ ├── config.h.in │ │ │ ├── curl.rc │ │ │ ├── curlsrc.dsp │ │ │ ├── curlsrc.dsw │ │ │ ├── curlutil.c │ │ │ ├── curlutil.h │ │ │ ├── getpass.c │ │ │ ├── getpass.h │ │ │ ├── homedir.c │ │ │ ├── homedir.h │ │ │ ├── hugehelp.c │ │ │ ├── hugehelp.h │ │ │ ├── macos │ │ │ │ ├── MACINSTALL.TXT │ │ │ │ ├── curl.mcp.xml.sit.hqx │ │ │ │ └── src │ │ │ │ │ ├── curl_GUSIConfig.cpp │ │ │ │ │ └── macos_main.cpp │ │ │ ├── main.c │ │ │ ├── makefile.amiga │ │ │ ├── makefile.dj │ │ │ ├── mkhelp.pl │ │ │ ├── setup.h │ │ │ ├── urlglob.c │ │ │ ├── urlglob.h │ │ │ ├── version.h │ │ │ ├── writeenv.c │ │ │ ├── writeenv.h │ │ │ ├── writeout.c │ │ │ └── writeout.h │ │ ├── tests │ │ │ ├── FILEFORMAT │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── data │ │ │ │ ├── DISABLED │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── test1 │ │ │ │ ├── test10 │ │ │ │ ├── test100 │ │ │ │ ├── test1000 │ │ │ │ ├── test1001 │ │ │ │ ├── test1002 │ │ │ │ ├── test1003 │ │ │ │ ├── test1004 │ │ │ │ ├── test1005 │ │ │ │ ├── test1006 │ │ │ │ ├── test1007 │ │ │ │ ├── test1008 │ │ │ │ ├── test1009 │ │ │ │ ├── test101 │ │ │ │ ├── test1010 │ │ │ │ ├── test1011 │ │ │ │ ├── test1012 │ │ │ │ ├── test1013 │ │ │ │ ├── test1014 │ │ │ │ ├── test1015 │ │ │ │ ├── test1016 │ │ │ │ ├── test1017 │ │ │ │ ├── test1018 │ │ │ │ ├── test1019 │ │ │ │ ├── test102 │ │ │ │ ├── test1020 │ │ │ │ ├── test1021 │ │ │ │ ├── test1022 │ │ │ │ ├── test1023 │ │ │ │ ├── test1024 │ │ │ │ ├── test1025 │ │ │ │ ├── test1026 │ │ │ │ ├── test1027 │ │ │ │ ├── test1028 │ │ │ │ ├── test1029 │ │ │ │ ├── test103 │ │ │ │ ├── test1030 │ │ │ │ ├── test1031 │ │ │ │ ├── test1032 │ │ │ │ ├── test1033 │ │ │ │ ├── test1034 │ │ │ │ ├── test1035 │ │ │ │ ├── test1036 │ │ │ │ ├── test1037 │ │ │ │ ├── test1038 │ │ │ │ ├── test1039 │ │ │ │ ├── test104 │ │ │ │ ├── test1040 │ │ │ │ ├── test1041 │ │ │ │ ├── test1042 │ │ │ │ ├── test1043 │ │ │ │ ├── test1044 │ │ │ │ ├── test1045 │ │ │ │ ├── test1046 │ │ │ │ ├── test1047 │ │ │ │ ├── test1048 │ │ │ │ ├── test1049 │ │ │ │ ├── test105 │ │ │ │ ├── test1050 │ │ │ │ ├── test1051 │ │ │ │ ├── test1052 │ │ │ │ ├── test1053 │ │ │ │ ├── test1054 │ │ │ │ ├── test1055 │ │ │ │ ├── test1056 │ │ │ │ ├── test1057 │ │ │ │ ├── test1058 │ │ │ │ ├── test1059 │ │ │ │ ├── test106 │ │ │ │ ├── test1060 │ │ │ │ ├── test1061 │ │ │ │ ├── test1062 │ │ │ │ ├── test1063 │ │ │ │ ├── test1064 │ │ │ │ ├── test1065 │ │ │ │ ├── test1066 │ │ │ │ ├── test1067 │ │ │ │ ├── test1068 │ │ │ │ ├── test1069 │ │ │ │ ├── test107 │ │ │ │ ├── test1070 │ │ │ │ ├── test1071 │ │ │ │ ├── test1072 │ │ │ │ ├── test1073 │ │ │ │ ├── test1074 │ │ │ │ ├── test1075 │ │ │ │ ├── test1076 │ │ │ │ ├── test1077 │ │ │ │ ├── test1078 │ │ │ │ ├── test1079 │ │ │ │ ├── test108 │ │ │ │ ├── test1080 │ │ │ │ ├── test1081 │ │ │ │ ├── test1082 │ │ │ │ ├── test1083 │ │ │ │ ├── test1084 │ │ │ │ ├── test1085 │ │ │ │ ├── test1086 │ │ │ │ ├── test109 │ │ │ │ ├── test11 │ │ │ │ ├── test110 │ │ │ │ ├── test111 │ │ │ │ ├── test112 │ │ │ │ ├── test113 │ │ │ │ ├── test114 │ │ │ │ ├── test115 │ │ │ │ ├── test116 │ │ │ │ ├── test117 │ │ │ │ ├── test118 │ │ │ │ ├── test119 │ │ │ │ ├── test12 │ │ │ │ ├── test120 │ │ │ │ ├── test121 │ │ │ │ ├── test122 │ │ │ │ ├── test123 │ │ │ │ ├── test124 │ │ │ │ ├── test125 │ │ │ │ ├── test126 │ │ │ │ ├── test127 │ │ │ │ ├── test128 │ │ │ │ ├── test13 │ │ │ │ ├── test130 │ │ │ │ ├── test131 │ │ │ │ ├── test132 │ │ │ │ ├── test133 │ │ │ │ ├── test134 │ │ │ │ ├── test135 │ │ │ │ ├── test136 │ │ │ │ ├── test137 │ │ │ │ ├── test138 │ │ │ │ ├── test139 │ │ │ │ ├── test14 │ │ │ │ ├── test140 │ │ │ │ ├── test141 │ │ │ │ ├── test142 │ │ │ │ ├── test143 │ │ │ │ ├── test144 │ │ │ │ ├── test145 │ │ │ │ ├── test146 │ │ │ │ ├── test147 │ │ │ │ ├── test148 │ │ │ │ ├── test149 │ │ │ │ ├── test15 │ │ │ │ ├── test150 │ │ │ │ ├── test151 │ │ │ │ ├── test152 │ │ │ │ ├── test153 │ │ │ │ ├── test154 │ │ │ │ ├── test155 │ │ │ │ ├── test156 │ │ │ │ ├── test157 │ │ │ │ ├── test158 │ │ │ │ ├── test159 │ │ │ │ ├── test16 │ │ │ │ ├── test160 │ │ │ │ ├── test161 │ │ │ │ ├── test162 │ │ │ │ ├── test163 │ │ │ │ ├── test164 │ │ │ │ ├── test165 │ │ │ │ ├── test166 │ │ │ │ ├── test167 │ │ │ │ ├── test168 │ │ │ │ ├── test169 │ │ │ │ ├── test17 │ │ │ │ ├── test170 │ │ │ │ ├── test171 │ │ │ │ ├── test172 │ │ │ │ ├── test173 │ │ │ │ ├── test174 │ │ │ │ ├── test175 │ │ │ │ ├── test176 │ │ │ │ ├── test177 │ │ │ │ ├── test178 │ │ │ │ ├── test179 │ │ │ │ ├── test18 │ │ │ │ ├── test180 │ │ │ │ ├── test181 │ │ │ │ ├── test182 │ │ │ │ ├── test183 │ │ │ │ ├── test184 │ │ │ │ ├── test185 │ │ │ │ ├── test186 │ │ │ │ ├── test187 │ │ │ │ ├── test188 │ │ │ │ ├── test189 │ │ │ │ ├── test19 │ │ │ │ ├── test190 │ │ │ │ ├── test191 │ │ │ │ ├── test192 │ │ │ │ ├── test193 │ │ │ │ ├── test194 │ │ │ │ ├── test195 │ │ │ │ ├── test196 │ │ │ │ ├── test197 │ │ │ │ ├── test198 │ │ │ │ ├── test199 │ │ │ │ ├── test2 │ │ │ │ ├── test20 │ │ │ │ ├── test200 │ │ │ │ ├── test2000 │ │ │ │ ├── test2001 │ │ │ │ ├── test2002 │ │ │ │ ├── test2003 │ │ │ │ ├── test2004 │ │ │ │ ├── test201 │ │ │ │ ├── test202 │ │ │ │ ├── test203 │ │ │ │ ├── test204 │ │ │ │ ├── test205 │ │ │ │ ├── test206 │ │ │ │ ├── test207 │ │ │ │ ├── test208 │ │ │ │ ├── test209 │ │ │ │ ├── test21 │ │ │ │ ├── test210 │ │ │ │ ├── test211 │ │ │ │ ├── test212 │ │ │ │ ├── test213 │ │ │ │ ├── test214 │ │ │ │ ├── test215 │ │ │ │ ├── test216 │ │ │ │ ├── test217 │ │ │ │ ├── test218 │ │ │ │ ├── test22 │ │ │ │ ├── test220 │ │ │ │ ├── test221 │ │ │ │ ├── test222 │ │ │ │ ├── test223 │ │ │ │ ├── test224 │ │ │ │ ├── test225 │ │ │ │ ├── test226 │ │ │ │ ├── test227 │ │ │ │ ├── test228 │ │ │ │ ├── test229 │ │ │ │ ├── test23 │ │ │ │ ├── test231 │ │ │ │ ├── test233 │ │ │ │ ├── test234 │ │ │ │ ├── test235 │ │ │ │ ├── test236 │ │ │ │ ├── test237 │ │ │ │ ├── test238 │ │ │ │ ├── test239 │ │ │ │ ├── test24 │ │ │ │ ├── test240 │ │ │ │ ├── test241 │ │ │ │ ├── test242 │ │ │ │ ├── test243 │ │ │ │ ├── test245 │ │ │ │ ├── test246 │ │ │ │ ├── test247 │ │ │ │ ├── test248 │ │ │ │ ├── test249 │ │ │ │ ├── test25 │ │ │ │ ├── test250 │ │ │ │ ├── test251 │ │ │ │ ├── test252 │ │ │ │ ├── test253 │ │ │ │ ├── test254 │ │ │ │ ├── test255 │ │ │ │ ├── test256 │ │ │ │ ├── test257 │ │ │ │ ├── test258 │ │ │ │ ├── test259 │ │ │ │ ├── test26 │ │ │ │ ├── test260 │ │ │ │ ├── test261 │ │ │ │ ├── test262 │ │ │ │ ├── test263 │ │ │ │ ├── test264 │ │ │ │ ├── test265 │ │ │ │ ├── test266 │ │ │ │ ├── test267 │ │ │ │ ├── test268 │ │ │ │ ├── test269 │ │ │ │ ├── test27 │ │ │ │ ├── test270 │ │ │ │ ├── test271 │ │ │ │ ├── test272 │ │ │ │ ├── test273 │ │ │ │ ├── test274 │ │ │ │ ├── test275 │ │ │ │ ├── test276 │ │ │ │ ├── test277 │ │ │ │ ├── test278 │ │ │ │ ├── test279 │ │ │ │ ├── test28 │ │ │ │ ├── test280 │ │ │ │ ├── test281 │ │ │ │ ├── test282 │ │ │ │ ├── test283 │ │ │ │ ├── test284 │ │ │ │ ├── test285 │ │ │ │ ├── test286 │ │ │ │ ├── test287 │ │ │ │ ├── test288 │ │ │ │ ├── test289 │ │ │ │ ├── test29 │ │ │ │ ├── test290 │ │ │ │ ├── test291 │ │ │ │ ├── test292 │ │ │ │ ├── test293 │ │ │ │ ├── test294 │ │ │ │ ├── test295 │ │ │ │ ├── test296 │ │ │ │ ├── test297 │ │ │ │ ├── test298 │ │ │ │ ├── test3 │ │ │ │ ├── test30 │ │ │ │ ├── test300 │ │ │ │ ├── test301 │ │ │ │ ├── test302 │ │ │ │ ├── test303 │ │ │ │ ├── test304 │ │ │ │ ├── test305 │ │ │ │ ├── test306 │ │ │ │ ├── test307 │ │ │ │ ├── test308 │ │ │ │ ├── test309 │ │ │ │ ├── test31 │ │ │ │ ├── test32 │ │ │ │ ├── test33 │ │ │ │ ├── test34 │ │ │ │ ├── test35 │ │ │ │ ├── test350 │ │ │ │ ├── test351 │ │ │ │ ├── test352 │ │ │ │ ├── test353 │ │ │ │ ├── test354 │ │ │ │ ├── test36 │ │ │ │ ├── test37 │ │ │ │ ├── test38 │ │ │ │ ├── test39 │ │ │ │ ├── test4 │ │ │ │ ├── test40 │ │ │ │ ├── test400 │ │ │ │ ├── test401 │ │ │ │ ├── test402 │ │ │ │ ├── test403 │ │ │ │ ├── test404 │ │ │ │ ├── test405 │ │ │ │ ├── test406 │ │ │ │ ├── test407 │ │ │ │ ├── test408 │ │ │ │ ├── test409 │ │ │ │ ├── test41 │ │ │ │ ├── test42 │ │ │ │ ├── test43 │ │ │ │ ├── test44 │ │ │ │ ├── test45 │ │ │ │ ├── test46 │ │ │ │ ├── test47 │ │ │ │ ├── test48 │ │ │ │ ├── test49 │ │ │ │ ├── test5 │ │ │ │ ├── test50 │ │ │ │ ├── test500 │ │ │ │ ├── test501 │ │ │ │ ├── test502 │ │ │ │ ├── test503 │ │ │ │ ├── test504 │ │ │ │ ├── test505 │ │ │ │ ├── test506 │ │ │ │ ├── test507 │ │ │ │ ├── test508 │ │ │ │ ├── test51 │ │ │ │ ├── test510 │ │ │ │ ├── test511 │ │ │ │ ├── test512 │ │ │ │ ├── test513 │ │ │ │ ├── test514 │ │ │ │ ├── test515 │ │ │ │ ├── test516 │ │ │ │ ├── test517 │ │ │ │ ├── test518 │ │ │ │ ├── test519 │ │ │ │ ├── test52 │ │ │ │ ├── test520 │ │ │ │ ├── test521 │ │ │ │ ├── test522 │ │ │ │ ├── test523 │ │ │ │ ├── test524 │ │ │ │ ├── test525 │ │ │ │ ├── test526 │ │ │ │ ├── test527 │ │ │ │ ├── test528 │ │ │ │ ├── test529 │ │ │ │ ├── test53 │ │ │ │ ├── test530 │ │ │ │ ├── test531 │ │ │ │ ├── test532 │ │ │ │ ├── test533 │ │ │ │ ├── test534 │ │ │ │ ├── test535 │ │ │ │ ├── test536 │ │ │ │ ├── test537 │ │ │ │ ├── test538 │ │ │ │ ├── test539 │ │ │ │ ├── test54 │ │ │ │ ├── test540 │ │ │ │ ├── test541 │ │ │ │ ├── test542 │ │ │ │ ├── test543 │ │ │ │ ├── test544 │ │ │ │ ├── test545 │ │ │ │ ├── test546 │ │ │ │ ├── test547 │ │ │ │ ├── test548 │ │ │ │ ├── test549 │ │ │ │ ├── test55 │ │ │ │ ├── test550 │ │ │ │ ├── test551 │ │ │ │ ├── test552 │ │ │ │ ├── test553 │ │ │ │ ├── test554 │ │ │ │ ├── test555 │ │ │ │ ├── test556 │ │ │ │ ├── test557 │ │ │ │ ├── test558 │ │ │ │ ├── test559 │ │ │ │ ├── test56 │ │ │ │ ├── test57 │ │ │ │ ├── test58 │ │ │ │ ├── test59 │ │ │ │ ├── test6 │ │ │ │ ├── test60 │ │ │ │ ├── test600 │ │ │ │ ├── test601 │ │ │ │ ├── test602 │ │ │ │ ├── test603 │ │ │ │ ├── test604 │ │ │ │ ├── test605 │ │ │ │ ├── test606 │ │ │ │ ├── test607 │ │ │ │ ├── test608 │ │ │ │ ├── test609 │ │ │ │ ├── test61 │ │ │ │ ├── test610 │ │ │ │ ├── test611 │ │ │ │ ├── test612 │ │ │ │ ├── test613 │ │ │ │ ├── test614 │ │ │ │ ├── test615 │ │ │ │ ├── test616 │ │ │ │ ├── test617 │ │ │ │ ├── test618 │ │ │ │ ├── test619 │ │ │ │ ├── test62 │ │ │ │ ├── test620 │ │ │ │ ├── test621 │ │ │ │ ├── test622 │ │ │ │ ├── test623 │ │ │ │ ├── test624 │ │ │ │ ├── test625 │ │ │ │ ├── test626 │ │ │ │ ├── test627 │ │ │ │ ├── test628 │ │ │ │ ├── test629 │ │ │ │ ├── test63 │ │ │ │ ├── test630 │ │ │ │ ├── test631 │ │ │ │ ├── test632 │ │ │ │ ├── test633 │ │ │ │ ├── test634 │ │ │ │ ├── test635 │ │ │ │ ├── test636 │ │ │ │ ├── test637 │ │ │ │ ├── test64 │ │ │ │ ├── test65 │ │ │ │ ├── test66 │ │ │ │ ├── test67 │ │ │ │ ├── test68 │ │ │ │ ├── test69 │ │ │ │ ├── test7 │ │ │ │ ├── test70 │ │ │ │ ├── test700 │ │ │ │ ├── test701 │ │ │ │ ├── test702 │ │ │ │ ├── test703 │ │ │ │ ├── test704 │ │ │ │ ├── test705 │ │ │ │ ├── test706 │ │ │ │ ├── test707 │ │ │ │ ├── test71 │ │ │ │ ├── test72 │ │ │ │ ├── test73 │ │ │ │ ├── test74 │ │ │ │ ├── test75 │ │ │ │ ├── test76 │ │ │ │ ├── test77 │ │ │ │ ├── test78 │ │ │ │ ├── test79 │ │ │ │ ├── test8 │ │ │ │ ├── test80 │ │ │ │ ├── test81 │ │ │ │ ├── test82 │ │ │ │ ├── test83 │ │ │ │ ├── test84 │ │ │ │ ├── test85 │ │ │ │ ├── test86 │ │ │ │ ├── test87 │ │ │ │ ├── test88 │ │ │ │ ├── test89 │ │ │ │ ├── test9 │ │ │ │ ├── test90 │ │ │ │ ├── test91 │ │ │ │ ├── test92 │ │ │ │ ├── test93 │ │ │ │ ├── test94 │ │ │ │ ├── test95 │ │ │ │ ├── test97 │ │ │ │ ├── test98 │ │ │ │ └── test99 │ │ │ ├── ftp.pm │ │ │ ├── ftpserver.pl │ │ │ ├── getpart.pm │ │ │ ├── httpserver.pl │ │ │ ├── httpsserver.pl │ │ │ ├── libtest │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── first.c │ │ │ │ ├── lib500.c │ │ │ │ ├── lib501.c │ │ │ │ ├── lib502.c │ │ │ │ ├── lib503.c │ │ │ │ ├── lib504.c │ │ │ │ ├── lib505.c │ │ │ │ ├── lib506.c │ │ │ │ ├── lib507.c │ │ │ │ ├── lib508.c │ │ │ │ ├── lib510.c │ │ │ │ ├── lib511.c │ │ │ │ ├── lib512.c │ │ │ │ ├── lib513.c │ │ │ │ ├── lib514.c │ │ │ │ ├── lib515.c │ │ │ │ ├── lib516.c │ │ │ │ ├── lib517.c │ │ │ │ ├── lib518.c │ │ │ │ ├── lib519.c │ │ │ │ ├── lib520.c │ │ │ │ ├── lib521.c │ │ │ │ ├── lib523.c │ │ │ │ ├── lib524.c │ │ │ │ ├── lib525.c │ │ │ │ ├── lib526.c │ │ │ │ ├── lib530.c │ │ │ │ ├── lib533.c │ │ │ │ ├── lib536.c │ │ │ │ ├── lib537.c │ │ │ │ ├── lib539.c │ │ │ │ ├── lib540.c │ │ │ │ ├── lib541.c │ │ │ │ ├── lib542.c │ │ │ │ ├── lib543.c │ │ │ │ ├── lib544.c │ │ │ │ ├── lib547.c │ │ │ │ ├── lib549.c │ │ │ │ ├── lib552.c │ │ │ │ ├── lib553.c │ │ │ │ ├── lib554.c │ │ │ │ ├── lib555.c │ │ │ │ ├── lib556.c │ │ │ │ ├── lib557.c │ │ │ │ ├── lib558.c │ │ │ │ ├── lib560.c │ │ │ │ ├── test.h │ │ │ │ ├── test1013.pl │ │ │ │ ├── test1022.pl │ │ │ │ ├── test307.pl │ │ │ │ ├── test610.pl │ │ │ │ ├── test613.pl │ │ │ │ ├── test75.pl │ │ │ │ ├── testutil.c │ │ │ │ └── testutil.h │ │ │ ├── memanalyze.pl │ │ │ ├── runtests.1 │ │ │ ├── runtests.html │ │ │ ├── runtests.pdf │ │ │ ├── runtests.pl │ │ │ ├── server │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── getpart.c │ │ │ │ ├── getpart.h │ │ │ │ ├── resolve.c │ │ │ │ ├── sockfilt.c │ │ │ │ ├── sws.c │ │ │ │ ├── testpart.c │ │ │ │ ├── tftp.h │ │ │ │ ├── tftpd.c │ │ │ │ ├── util.c │ │ │ │ └── util.h │ │ │ ├── sshhelp.pm │ │ │ ├── sshserver.pl │ │ │ ├── stunnel.pem │ │ │ ├── testcurl.1 │ │ │ ├── testcurl.html │ │ │ ├── testcurl.pdf │ │ │ ├── testcurl.pl │ │ │ └── valgrind.pm │ │ └── vc6curl.dsw │ ├── curlapi.cpp │ ├── curlapi.h │ ├── extension.cpp │ ├── extension.h │ ├── smsdk_config.h │ └── version.rc ├── dhooks │ ├── AMBuilder │ ├── DynamicHooks │ │ ├── convention.h │ │ ├── conventions │ │ │ ├── x86GccCdecl.h │ │ │ ├── x86GccThiscall.cpp │ │ │ ├── x86GccThiscall.h │ │ │ ├── x86MsCdecl.cpp │ │ │ ├── x86MsCdecl.h │ │ │ ├── x86MsFastcall.cpp │ │ │ ├── x86MsFastcall.h │ │ │ ├── x86MsStdcall.cpp │ │ │ ├── x86MsStdcall.h │ │ │ ├── x86MsThiscall.cpp │ │ │ └── x86MsThiscall.h │ │ ├── hook.cpp │ │ ├── hook.h │ │ ├── manager.cpp │ │ ├── manager.h │ │ ├── registers.cpp │ │ └── registers.h │ ├── dynhooks_sourcepawn.cpp │ ├── dynhooks_sourcepawn.h │ ├── extension.cpp │ ├── extension.h │ ├── listeners.cpp │ ├── listeners.h │ ├── natives.cpp │ ├── natives.h │ ├── sdk-hacks.h │ ├── signatures.cpp │ ├── signatures.h │ ├── smsdk_config.h │ ├── util.cpp │ ├── util.h │ ├── version.rc │ ├── vfunc_call.h │ ├── vhook.cpp │ └── vhook.h ├── geoip │ ├── AMBuilder │ ├── data-pool.c │ ├── data-pool.h │ ├── extension.cpp │ ├── extension.h │ ├── geoip_util.cpp │ ├── geoip_util.h │ ├── maxminddb-compat-util.h │ ├── maxminddb.c │ ├── maxminddb.h │ ├── maxminddb_config.h │ ├── osdefs.h │ ├── smsdk_config.h │ └── version.rc ├── mysql │ ├── AMBuilder │ ├── extension.cpp │ ├── extension.h │ ├── msvc15hack.c │ ├── mysql │ │ ├── MyBasicResults.cpp │ │ ├── MyBasicResults.h │ │ ├── MyBoundResults.cpp │ │ ├── MyBoundResults.h │ │ ├── MyDatabase.cpp │ │ ├── MyDatabase.h │ │ ├── MyDriver.cpp │ │ ├── MyDriver.h │ │ ├── MyStatement.cpp │ │ └── MyStatement.h │ ├── smsdk_config.h │ └── version.rc ├── pgsql │ ├── AMBuilder │ ├── README.md │ ├── extension.cpp │ ├── extension.h │ ├── lib_darwin │ │ ├── libpq.a │ │ └── pg_config_ext.h │ ├── lib_darwin64 │ │ ├── libpq.a │ │ └── pg_config_ext.h │ ├── lib_linux │ │ ├── libpq.a │ │ └── pg_config_ext.h │ ├── lib_linux64 │ │ ├── libpq.a │ │ └── pg_config_ext.h │ ├── lib_win │ │ ├── libpq.lib │ │ └── pg_config_ext.h │ ├── lib_win64 │ │ ├── libpq.lib │ │ └── pg_config_ext.h │ ├── libpq-fe.h │ ├── pgsql │ │ ├── PgBasicResults.cpp │ │ ├── PgBasicResults.h │ │ ├── PgDatabase.cpp │ │ ├── PgDatabase.h │ │ ├── PgDriver.cpp │ │ ├── PgDriver.h │ │ ├── PgStatement.cpp │ │ └── PgStatement.h │ ├── postgres_ext.h │ ├── smsdk_config.h │ └── version.rc ├── regex │ ├── AMBuilder │ ├── CRegEx.cpp │ ├── CRegEx.h │ ├── README.md │ ├── extension.cpp │ ├── extension.h │ ├── lib_darwin │ │ └── libpcre.a │ ├── lib_darwin64 │ │ └── libpcre.a │ ├── lib_linux │ │ └── libpcre.a │ ├── lib_linux64 │ │ └── libpcre.a │ ├── lib_win │ │ └── pcre.lib │ ├── lib_win64 │ │ └── pcre.lib │ ├── pcre.h │ ├── posix_map.h │ ├── smsdk_config.h │ └── version.rc ├── sdkhooks │ ├── AMBuilder │ ├── extension.cpp │ ├── extension.h │ ├── macros.h │ ├── natives.cpp │ ├── natives.h │ ├── smsdk_config.h │ ├── takedamageinfohack.cpp │ ├── takedamageinfohack.h │ ├── util.cpp │ ├── util.h │ └── version.rc ├── sdktools │ ├── AMBuilder │ ├── CellRecipientFilter.h │ ├── clientnatives.cpp │ ├── clientnatives.h │ ├── extension.cpp │ ├── extension.h │ ├── gamerulesnatives.cpp │ ├── gamerulesnatives.h │ ├── hooks.cpp │ ├── hooks.h │ ├── inputnatives.cpp │ ├── output.cpp │ ├── output.h │ ├── outputnatives.cpp │ ├── smsdk_config.h │ ├── teamnatives.cpp │ ├── teamnatives.h │ ├── tempents.cpp │ ├── tempents.h │ ├── tenatives.cpp │ ├── trnatives.cpp │ ├── util.h │ ├── variant-t.cpp │ ├── variant-t.h │ ├── vcallbuilder.cpp │ ├── vcallbuilder.h │ ├── vcaller.cpp │ ├── vdecoder.cpp │ ├── vdecoder.h │ ├── version.rc │ ├── vglobals.cpp │ ├── vglobals.h │ ├── vhelpers.cpp │ ├── vhelpers.h │ ├── vnatives.cpp │ ├── vnatives.h │ ├── voice.cpp │ ├── vsound.cpp │ ├── vsound.h │ └── vstringtable.cpp ├── sqlite │ ├── AMBuilder │ ├── driver │ │ ├── SqDatabase.cpp │ │ ├── SqDatabase.h │ │ ├── SqDriver.cpp │ │ ├── SqDriver.h │ │ ├── SqQuery.cpp │ │ ├── SqQuery.h │ │ ├── SqResults.cpp │ │ └── SqResults.h │ ├── extension.cpp │ ├── extension.h │ ├── smsdk_config.h │ ├── sqlite-source │ │ ├── sqlite3.c │ │ └── sqlite3.h │ └── version.rc ├── structs │ ├── IStructAbstacter.h │ ├── Makefile │ ├── Struct.cpp │ ├── Struct.h │ ├── StructHandle.cpp │ ├── StructHandle.h │ ├── StructManager.cpp │ ├── StructManager.h │ ├── extension.cpp │ ├── extension.h │ ├── msvc8 │ │ ├── structs.sln │ │ └── structs.vcproj │ ├── msvc9 │ │ ├── structs.sln │ │ └── structs.vcproj │ ├── natives.cpp │ ├── smsdk_config.h │ ├── structs.gamedata.txt │ └── structs.inc ├── tf2 │ ├── AMBuilder │ ├── RegNatives.cpp │ ├── RegNatives.h │ ├── conditions.cpp │ ├── conditions.h │ ├── criticals.cpp │ ├── criticals.h │ ├── extension.cpp │ ├── extension.h │ ├── gameplayrules.cpp │ ├── gameplayrules.h │ ├── holiday.cpp │ ├── holiday.h │ ├── natives.cpp │ ├── smsdk_config.h │ ├── teleporter.cpp │ ├── teleporter.h │ ├── util.cpp │ ├── util.h │ └── version.rc ├── topmenus │ ├── AMBuilder │ ├── TopMenu.cpp │ ├── TopMenu.h │ ├── TopMenuManager.cpp │ ├── TopMenuManager.h │ ├── extension.cpp │ ├── extension.h │ ├── smn_topmenus.cpp │ ├── smn_topmenus.h │ ├── smsdk_config.h │ └── version.rc └── updater │ ├── AMBuilder │ ├── MemoryDownloader.cpp │ ├── MemoryDownloader.h │ ├── Updater.cpp │ ├── Updater.h │ ├── extension.cpp │ ├── extension.h │ ├── md5.cpp │ ├── md5.h │ ├── smsdk_config.h │ └── version.rc ├── gamedata ├── core.games │ ├── blocklist.plugins.txt │ ├── common.games.txt │ ├── engine.bgt.txt │ ├── engine.blade.txt │ ├── engine.bms.txt │ ├── engine.contagion.txt │ ├── engine.csgo.txt │ ├── engine.css.txt │ ├── engine.darkm.txt │ ├── engine.ep1.txt │ ├── engine.ep2.txt │ ├── engine.ep2valve.txt │ ├── engine.eye.txt │ ├── engine.insurgency.txt │ ├── engine.l4d.txt │ ├── engine.l4d2.txt │ ├── engine.mcv.txt │ ├── engine.pvkii.txt │ ├── engine.sdk2013.txt │ ├── engine.swarm.txt │ ├── game.dinodday.txt │ └── master.games.txt ├── funcommands.games.txt ├── sdkhooks.games │ ├── common.games.txt │ ├── engine.blade.txt │ ├── engine.contagion.txt │ ├── engine.csgo.txt │ ├── engine.darkm.txt │ ├── engine.ep2v.txt │ ├── engine.insurgency.txt │ ├── engine.l4d.txt │ ├── engine.mcv.txt │ ├── game.ag2.txt │ ├── game.alienswarm.txt │ ├── game.aoc.txt │ ├── game.bms.txt │ ├── game.cspromod.txt │ ├── game.cstrike.txt │ ├── game.dinodday.txt │ ├── game.doi.txt │ ├── game.dystopia.txt │ ├── game.empires.txt │ ├── game.ff.txt │ ├── game.fof.txt │ ├── game.gesource.txt │ ├── game.hidden.txt │ ├── game.hl2ctf.txt │ ├── game.insurgency.txt │ ├── game.kz.txt │ ├── game.l4d2.txt │ ├── game.modularcombat.txt │ ├── game.neotokyo.txt │ ├── game.nmrih.txt │ ├── game.nucleardawn.txt │ ├── game.openfortress.txt │ ├── game.pvkii.txt │ ├── game.reactivedrop.txt │ ├── game.sgtls.txt │ ├── game.sourceforts.txt │ ├── game.synergy.txt │ ├── game.tf2classic.txt │ ├── game.zm.txt │ ├── game.zpanic.txt │ └── master.games.txt ├── sdktools.games │ ├── common.games.txt │ ├── engine.bgt.txt │ ├── engine.blade.txt │ ├── engine.contagion.txt │ ├── engine.csgo.txt │ ├── engine.css.txt │ ├── engine.darkm.txt │ ├── engine.ep1.txt │ ├── engine.ep2.txt │ ├── engine.ep2valve.txt │ ├── engine.eye.txt │ ├── engine.insurgency.txt │ ├── engine.l4d.txt │ ├── engine.l4d2.txt │ ├── engine.mcv.txt │ ├── engine.pvkii.txt │ ├── engine.sdk2013.txt │ ├── engine.swarm.txt │ ├── game.ag2.txt │ ├── game.alienswarm.txt │ ├── game.aoc.txt │ ├── game.bg2.txt │ ├── game.bms.txt │ ├── game.cspromod.txt │ ├── game.cstrike.txt │ ├── game.dinodday.txt │ ├── game.dod.txt │ ├── game.doi.txt │ ├── game.dystopia.txt │ ├── game.empires.txt │ ├── game.esmod.txt │ ├── game.fas.txt │ ├── game.ff.txt │ ├── game.fof.txt │ ├── game.gesource.txt │ ├── game.hidden.txt │ ├── game.hl2ctf.txt │ ├── game.hl2mp.txt │ ├── game.insurgency.txt │ ├── game.ios.txt │ ├── game.kz.txt │ ├── game.left4dead2.txt │ ├── game.modularcombat.txt │ ├── game.neotokyo.txt │ ├── game.nmrih.txt │ ├── game.nucleardawn.txt │ ├── game.obsidian.txt │ ├── game.openfortress.txt │ ├── game.pvkii.txt │ ├── game.reactivedrop.txt │ ├── game.rnlbeta.txt │ ├── game.ship.txt │ ├── game.sourceforts.txt │ ├── game.synergy.txt │ ├── game.tf.txt │ ├── game.tf2classic.txt │ ├── game.zm.txt │ ├── game.zpanic.txt │ └── master.games.txt ├── sm-cstrike.games │ ├── game.csgo.txt │ ├── game.css.txt │ └── master.games.txt └── sm-tf2.games.txt ├── licenses ├── GPLv2.txt ├── GPLv3.txt └── LICENSE.txt ├── loader ├── AMBuilder ├── loader.cpp └── version.rc ├── plugins ├── AMBuilder ├── admin-flatfile.sp ├── admin-flatfile │ ├── admin-groups.sp │ ├── admin-overrides.sp │ ├── admin-simple.sp │ └── admin-users.sp ├── admin-sql-prefetch.sp ├── admin-sql-threaded.sp ├── adminhelp.sp ├── adminmenu.sp ├── adminmenu │ └── dynamicmenu.sp ├── antiflood.sp ├── basebans.sp ├── basebans │ └── ban.sp ├── basechat.sp ├── basecomm.sp ├── basecomm │ ├── forwards.sp │ ├── gag.sp │ └── natives.sp ├── basecommands.sp ├── basecommands │ ├── cancelvote.sp │ ├── execcfg.sp │ ├── kick.sp │ ├── map.sp │ ├── reloadadmins.sp │ └── who.sp ├── basetriggers.sp ├── basevotes.sp ├── basevotes │ ├── voteban.sp │ ├── votekick.sp │ └── votemap.sp ├── clientprefs.sp ├── compile.sh ├── funcommands.sp ├── funcommands │ ├── beacon.sp │ ├── blind.sp │ ├── drug.sp │ ├── fire.sp │ ├── gravity.sp │ ├── ice.sp │ ├── noclip.sp │ └── timebomb.sp ├── funvotes.sp ├── funvotes │ ├── votealltalk.sp │ ├── voteburn.sp │ ├── voteff.sp │ ├── votegravity.sp │ └── voteslay.sp ├── include │ ├── admin.inc │ ├── adminmenu.inc │ ├── adt.inc │ ├── adt_array.inc │ ├── adt_stack.inc │ ├── adt_trie.inc │ ├── banning.inc │ ├── basecomm.inc │ ├── bitbuffer.inc │ ├── clientprefs.inc │ ├── clients.inc │ ├── commandfilters.inc │ ├── commandline.inc │ ├── console.inc │ ├── convars.inc │ ├── core.inc │ ├── cstrike.inc │ ├── datapack.inc │ ├── dbi.inc │ ├── dhooks.inc │ ├── entity.inc │ ├── entity_prop_stocks.inc │ ├── entitylump.inc │ ├── events.inc │ ├── files.inc │ ├── float.inc │ ├── functions.inc │ ├── geoip.inc │ ├── halflife.inc │ ├── handles.inc │ ├── helpers.inc │ ├── keyvalues.inc │ ├── lang.inc │ ├── logging.inc │ ├── mapchooser.inc │ ├── menus.inc │ ├── nextmap.inc │ ├── profiler.inc │ ├── protobuf.inc │ ├── regex.inc │ ├── sdkhooks.inc │ ├── sdktools.inc │ ├── sdktools_client.inc │ ├── sdktools_engine.inc │ ├── sdktools_entinput.inc │ ├── sdktools_entoutput.inc │ ├── sdktools_functions.inc │ ├── sdktools_gamerules.inc │ ├── sdktools_hooks.inc │ ├── sdktools_sound.inc │ ├── sdktools_stocks.inc │ ├── sdktools_stringtables.inc │ ├── sdktools_tempents.inc │ ├── sdktools_tempents_stocks.inc │ ├── sdktools_trace.inc │ ├── sdktools_variant_t.inc │ ├── sdktools_voice.inc │ ├── sorting.inc │ ├── sourcemod.inc │ ├── string.inc │ ├── testing.inc │ ├── textparse.inc │ ├── tf2.inc │ ├── tf2_stocks.inc │ ├── timers.inc │ ├── topmenus.inc │ ├── usermessages.inc │ ├── vector.inc │ ├── version.inc │ └── version.tpl ├── mapchooser.sp ├── nextmap.sp ├── nominations.sp ├── playercommands.sp ├── playercommands │ ├── rename.sp │ ├── slap.sp │ └── slay.sp ├── randomcycle.sp ├── reservedslots.sp ├── rockthevote.sp ├── sounds.sp ├── sql-admin-manager.sp └── testsuite │ ├── benchmark.sp │ ├── bug4059.sp │ ├── callfunctest.sp │ ├── capstest.sp │ ├── clientprefstest.sp │ ├── cstrike-test.sp │ ├── entitylumptest.sp │ ├── entpropelements.sp │ ├── fakenative1.sp │ ├── fakenative2.sp │ ├── filetest.sp │ ├── findmap.sp │ ├── floats.sp │ ├── fwdtest1.sp │ ├── fwdtest2.sp │ ├── gamerules-props.sp │ ├── goto_test.sp │ ├── keyvalues.sp │ ├── mapdisplayname.sp │ ├── mock │ └── test_sorting.sp │ ├── outputtest.sp │ ├── ptstest.sp │ ├── sorttest.sp │ ├── sqltest.sp │ ├── sqltest.sql │ ├── stacktest.sp │ ├── structtest.sp │ ├── tf2-test.sp │ └── tries.sp ├── product.version ├── public ├── AutoHandleRooter.h ├── CDetour │ ├── detourhelpers.h │ ├── detours.cpp │ └── detours.h ├── IADTFactory.h ├── IAdminSystem.h ├── ICellArray.h ├── IDBDriver.h ├── IExtensionSys.h ├── IForwardSys.h ├── IGameConfigs.h ├── IGameHelpers.h ├── IHandleSys.h ├── ILibrarySys.h ├── IMemoryUtils.h ├── IMenuManager.h ├── IPlayerHelpers.h ├── IPluginSys.h ├── IRootConsoleMenu.h ├── IShareSys.h ├── ISourceMod.h ├── ITextParsers.h ├── IThreader.h ├── ITimerSystem.h ├── ITranslator.h ├── IUserMessages.h ├── ReentrantList.h ├── asm │ ├── asm.c │ └── asm.h ├── compat_wrappers.h ├── doxygen │ └── SourceMod.doxyfile ├── extensions │ ├── IBinTools.h │ ├── ISDKHooks.h │ ├── ISDKTools.h │ ├── ITopMenus.h │ └── IWebternet.h ├── jit │ ├── jit_helpers.h │ └── x86 │ │ └── x86_macros.h ├── libudis86 │ ├── decode.c │ ├── decode.h │ ├── extern.h │ ├── itab.c │ ├── itab.h │ ├── syn-att.c │ ├── syn-intel.c │ ├── syn.c │ ├── syn.h │ ├── types.h │ ├── udint.h │ ├── udis86.c │ └── udis86.h ├── metamod_wrappers.h ├── mms_sample_ext │ ├── Makefile │ ├── sm_ext.cpp │ ├── sm_ext.h │ ├── sm_sdk_config.cpp │ ├── sm_sdk_config.h │ ├── stub_mm.cpp │ ├── stub_mm.h │ ├── stub_util.cpp │ └── stub_util.h ├── sample_ext │ ├── AMBuildScript │ ├── AMBuilder │ ├── Makefile │ ├── PackageScript │ ├── configure.py │ ├── extension.cpp │ ├── extension.h │ ├── msvc10 │ │ ├── sdk.sln │ │ ├── sdk.vcxproj │ │ └── sdk.vcxproj.filters │ ├── msvc12 │ │ ├── sdk.sln │ │ ├── sdk.vcxproj │ │ └── sdk.vcxproj.filters │ ├── msvc8 │ │ ├── sdk.sln │ │ └── sdk.vcproj │ ├── msvc9 │ │ ├── sdk.sln │ │ └── sdk.vcproj │ └── smsdk_config.h ├── sample_ext_nosdk │ ├── AMBuildScript │ ├── AMBuilder │ ├── PackageScript │ ├── configure.py │ ├── extension.cpp │ ├── extension.h │ └── smsdk_config.h ├── sm_argbuffer.h ├── sm_invalidparamhandler.h ├── sm_memtable.h ├── sm_namehashset.h ├── sm_platform.h ├── sm_queue.h ├── sm_stringhashmap.h ├── sm_trie_tpl.h ├── smsdk_ext.cpp ├── smsdk_ext.h ├── sourcemod_version.h └── vtable_hook_helper.h ├── pushbuild.txt ├── tools ├── batchtool │ ├── compile.cfg │ ├── compile.dpr │ ├── compile.exe │ ├── icon.rc │ ├── icon.res │ ├── pawn.ico │ ├── uFunc.pas │ ├── version.rc │ └── version.res ├── buildbot │ ├── BreakpadSymbols │ ├── PackageHelpers │ ├── PackageScript │ ├── ToolsPackageScript │ ├── Versioning │ ├── bootstrap.py │ ├── build_type │ ├── buildconfig.json │ ├── generate_headers.py │ ├── helpers.pm │ ├── package.pl │ ├── startbuild.pl │ ├── symstore.pl │ ├── trigger_full_rebuild │ └── upload_symbols.py ├── checkout-deps.ps1 ├── checkout-deps.sh ├── crc32 │ ├── build.sh │ └── main.cpp ├── entlumpparser │ ├── AMBuildScript │ ├── AMBuilder │ ├── configure.py │ └── console_main.cpp ├── gamedata_md5 │ ├── Makefile │ ├── TextParsers.cpp │ ├── TextParsers.h │ ├── main.cpp │ ├── main.h │ ├── md5.cpp │ ├── md5.h │ ├── msvc9 │ │ ├── gamedatamd5.sln │ │ └── gamedatamd5.vcproj │ ├── sm_memtable.cpp │ └── sm_memtable.h ├── gdc-psyfork │ ├── DOCS │ ├── GameConfigs.cpp │ ├── GameConfigs.h │ ├── Makefile │ ├── MemoryUtils.cpp │ ├── MemoryUtils.h │ ├── TextParsers.cpp │ ├── TextParsers.h │ ├── example-scripts │ │ ├── README.txt │ │ ├── gdc_auto.sh │ │ ├── gdc_core.sh │ │ ├── gdc_csgo.sh │ │ ├── gdc_cstrike.sh │ │ └── updatecheck.pl │ ├── gdc.cpp │ ├── gdc.h │ ├── sm_symtable.h │ └── symbols.txt ├── gdc │ ├── DOCS │ ├── GameConfigs.cpp │ ├── GameConfigs.h │ ├── Makefile │ ├── MemoryUtils.cpp │ ├── MemoryUtils.h │ ├── TextParsers.cpp │ ├── TextParsers.h │ ├── gdc.cpp │ ├── gdc.h │ ├── sm_symtable.h │ └── symbols.txt ├── ghidra_scripts │ └── makesig.py ├── ida_scripts │ ├── gcc_fpic.idc │ ├── linux_vtable_dump.idc │ ├── makesig6.idc │ ├── makesig7.idc │ └── vtable_dump.py ├── incparser │ ├── IncParser.cs │ ├── ParseWriter.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── incparser.csproj │ ├── incparser.sln │ └── sourcepawn.key.template ├── language_check │ ├── compare_translation_phrases.py │ ├── github_gql.py │ ├── requirements.txt │ ├── sanity_check.py │ └── smc_parser.py ├── pcre │ ├── 132html │ ├── AUTHORS │ ├── CMakeLists.txt │ ├── COPYING │ ├── ChangeLog │ ├── CheckMan │ ├── CleanTxt │ ├── Detrail │ ├── HACKING │ ├── INSTALL │ ├── LICENCE │ ├── Makefile.am │ ├── Makefile.in │ ├── NEWS │ ├── NON-AUTOTOOLS-BUILD │ ├── NON-UNIX-USE │ ├── PrepareRelease │ ├── README │ ├── RunGrepTest │ ├── RunTest │ ├── RunTest.bat │ ├── aclocal.m4 │ ├── cmake │ │ ├── COPYING-CMAKE-SCRIPTS │ │ ├── FindEditline.cmake │ │ ├── FindPackageHandleStandardArgs.cmake │ │ └── FindReadline.cmake │ ├── compile │ ├── config-cmake.h.in │ ├── config.guess │ ├── config.h.generic │ ├── config.h.in │ ├── config.sub │ ├── configure │ ├── configure.ac │ ├── depcomp │ ├── dftables.c │ ├── doc │ │ ├── html │ │ │ ├── index.html │ │ │ ├── pcre-config.html │ │ │ ├── pcre.html │ │ │ ├── pcre16.html │ │ │ ├── pcre_assign_jit_stack.html │ │ │ ├── pcre_compile.html │ │ │ ├── pcre_compile2.html │ │ │ ├── pcre_config.html │ │ │ ├── pcre_copy_named_substring.html │ │ │ ├── pcre_copy_substring.html │ │ │ ├── pcre_dfa_exec.html │ │ │ ├── pcre_exec.html │ │ │ ├── pcre_free_study.html │ │ │ ├── pcre_free_substring.html │ │ │ ├── pcre_free_substring_list.html │ │ │ ├── pcre_fullinfo.html │ │ │ ├── pcre_get_named_substring.html │ │ │ ├── pcre_get_stringnumber.html │ │ │ ├── pcre_get_stringtable_entries.html │ │ │ ├── pcre_get_substring.html │ │ │ ├── pcre_get_substring_list.html │ │ │ ├── pcre_jit_exec.html │ │ │ ├── pcre_jit_stack_alloc.html │ │ │ ├── pcre_jit_stack_free.html │ │ │ ├── pcre_maketables.html │ │ │ ├── pcre_pattern_to_host_byte_order.html │ │ │ ├── pcre_refcount.html │ │ │ ├── pcre_study.html │ │ │ ├── pcre_utf16_to_host_byte_order.html │ │ │ ├── pcre_version.html │ │ │ ├── pcreapi.html │ │ │ ├── pcrebuild.html │ │ │ ├── pcrecallout.html │ │ │ ├── pcrecompat.html │ │ │ ├── pcrecpp.html │ │ │ ├── pcredemo.html │ │ │ ├── pcregrep.html │ │ │ ├── pcrejit.html │ │ │ ├── pcrelimits.html │ │ │ ├── pcrematching.html │ │ │ ├── pcrepartial.html │ │ │ ├── pcrepattern.html │ │ │ ├── pcreperform.html │ │ │ ├── pcreposix.html │ │ │ ├── pcreprecompile.html │ │ │ ├── pcresample.html │ │ │ ├── pcrestack.html │ │ │ ├── pcresyntax.html │ │ │ ├── pcretest.html │ │ │ └── pcreunicode.html │ │ ├── index.html.src │ │ ├── pcre-config.1 │ │ ├── pcre-config.txt │ │ ├── pcre.3 │ │ ├── pcre.txt │ │ ├── pcre16.3 │ │ ├── pcre32.3 │ │ ├── pcre_assign_jit_stack.3 │ │ ├── pcre_compile.3 │ │ ├── pcre_compile2.3 │ │ ├── pcre_config.3 │ │ ├── pcre_copy_named_substring.3 │ │ ├── pcre_copy_substring.3 │ │ ├── pcre_dfa_exec.3 │ │ ├── pcre_exec.3 │ │ ├── pcre_free_study.3 │ │ ├── pcre_free_substring.3 │ │ ├── pcre_free_substring_list.3 │ │ ├── pcre_fullinfo.3 │ │ ├── pcre_get_named_substring.3 │ │ ├── pcre_get_stringnumber.3 │ │ ├── pcre_get_stringtable_entries.3 │ │ ├── pcre_get_substring.3 │ │ ├── pcre_get_substring_list.3 │ │ ├── pcre_jit_exec.3 │ │ ├── pcre_jit_stack_alloc.3 │ │ ├── pcre_jit_stack_free.3 │ │ ├── pcre_maketables.3 │ │ ├── pcre_pattern_to_host_byte_order.3 │ │ ├── pcre_refcount.3 │ │ ├── pcre_study.3 │ │ ├── pcre_utf16_to_host_byte_order.3 │ │ ├── pcre_utf32_to_host_byte_order.3 │ │ ├── pcre_version.3 │ │ ├── pcreapi.3 │ │ ├── pcrebuild.3 │ │ ├── pcrecallout.3 │ │ ├── pcrecompat.3 │ │ ├── pcrecpp.3 │ │ ├── pcregrep.1 │ │ ├── pcregrep.txt │ │ ├── pcrejit.3 │ │ ├── pcrelimits.3 │ │ ├── pcrematching.3 │ │ ├── pcrepartial.3 │ │ ├── pcrepattern.3 │ │ ├── pcreperform.3 │ │ ├── pcreposix.3 │ │ ├── pcreprecompile.3 │ │ ├── pcresample.3 │ │ ├── pcrestack.3 │ │ ├── pcresyntax.3 │ │ ├── pcretest.1 │ │ ├── pcretest.txt │ │ ├── pcreunicode.3 │ │ └── perltest.txt │ ├── install-sh │ ├── libpcre.pc.in │ ├── libpcre16.pc.in │ ├── libpcre32.pc.in │ ├── libpcrecpp.pc.in │ ├── libpcreposix.pc.in │ ├── ltmain.sh │ ├── m4 │ │ ├── ax_pthread.m4 │ │ ├── libtool.m4 │ │ ├── ltoptions.m4 │ │ ├── ltsugar.m4 │ │ ├── ltversion.m4 │ │ ├── lt~obsolete.m4 │ │ └── pcre_visibility.m4 │ ├── makevp.bat │ ├── makevp_c.txt │ ├── makevp_l.txt │ ├── missing │ ├── pcre-config.in │ ├── pcre.h.generic │ ├── pcre.h.in │ ├── pcre16_byte_order.c │ ├── pcre16_chartables.c │ ├── pcre16_compile.c │ ├── pcre16_config.c │ ├── pcre16_dfa_exec.c │ ├── pcre16_exec.c │ ├── pcre16_fullinfo.c │ ├── pcre16_get.c │ ├── pcre16_globals.c │ ├── pcre16_jit_compile.c │ ├── pcre16_maketables.c │ ├── pcre16_newline.c │ ├── pcre16_ord2utf16.c │ ├── pcre16_printint.c │ ├── pcre16_refcount.c │ ├── pcre16_string_utils.c │ ├── pcre16_study.c │ ├── pcre16_tables.c │ ├── pcre16_ucd.c │ ├── pcre16_utf16_utils.c │ ├── pcre16_valid_utf16.c │ ├── pcre16_version.c │ ├── pcre16_xclass.c │ ├── pcre32_byte_order.c │ ├── pcre32_chartables.c │ ├── pcre32_compile.c │ ├── pcre32_config.c │ ├── pcre32_dfa_exec.c │ ├── pcre32_exec.c │ ├── pcre32_fullinfo.c │ ├── pcre32_get.c │ ├── pcre32_globals.c │ ├── pcre32_jit_compile.c │ ├── pcre32_maketables.c │ ├── pcre32_newline.c │ ├── pcre32_ord2utf32.c │ ├── pcre32_printint.c │ ├── pcre32_refcount.c │ ├── pcre32_string_utils.c │ ├── pcre32_study.c │ ├── pcre32_tables.c │ ├── pcre32_ucd.c │ ├── pcre32_utf32_utils.c │ ├── pcre32_valid_utf32.c │ ├── pcre32_version.c │ ├── pcre32_xclass.c │ ├── pcre_byte_order.c │ ├── pcre_chartables.c.dist │ ├── pcre_compile.c │ ├── pcre_config.c │ ├── pcre_dfa_exec.c │ ├── pcre_exec.c │ ├── pcre_fullinfo.c │ ├── pcre_get.c │ ├── pcre_globals.c │ ├── pcre_internal.h │ ├── pcre_jit_compile.c │ ├── pcre_jit_test.c │ ├── pcre_maketables.c │ ├── pcre_newline.c │ ├── pcre_ord2utf8.c │ ├── pcre_printint.c │ ├── pcre_refcount.c │ ├── pcre_scanner.cc │ ├── pcre_scanner.h │ ├── pcre_scanner_unittest.cc │ ├── pcre_string_utils.c │ ├── pcre_stringpiece.cc │ ├── pcre_stringpiece.h.in │ ├── pcre_stringpiece_unittest.cc │ ├── pcre_study.c │ ├── pcre_tables.c │ ├── pcre_ucd.c │ ├── pcre_valid_utf8.c │ ├── pcre_version.c │ ├── pcre_xclass.c │ ├── pcrecpp.cc │ ├── pcrecpp.h │ ├── pcrecpp_internal.h │ ├── pcrecpp_unittest.cc │ ├── pcrecpparg.h.in │ ├── pcredemo.c │ ├── pcregexp.pas │ ├── pcregrep.c │ ├── pcreposix.c │ ├── pcreposix.h │ ├── pcretest.c │ ├── perltest.pl │ ├── sljit │ │ ├── sljitConfig.h │ │ ├── sljitConfigInternal.h │ │ ├── sljitExecAllocator.c │ │ ├── sljitLir.c │ │ ├── sljitLir.h │ │ ├── sljitNativeARM_Thumb2.c │ │ ├── sljitNativeARM_v5.c │ │ ├── sljitNativeMIPS_32.c │ │ ├── sljitNativeMIPS_common.c │ │ ├── sljitNativePPC_32.c │ │ ├── sljitNativePPC_64.c │ │ ├── sljitNativePPC_common.c │ │ ├── sljitNativeSPARC_32.c │ │ ├── sljitNativeSPARC_common.c │ │ ├── sljitNativeX86_32.c │ │ ├── sljitNativeX86_64.c │ │ ├── sljitNativeX86_common.c │ │ └── sljitUtils.c │ ├── testdata │ │ ├── grepbinary │ │ ├── grepfilelist │ │ ├── grepinput │ │ ├── grepinput3 │ │ ├── grepinput8 │ │ ├── grepinputv │ │ ├── grepinputx │ │ ├── greplist │ │ ├── grepoutput │ │ ├── grepoutput8 │ │ ├── grepoutputN │ │ ├── greppatN4 │ │ ├── saved16 │ │ ├── saved16BE-1 │ │ ├── saved16BE-2 │ │ ├── saved16LE-1 │ │ ├── saved16LE-2 │ │ ├── saved32 │ │ ├── saved32BE-1 │ │ ├── saved32BE-2 │ │ ├── saved32LE-1 │ │ ├── saved32LE-2 │ │ ├── saved8 │ │ ├── testinput1 │ │ ├── testinput10 │ │ ├── testinput11 │ │ ├── testinput12 │ │ ├── testinput13 │ │ ├── testinput14 │ │ ├── testinput15 │ │ ├── testinput16 │ │ ├── testinput17 │ │ ├── testinput18 │ │ ├── testinput19 │ │ ├── testinput2 │ │ ├── testinput20 │ │ ├── testinput21 │ │ ├── testinput22 │ │ ├── testinput23 │ │ ├── testinput24 │ │ ├── testinput25 │ │ ├── testinput26 │ │ ├── testinput3 │ │ ├── testinput4 │ │ ├── testinput5 │ │ ├── testinput6 │ │ ├── testinput7 │ │ ├── testinput8 │ │ ├── testinput9 │ │ ├── testinputEBC │ │ ├── testoutput1 │ │ ├── testoutput10 │ │ ├── testoutput11-16 │ │ ├── testoutput11-32 │ │ ├── testoutput11-8 │ │ ├── testoutput12 │ │ ├── testoutput13 │ │ ├── testoutput14 │ │ ├── testoutput15 │ │ ├── testoutput16 │ │ ├── testoutput17 │ │ ├── testoutput18-16 │ │ ├── testoutput18-32 │ │ ├── testoutput19 │ │ ├── testoutput2 │ │ ├── testoutput20 │ │ ├── testoutput21-16 │ │ ├── testoutput21-32 │ │ ├── testoutput22-16 │ │ ├── testoutput22-32 │ │ ├── testoutput23 │ │ ├── testoutput24 │ │ ├── testoutput25 │ │ ├── testoutput26 │ │ ├── testoutput3 │ │ ├── testoutput4 │ │ ├── testoutput5 │ │ ├── testoutput6 │ │ ├── testoutput7 │ │ ├── testoutput8 │ │ ├── testoutput9 │ │ ├── testoutputEBC │ │ ├── wintestinput3 │ │ └── wintestoutput3 │ └── ucp.h ├── profiler │ ├── csharp │ │ ├── Comparators.cs │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── ProfReport.cs │ │ ├── Program.cs │ │ ├── profviewer.csproj │ │ └── profviewer.sln │ └── php │ │ └── ProfFileParser.class.php └── vtable_scanner │ ├── Makefile │ ├── dodscan.sh │ ├── libiberty.a │ ├── main.cpp │ └── tfscan.sh ├── translations ├── adminhelp.phrases.txt ├── adminmenu.phrases.txt ├── antiflood.phrases.txt ├── ar │ ├── adminhelp.phrases.txt │ ├── adminmenu.phrases.txt │ ├── antiflood.phrases.txt │ ├── basebans.phrases.txt │ ├── basecomm.phrases.txt │ ├── basetriggers.phrases.txt │ ├── basevotes.phrases.txt │ ├── clientprefs.phrases.txt │ ├── common.phrases.txt │ ├── core.phrases.txt │ ├── funcommands.phrases.txt │ ├── funvotes.phrases.txt │ ├── mapchooser.phrases.txt │ ├── nextmap.phrases.txt │ ├── nominations.phrases.txt │ ├── playercommands.phrases.txt │ ├── plugin.basecommands.txt │ ├── reservedslots.phrases.txt │ ├── rockthevote.phrases.txt │ ├── sounds.phrases.txt │ └── sqladmins.phrases.txt ├── basebans.phrases.txt ├── basecomm.phrases.txt ├── basetriggers.phrases.txt ├── basevotes.phrases.txt ├── bg │ ├── adminhelp.phrases.txt │ ├── adminmenu.phrases.txt │ ├── basebans.phrases.txt │ ├── basecomm.phrases.txt │ ├── basetriggers.phrases.txt │ ├── basevotes.phrases.txt │ ├── clientprefs.phrases.txt │ ├── common.phrases.txt │ ├── core.phrases.txt │ ├── funcommands.phrases.txt │ ├── funvotes.phrases.txt │ ├── mapchooser.phrases.txt │ ├── nextmap.phrases.txt │ ├── nominations.phrases.txt │ ├── playercommands.phrases.txt │ ├── plugin.basecommands.txt │ └── reservedslots.phrases.txt ├── chi │ ├── adminhelp.phrases.txt │ ├── adminmenu.phrases.txt │ ├── antiflood.phrases.txt │ ├── basebans.phrases.txt │ ├── basecomm.phrases.txt │ ├── basetriggers.phrases.txt │ ├── basevotes.phrases.txt │ ├── clientprefs.phrases.txt │ ├── common.phrases.txt │ ├── core.phrases.txt │ ├── funcommands.phrases.txt │ ├── funvotes.phrases.txt │ ├── mapchooser.phrases.txt │ ├── nextmap.phrases.txt │ ├── nominations.phrases.txt │ ├── playercommands.phrases.txt │ ├── plugin.basecommands.txt │ ├── reservedslots.phrases.txt │ ├── rockthevote.phrases.txt │ ├── sounds.phrases.txt │ └── sqladmins.phrases.txt ├── clientprefs.phrases.txt ├── common.phrases.txt ├── core.phrases.txt ├── cze │ ├── adminhelp.phrases.txt │ ├── adminmenu.phrases.txt │ ├── antiflood.phrases.txt │ ├── basebans.phrases.txt │ ├── basecomm.phrases.txt │ ├── basetriggers.phrases.txt │ ├── basevotes.phrases.txt │ ├── clientprefs.phrases.txt │ ├── common.phrases.txt │ ├── core.phrases.txt │ ├── funcommands.phrases.txt │ ├── funvotes.phrases.txt │ ├── mapchooser.phrases.txt │ ├── nextmap.phrases.txt │ ├── nominations.phrases.txt │ ├── playercommands.phrases.txt │ ├── plugin.basecommands.txt │ ├── reservedslots.phrases.txt │ ├── rockthevote.phrases.txt │ ├── sounds.phrases.txt │ └── sqladmins.phrases.txt ├── da │ ├── adminhelp.phrases.txt │ ├── adminmenu.phrases.txt │ ├── antiflood.phrases.txt │ ├── basebans.phrases.txt │ ├── basecomm.phrases.txt │ ├── basetriggers.phrases.txt │ ├── basevotes.phrases.txt │ ├── clientprefs.phrases.txt │ ├── common.phrases.txt │ ├── core.phrases.txt │ ├── funcommands.phrases.txt │ ├── funvotes.phrases.txt │ ├── mapchooser.phrases.txt │ ├── nextmap.phrases.txt │ ├── nominations.phrases.txt │ ├── playercommands.phrases.txt │ ├── plugin.basecommands.txt │ ├── reservedslots.phrases.txt │ ├── rockthevote.phrases.txt │ ├── sounds.phrases.txt │ └── sqladmins.phrases.txt ├── de │ ├── adminhelp.phrases.txt │ ├── adminmenu.phrases.txt │ ├── antiflood.phrases.txt │ ├── basebans.phrases.txt │ ├── basecomm.phrases.txt │ ├── basetriggers.phrases.txt │ ├── basevotes.phrases.txt │ ├── clientprefs.phrases.txt │ ├── common.phrases.txt │ ├── core.phrases.txt │ ├── funcommands.phrases.txt │ ├── funvotes.phrases.txt │ ├── mapchooser.phrases.txt │ ├── nextmap.phrases.txt │ ├── nominations.phrases.txt │ ├── playercommands.phrases.txt │ ├── plugin.basecommands.txt │ ├── reservedslots.phrases.txt │ ├── rockthevote.phrases.txt │ ├── sounds.phrases.txt │ └── sqladmins.phrases.txt ├── el │ ├── adminhelp.phrases.txt │ ├── adminmenu.phrases.txt │ ├── antiflood.phrases.txt │ ├── basebans.phrases.txt │ ├── basecomm.phrases.txt │ ├── basetriggers.phrases.txt │ ├── basevotes.phrases.txt │ ├── clientprefs.phrases.txt │ ├── common.phrases.txt │ ├── core.phrases.txt │ ├── funcommands.phrases.txt │ ├── funvotes.phrases.txt │ ├── mapchooser.phrases.txt │ ├── nextmap.phrases.txt │ ├── nominations.phrases.txt │ ├── playercommands.phrases.txt │ ├── plugin.basecommands.txt │ ├── reservedslots.phrases.txt │ ├── rockthevote.phrases.txt │ ├── sounds.phrases.txt │ └── sqladmins.phrases.txt ├── es │ ├── adminhelp.phrases.txt │ ├── adminmenu.phrases.txt │ ├── antiflood.phrases.txt │ ├── basebans.phrases.txt │ ├── basecomm.phrases.txt │ ├── basetriggers.phrases.txt │ ├── basevotes.phrases.txt │ ├── clientprefs.phrases.txt │ ├── common.phrases.txt │ ├── core.phrases.txt │ ├── funcommands.phrases.txt │ ├── funvotes.phrases.txt │ ├── mapchooser.phrases.txt │ ├── nextmap.phrases.txt │ ├── nominations.phrases.txt │ ├── playercommands.phrases.txt │ ├── plugin.basecommands.txt │ ├── reservedslots.phrases.txt │ ├── rockthevote.phrases.txt │ ├── sounds.phrases.txt │ └── sqladmins.phrases.txt ├── fi │ ├── adminhelp.phrases.txt │ ├── adminmenu.phrases.txt │ ├── antiflood.phrases.txt │ ├── basebans.phrases.txt │ ├── basecomm.phrases.txt │ ├── basetriggers.phrases.txt │ ├── basevotes.phrases.txt │ ├── clientprefs.phrases.txt │ ├── common.phrases.txt │ ├── core.phrases.txt │ ├── funcommands.phrases.txt │ ├── funvotes.phrases.txt │ ├── mapchooser.phrases.txt │ ├── nextmap.phrases.txt │ ├── nominations.phrases.txt │ ├── playercommands.phrases.txt │ ├── plugin.basecommands.txt │ ├── reservedslots.phrases.txt │ ├── rockthevote.phrases.txt │ ├── sounds.phrases.txt │ └── sqladmins.phrases.txt ├── fr │ ├── adminhelp.phrases.txt │ ├── adminmenu.phrases.txt │ ├── antiflood.phrases.txt │ ├── basebans.phrases.txt │ ├── basecomm.phrases.txt │ ├── basetriggers.phrases.txt │ ├── basevotes.phrases.txt │ ├── clientprefs.phrases.txt │ ├── common.phrases.txt │ ├── core.phrases.txt │ ├── funcommands.phrases.txt │ ├── funvotes.phrases.txt │ ├── mapchooser.phrases.txt │ ├── nextmap.phrases.txt │ ├── nominations.phrases.txt │ ├── playercommands.phrases.txt │ ├── plugin.basecommands.txt │ ├── reservedslots.phrases.txt │ ├── rockthevote.phrases.txt │ ├── sounds.phrases.txt │ └── sqladmins.phrases.txt ├── funcommands.phrases.txt ├── funvotes.phrases.txt ├── he │ ├── adminhelp.phrases.txt │ ├── adminmenu.phrases.txt │ ├── antiflood.phrases.txt │ ├── basebans.phrases.txt │ ├── basecomm.phrases.txt │ ├── core.phrases.txt │ ├── funcommands.phrases.txt │ └── playercommands.phrases.txt ├── hu │ ├── adminhelp.phrases.txt │ ├── adminmenu.phrases.txt │ ├── antiflood.phrases.txt │ ├── basebans.phrases.txt │ ├── basecomm.phrases.txt │ ├── basetriggers.phrases.txt │ ├── basevotes.phrases.txt │ ├── clientprefs.phrases.txt │ ├── common.phrases.txt │ ├── core.phrases.txt │ ├── funcommands.phrases.txt │ ├── funvotes.phrases.txt │ ├── mapchooser.phrases.txt │ ├── nextmap.phrases.txt │ ├── nominations.phrases.txt │ ├── playercommands.phrases.txt │ ├── plugin.basecommands.txt │ ├── reservedslots.phrases.txt │ ├── rockthevote.phrases.txt │ ├── sounds.phrases.txt │ └── sqladmins.phrases.txt ├── it │ ├── adminhelp.phrases.txt │ ├── adminmenu.phrases.txt │ ├── antiflood.phrases.txt │ ├── basebans.phrases.txt │ ├── basecomm.phrases.txt │ ├── basetriggers.phrases.txt │ ├── basevotes.phrases.txt │ ├── clientprefs.phrases.txt │ ├── common.phrases.txt │ ├── core.phrases.txt │ ├── funcommands.phrases.txt │ ├── funvotes.phrases.txt │ ├── mapchooser.phrases.txt │ ├── nextmap.phrases.txt │ ├── nominations.phrases.txt │ ├── playercommands.phrases.txt │ ├── plugin.basecommands.txt │ ├── reservedslots.phrases.txt │ ├── rockthevote.phrases.txt │ ├── sounds.phrases.txt │ └── sqladmins.phrases.txt ├── jp │ ├── adminhelp.phrases.txt │ ├── adminmenu.phrases.txt │ ├── antiflood.phrases.txt │ ├── basebans.phrases.txt │ ├── basecomm.phrases.txt │ ├── basetriggers.phrases.txt │ ├── basevotes.phrases.txt │ ├── clientprefs.phrases.txt │ ├── common.phrases.txt │ ├── core.phrases.txt │ ├── funcommands.phrases.txt │ ├── funvotes.phrases.txt │ ├── mapchooser.phrases.txt │ ├── nextmap.phrases.txt │ ├── nominations.phrases.txt │ ├── playercommands.phrases.txt │ ├── plugin.basecommands.txt │ ├── reservedslots.phrases.txt │ ├── rockthevote.phrases.txt │ ├── sounds.phrases.txt │ └── sqladmins.phrases.txt ├── ko │ ├── adminhelp.phrases.txt │ ├── adminmenu.phrases.txt │ ├── antiflood.phrases.txt │ ├── basebans.phrases.txt │ ├── basecomm.phrases.txt │ ├── basetriggers.phrases.txt │ ├── basevotes.phrases.txt │ ├── clientprefs.phrases.txt │ ├── common.phrases.txt │ ├── core.phrases.txt │ ├── funcommands.phrases.txt │ ├── funvotes.phrases.txt │ ├── mapchooser.phrases.txt │ ├── nextmap.phrases.txt │ ├── nominations.phrases.txt │ ├── playercommands.phrases.txt │ ├── plugin.basecommands.txt │ ├── reservedslots.phrases.txt │ ├── rockthevote.phrases.txt │ ├── sounds.phrases.txt │ └── sqladmins.phrases.txt ├── las │ ├── adminhelp.phrases.txt │ ├── adminmenu.phrases.txt │ ├── antiflood.phrases.txt │ ├── basebans.phrases.txt │ ├── basecomm.phrases.txt │ ├── basetriggers.phrases.txt │ ├── basevotes.phrases.txt │ ├── clientprefs.phrases.txt │ ├── common.phrases.txt │ ├── core.phrases.txt │ ├── funcommands.phrases.txt │ ├── funvotes.phrases.txt │ ├── mapchooser.phrases.txt │ ├── nextmap.phrases.txt │ ├── nominations.phrases.txt │ ├── playercommands.phrases.txt │ ├── plugin.basecommands.txt │ ├── reservedslots.phrases.txt │ ├── rockthevote.phrases.txt │ ├── sounds.phrases.txt │ └── sqladmins.phrases.txt ├── lt │ ├── adminhelp.phrases.txt │ ├── adminmenu.phrases.txt │ ├── antiflood.phrases.txt │ ├── basebans.phrases.txt │ ├── basecomm.phrases.txt │ ├── basetriggers.phrases.txt │ ├── basevotes.phrases.txt │ ├── clientprefs.phrases.txt │ ├── common.phrases.txt │ ├── core.phrases.txt │ ├── funcommands.phrases.txt │ ├── funvotes.phrases.txt │ ├── mapchooser.phrases.txt │ ├── nextmap.phrases.txt │ ├── nominations.phrases.txt │ ├── playercommands.phrases.txt │ ├── plugin.basecommands.txt │ ├── reservedslots.phrases.txt │ ├── rockthevote.phrases.txt │ ├── sounds.phrases.txt │ └── sqladmins.phrases.txt ├── lv │ ├── adminhelp.phrases.txt │ ├── adminmenu.phrases.txt │ ├── antiflood.phrases.txt │ ├── basebans.phrases.txt │ ├── basecomm.phrases.txt │ ├── basetriggers.phrases.txt │ ├── basevotes.phrases.txt │ ├── clientprefs.phrases.txt │ ├── common.phrases.txt │ ├── core.phrases.txt │ ├── funcommands.phrases.txt │ ├── funvotes.phrases.txt │ ├── mapchooser.phrases.txt │ ├── nextmap.phrases.txt │ ├── nominations.phrases.txt │ ├── playercommands.phrases.txt │ ├── plugin.basecommands.txt │ ├── reservedslots.phrases.txt │ ├── rockthevote.phrases.txt │ ├── sounds.phrases.txt │ └── sqladmins.phrases.txt ├── mapchooser.phrases.txt ├── nextmap.phrases.txt ├── nl │ ├── adminhelp.phrases.txt │ ├── adminmenu.phrases.txt │ ├── antiflood.phrases.txt │ ├── basebans.phrases.txt │ ├── basecomm.phrases.txt │ ├── basetriggers.phrases.txt │ ├── basevotes.phrases.txt │ ├── clientprefs.phrases.txt │ ├── common.phrases.txt │ ├── core.phrases.txt │ ├── funcommands.phrases.txt │ ├── funvotes.phrases.txt │ ├── mapchooser.phrases.txt │ ├── nextmap.phrases.txt │ ├── nominations.phrases.txt │ ├── playercommands.phrases.txt │ ├── plugin.basecommands.txt │ ├── reservedslots.phrases.txt │ ├── rockthevote.phrases.txt │ ├── sounds.phrases.txt │ └── sqladmins.phrases.txt ├── no │ ├── adminhelp.phrases.txt │ ├── adminmenu.phrases.txt │ ├── antiflood.phrases.txt │ ├── basebans.phrases.txt │ ├── basecomm.phrases.txt │ └── basetriggers.phrases.txt ├── nominations.phrases.txt ├── pl │ ├── adminhelp.phrases.txt │ ├── adminmenu.phrases.txt │ ├── antiflood.phrases.txt │ ├── basebans.phrases.txt │ ├── basecomm.phrases.txt │ ├── basetriggers.phrases.txt │ ├── basevotes.phrases.txt │ ├── clientprefs.phrases.txt │ ├── common.phrases.txt │ ├── core.phrases.txt │ ├── funcommands.phrases.txt │ ├── funvotes.phrases.txt │ ├── mapchooser.phrases.txt │ ├── nextmap.phrases.txt │ ├── nominations.phrases.txt │ ├── playercommands.phrases.txt │ ├── plugin.basecommands.txt │ ├── reservedslots.phrases.txt │ ├── rockthevote.phrases.txt │ ├── sounds.phrases.txt │ └── sqladmins.phrases.txt ├── playercommands.phrases.txt ├── plugin.basecommands.txt ├── pt │ ├── adminhelp.phrases.txt │ ├── adminmenu.phrases.txt │ ├── antiflood.phrases.txt │ ├── basebans.phrases.txt │ ├── basecomm.phrases.txt │ ├── basetriggers.phrases.txt │ ├── basevotes.phrases.txt │ ├── clientprefs.phrases.txt │ ├── common.phrases.txt │ ├── core.phrases.txt │ ├── funcommands.phrases.txt │ ├── funvotes.phrases.txt │ ├── mapchooser.phrases.txt │ ├── nextmap.phrases.txt │ ├── nominations.phrases.txt │ ├── playercommands.phrases.txt │ ├── plugin.basecommands.txt │ ├── reservedslots.phrases.txt │ ├── rockthevote.phrases.txt │ ├── sounds.phrases.txt │ └── sqladmins.phrases.txt ├── pt_p │ ├── adminhelp.phrases.txt │ ├── adminmenu.phrases.txt │ ├── antiflood.phrases.txt │ ├── basebans.phrases.txt │ ├── basecomm.phrases.txt │ ├── basetriggers.phrases.txt │ ├── basevotes.phrases.txt │ ├── clientprefs.phrases.txt │ ├── common.phrases.txt │ ├── core.phrases.txt │ ├── funcommands.phrases.txt │ ├── funvotes.phrases.txt │ ├── mapchooser.phrases.txt │ ├── nextmap.phrases.txt │ ├── nominations.phrases.txt │ ├── playercommands.phrases.txt │ ├── plugin.basecommands.txt │ ├── reservedslots.phrases.txt │ ├── rockthevote.phrases.txt │ ├── sounds.phrases.txt │ └── sqladmins.phrases.txt ├── reservedslots.phrases.txt ├── ro │ ├── adminhelp.phrases.txt │ ├── adminmenu.phrases.txt │ ├── antiflood.phrases.txt │ ├── basebans.phrases.txt │ ├── basecomm.phrases.txt │ ├── basetriggers.phrases.txt │ ├── basevotes.phrases.txt │ ├── clientprefs.phrases.txt │ ├── common.phrases.txt │ ├── core.phrases.txt │ ├── funcommands.phrases.txt │ ├── funvotes.phrases.txt │ ├── mapchooser.phrases.txt │ ├── nextmap.phrases.txt │ ├── nominations.phrases.txt │ ├── playercommands.phrases.txt │ ├── plugin.basecommands.txt │ ├── reservedslots.phrases.txt │ ├── rockthevote.phrases.txt │ ├── sounds.phrases.txt │ └── sqladmins.phrases.txt ├── rockthevote.phrases.txt ├── ru │ ├── adminhelp.phrases.txt │ ├── adminmenu.phrases.txt │ ├── antiflood.phrases.txt │ ├── basebans.phrases.txt │ ├── basecomm.phrases.txt │ ├── basetriggers.phrases.txt │ ├── basevotes.phrases.txt │ ├── clientprefs.phrases.txt │ ├── common.phrases.txt │ ├── core.phrases.txt │ ├── funcommands.phrases.txt │ ├── funvotes.phrases.txt │ ├── mapchooser.phrases.txt │ ├── nextmap.phrases.txt │ ├── nominations.phrases.txt │ ├── playercommands.phrases.txt │ ├── plugin.basecommands.txt │ ├── reservedslots.phrases.txt │ ├── rockthevote.phrases.txt │ ├── sounds.phrases.txt │ └── sqladmins.phrases.txt ├── sk │ ├── adminhelp.phrases.txt │ ├── adminmenu.phrases.txt │ ├── antiflood.phrases.txt │ ├── basebans.phrases.txt │ ├── basecomm.phrases.txt │ ├── basetriggers.phrases.txt │ ├── basevotes.phrases.txt │ ├── clientprefs.phrases.txt │ ├── common.phrases.txt │ ├── core.phrases.txt │ ├── funcommands.phrases.txt │ ├── funvotes.phrases.txt │ ├── mapchooser.phrases.txt │ ├── nextmap.phrases.txt │ ├── nominations.phrases.txt │ ├── playercommands.phrases.txt │ ├── plugin.basecommands.txt │ ├── reservedslots.phrases.txt │ ├── rockthevote.phrases.txt │ ├── sounds.phrases.txt │ └── sqladmins.phrases.txt ├── sounds.phrases.txt ├── sqladmins.phrases.txt ├── sv │ ├── adminhelp.phrases.txt │ ├── adminmenu.phrases.txt │ ├── antiflood.phrases.txt │ ├── basebans.phrases.txt │ ├── basecomm.phrases.txt │ ├── basetriggers.phrases.txt │ ├── basevotes.phrases.txt │ ├── clientprefs.phrases.txt │ ├── common.phrases.txt │ ├── core.phrases.txt │ ├── funcommands.phrases.txt │ ├── funvotes.phrases.txt │ ├── mapchooser.phrases.txt │ ├── nextmap.phrases.txt │ ├── nominations.phrases.txt │ ├── playercommands.phrases.txt │ ├── plugin.basecommands.txt │ ├── reservedslots.phrases.txt │ ├── rockthevote.phrases.txt │ ├── sounds.phrases.txt │ └── sqladmins.phrases.txt ├── th │ └── .gitkeep ├── tr │ ├── adminhelp.phrases.txt │ ├── adminmenu.phrases.txt │ ├── antiflood.phrases.txt │ ├── basebans.phrases.txt │ ├── basecomm.phrases.txt │ ├── basetriggers.phrases.txt │ ├── basevotes.phrases.txt │ ├── clientprefs.phrases.txt │ ├── common.phrases.txt │ ├── core.phrases.txt │ ├── funcommands.phrases.txt │ ├── funvotes.phrases.txt │ ├── mapchooser.phrases.txt │ ├── nextmap.phrases.txt │ ├── nominations.phrases.txt │ ├── playercommands.phrases.txt │ ├── plugin.basecommands.txt │ ├── reservedslots.phrases.txt │ ├── rockthevote.phrases.txt │ ├── sounds.phrases.txt │ └── sqladmins.phrases.txt ├── ua │ ├── adminhelp.phrases.txt │ ├── adminmenu.phrases.txt │ ├── antiflood.phrases.txt │ ├── basebans.phrases.txt │ ├── basecomm.phrases.txt │ ├── basetriggers.phrases.txt │ ├── basevotes.phrases.txt │ ├── clientprefs.phrases.txt │ ├── common.phrases.txt │ ├── core.phrases.txt │ ├── funcommands.phrases.txt │ ├── funvotes.phrases.txt │ ├── mapchooser.phrases.txt │ ├── nextmap.phrases.txt │ ├── nominations.phrases.txt │ ├── playercommands.phrases.txt │ ├── plugin.basecommands.txt │ ├── reservedslots.phrases.txt │ ├── rockthevote.phrases.txt │ ├── sounds.phrases.txt │ └── sqladmins.phrases.txt ├── vi │ ├── adminhelp.phrases.txt │ ├── adminmenu.phrases.txt │ ├── antiflood.phrases.txt │ ├── basebans.phrases.txt │ ├── basecomm.phrases.txt │ ├── basetriggers.phrases.txt │ ├── basevotes.phrases.txt │ ├── clientprefs.phrases.txt │ ├── common.phrases.txt │ ├── core.phrases.txt │ ├── funcommands.phrases.txt │ ├── funvotes.phrases.txt │ ├── mapchooser.phrases.txt │ ├── nextmap.phrases.txt │ ├── nominations.phrases.txt │ ├── playercommands.phrases.txt │ ├── plugin.basecommands.txt │ ├── reservedslots.phrases.txt │ ├── rockthevote.phrases.txt │ ├── sounds.phrases.txt │ └── sqladmins.phrases.txt └── zho │ ├── adminhelp.phrases.txt │ ├── adminmenu.phrases.txt │ ├── antiflood.phrases.txt │ ├── basebans.phrases.txt │ ├── basecomm.phrases.txt │ ├── basetriggers.phrases.txt │ ├── basevotes.phrases.txt │ ├── clientprefs.phrases.txt │ ├── common.phrases.txt │ ├── core.phrases.txt │ ├── funcommands.phrases.txt │ ├── funvotes.phrases.txt │ ├── mapchooser.phrases.txt │ ├── nextmap.phrases.txt │ ├── nominations.phrases.txt │ ├── playercommands.phrases.txt │ ├── plugin.basecommands.txt │ ├── reservedslots.phrases.txt │ ├── rockthevote.phrases.txt │ ├── sounds.phrases.txt │ └── sqladmins.phrases.txt └── versionlib ├── AMBuilder ├── versionlib.cpp └── versionlib.h /.arcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/.arcconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/mocktest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/.github/workflows/mocktest.yml -------------------------------------------------------------------------------- /.github/workflows/scripting.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/.github/workflows/scripting.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/.travis.yml -------------------------------------------------------------------------------- /AMBuildScript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/AMBuildScript -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/appveyor.yml -------------------------------------------------------------------------------- /bridge/include/BridgeAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/bridge/include/BridgeAPI.h -------------------------------------------------------------------------------- /bridge/include/CoreProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/bridge/include/CoreProvider.h -------------------------------------------------------------------------------- /bridge/include/ILogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/bridge/include/ILogger.h -------------------------------------------------------------------------------- /bridge/include/IScriptManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/bridge/include/IScriptManager.h -------------------------------------------------------------------------------- /bridge/include/LogicProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/bridge/include/LogicProvider.h -------------------------------------------------------------------------------- /changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/changelog.txt -------------------------------------------------------------------------------- /configs/admin_groups.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/configs/admin_groups.cfg -------------------------------------------------------------------------------- /configs/admin_levels.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/configs/admin_levels.cfg -------------------------------------------------------------------------------- /configs/admin_overrides.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/configs/admin_overrides.cfg -------------------------------------------------------------------------------- /configs/adminmenu_cfgs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/configs/adminmenu_cfgs.txt -------------------------------------------------------------------------------- /configs/adminmenu_custom.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/configs/adminmenu_custom.txt -------------------------------------------------------------------------------- /configs/adminmenu_grouping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/configs/adminmenu_grouping.txt -------------------------------------------------------------------------------- /configs/adminmenu_sorting.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/configs/adminmenu_sorting.txt -------------------------------------------------------------------------------- /configs/admins.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/configs/admins.cfg -------------------------------------------------------------------------------- /configs/admins_simple.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/configs/admins_simple.ini -------------------------------------------------------------------------------- /configs/banreasons.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/configs/banreasons.txt -------------------------------------------------------------------------------- /configs/cfg/sm_warmode_off.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/configs/cfg/sm_warmode_off.cfg -------------------------------------------------------------------------------- /configs/cfg/sm_warmode_on.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/configs/cfg/sm_warmode_on.cfg -------------------------------------------------------------------------------- /configs/cfg/sourcemod.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/configs/cfg/sourcemod.cfg -------------------------------------------------------------------------------- /configs/core.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/configs/core.cfg -------------------------------------------------------------------------------- /configs/databases.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/configs/databases.cfg -------------------------------------------------------------------------------- /configs/languages.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/configs/languages.cfg -------------------------------------------------------------------------------- /configs/maplists.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/configs/maplists.cfg -------------------------------------------------------------------------------- /configs/metamod/sourcemod.vdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/configs/metamod/sourcemod.vdf -------------------------------------------------------------------------------- /configure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/configure.py -------------------------------------------------------------------------------- /core/AMBuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/AMBuilder -------------------------------------------------------------------------------- /core/CellRecipientFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/CellRecipientFilter.h -------------------------------------------------------------------------------- /core/ChatTriggers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/ChatTriggers.cpp -------------------------------------------------------------------------------- /core/ChatTriggers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/ChatTriggers.h -------------------------------------------------------------------------------- /core/ConCmdManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/ConCmdManager.cpp -------------------------------------------------------------------------------- /core/ConCmdManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/ConCmdManager.h -------------------------------------------------------------------------------- /core/ConCommandBaseIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/ConCommandBaseIterator.h -------------------------------------------------------------------------------- /core/ConVarManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/ConVarManager.cpp -------------------------------------------------------------------------------- /core/ConVarManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/ConVarManager.h -------------------------------------------------------------------------------- /core/ConsoleDetours.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/ConsoleDetours.cpp -------------------------------------------------------------------------------- /core/ConsoleDetours.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/ConsoleDetours.h -------------------------------------------------------------------------------- /core/CoreConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/CoreConfig.cpp -------------------------------------------------------------------------------- /core/CoreConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/CoreConfig.h -------------------------------------------------------------------------------- /core/EventManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/EventManager.cpp -------------------------------------------------------------------------------- /core/EventManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/EventManager.h -------------------------------------------------------------------------------- /core/GameHooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/GameHooks.cpp -------------------------------------------------------------------------------- /core/GameHooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/GameHooks.h -------------------------------------------------------------------------------- /core/HalfLife2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/HalfLife2.cpp -------------------------------------------------------------------------------- /core/HalfLife2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/HalfLife2.h -------------------------------------------------------------------------------- /core/Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/Logger.cpp -------------------------------------------------------------------------------- /core/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/Logger.h -------------------------------------------------------------------------------- /core/MenuManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/MenuManager.cpp -------------------------------------------------------------------------------- /core/MenuManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/MenuManager.h -------------------------------------------------------------------------------- /core/MenuStyle_Base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/MenuStyle_Base.cpp -------------------------------------------------------------------------------- /core/MenuStyle_Base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/MenuStyle_Base.h -------------------------------------------------------------------------------- /core/MenuStyle_Radio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/MenuStyle_Radio.cpp -------------------------------------------------------------------------------- /core/MenuStyle_Radio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/MenuStyle_Radio.h -------------------------------------------------------------------------------- /core/MenuStyle_Valve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/MenuStyle_Valve.cpp -------------------------------------------------------------------------------- /core/MenuStyle_Valve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/MenuStyle_Valve.h -------------------------------------------------------------------------------- /core/MenuVoting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/MenuVoting.cpp -------------------------------------------------------------------------------- /core/MenuVoting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/MenuVoting.h -------------------------------------------------------------------------------- /core/NextMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/NextMap.cpp -------------------------------------------------------------------------------- /core/NextMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/NextMap.h -------------------------------------------------------------------------------- /core/PlayerManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/PlayerManager.cpp -------------------------------------------------------------------------------- /core/PlayerManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/PlayerManager.h -------------------------------------------------------------------------------- /core/TimerSys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/TimerSys.cpp -------------------------------------------------------------------------------- /core/TimerSys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/TimerSys.h -------------------------------------------------------------------------------- /core/UserMessagePBHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/UserMessagePBHelpers.h -------------------------------------------------------------------------------- /core/UserMessages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/UserMessages.cpp -------------------------------------------------------------------------------- /core/UserMessages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/UserMessages.h -------------------------------------------------------------------------------- /core/command_args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/command_args.h -------------------------------------------------------------------------------- /core/concmd_cleaner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/concmd_cleaner.cpp -------------------------------------------------------------------------------- /core/concmd_cleaner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/concmd_cleaner.h -------------------------------------------------------------------------------- /core/frame_hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/frame_hooks.cpp -------------------------------------------------------------------------------- /core/frame_hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/frame_hooks.h -------------------------------------------------------------------------------- /core/logic/ADTFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/ADTFactory.cpp -------------------------------------------------------------------------------- /core/logic/ADTFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/ADTFactory.h -------------------------------------------------------------------------------- /core/logic/AMBuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/AMBuilder -------------------------------------------------------------------------------- /core/logic/AdminCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/AdminCache.cpp -------------------------------------------------------------------------------- /core/logic/AdminCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/AdminCache.h -------------------------------------------------------------------------------- /core/logic/BaseWorker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/BaseWorker.cpp -------------------------------------------------------------------------------- /core/logic/BaseWorker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/BaseWorker.h -------------------------------------------------------------------------------- /core/logic/CDataPack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/CDataPack.cpp -------------------------------------------------------------------------------- /core/logic/CDataPack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/CDataPack.h -------------------------------------------------------------------------------- /core/logic/CellArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/CellArray.h -------------------------------------------------------------------------------- /core/logic/Database.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/Database.cpp -------------------------------------------------------------------------------- /core/logic/Database.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/Database.h -------------------------------------------------------------------------------- /core/logic/DebugReporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/DebugReporter.cpp -------------------------------------------------------------------------------- /core/logic/DebugReporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/DebugReporter.h -------------------------------------------------------------------------------- /core/logic/ExtensionSys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/ExtensionSys.cpp -------------------------------------------------------------------------------- /core/logic/ExtensionSys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/ExtensionSys.h -------------------------------------------------------------------------------- /core/logic/ForwardSys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/ForwardSys.cpp -------------------------------------------------------------------------------- /core/logic/ForwardSys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/ForwardSys.h -------------------------------------------------------------------------------- /core/logic/FrameIterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/FrameIterator.cpp -------------------------------------------------------------------------------- /core/logic/FrameIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/FrameIterator.h -------------------------------------------------------------------------------- /core/logic/GameConfigs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/GameConfigs.cpp -------------------------------------------------------------------------------- /core/logic/GameConfigs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/GameConfigs.h -------------------------------------------------------------------------------- /core/logic/HandleSys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/HandleSys.cpp -------------------------------------------------------------------------------- /core/logic/HandleSys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/HandleSys.h -------------------------------------------------------------------------------- /core/logic/LibrarySys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/LibrarySys.cpp -------------------------------------------------------------------------------- /core/logic/LibrarySys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/LibrarySys.h -------------------------------------------------------------------------------- /core/logic/Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/Logger.cpp -------------------------------------------------------------------------------- /core/logic/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/Logger.h -------------------------------------------------------------------------------- /core/logic/LumpManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/LumpManager.cpp -------------------------------------------------------------------------------- /core/logic/LumpManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/LumpManager.h -------------------------------------------------------------------------------- /core/logic/MemoryUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/MemoryUtils.cpp -------------------------------------------------------------------------------- /core/logic/MemoryUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/MemoryUtils.h -------------------------------------------------------------------------------- /core/logic/MersenneTwister.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/MersenneTwister.h -------------------------------------------------------------------------------- /core/logic/Native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/Native.h -------------------------------------------------------------------------------- /core/logic/NativeOwner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/NativeOwner.cpp -------------------------------------------------------------------------------- /core/logic/NativeOwner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/NativeOwner.h -------------------------------------------------------------------------------- /core/logic/PhraseCollection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/PhraseCollection.cpp -------------------------------------------------------------------------------- /core/logic/PhraseCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/PhraseCollection.h -------------------------------------------------------------------------------- /core/logic/PluginSys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/PluginSys.cpp -------------------------------------------------------------------------------- /core/logic/PluginSys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/PluginSys.h -------------------------------------------------------------------------------- /core/logic/ProfileTools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/ProfileTools.cpp -------------------------------------------------------------------------------- /core/logic/ProfileTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/ProfileTools.h -------------------------------------------------------------------------------- /core/logic/PseudoAddrManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/PseudoAddrManager.h -------------------------------------------------------------------------------- /core/logic/RootConsoleMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/RootConsoleMenu.cpp -------------------------------------------------------------------------------- /core/logic/RootConsoleMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/RootConsoleMenu.h -------------------------------------------------------------------------------- /core/logic/ShareSys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/ShareSys.cpp -------------------------------------------------------------------------------- /core/logic/ShareSys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/ShareSys.h -------------------------------------------------------------------------------- /core/logic/TextParsers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/TextParsers.cpp -------------------------------------------------------------------------------- /core/logic/TextParsers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/TextParsers.h -------------------------------------------------------------------------------- /core/logic/ThreadSupport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/ThreadSupport.cpp -------------------------------------------------------------------------------- /core/logic/ThreadSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/ThreadSupport.h -------------------------------------------------------------------------------- /core/logic/Translator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/Translator.cpp -------------------------------------------------------------------------------- /core/logic/Translator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/Translator.h -------------------------------------------------------------------------------- /core/logic/common_logic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/common_logic.cpp -------------------------------------------------------------------------------- /core/logic/common_logic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/common_logic.h -------------------------------------------------------------------------------- /core/logic/frame_tasks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/frame_tasks.cpp -------------------------------------------------------------------------------- /core/logic/frame_tasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/frame_tasks.h -------------------------------------------------------------------------------- /core/logic/handle_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/handle_helpers.h -------------------------------------------------------------------------------- /core/logic/sm_crc32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/sm_crc32.cpp -------------------------------------------------------------------------------- /core/logic/sm_crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/sm_crc32.h -------------------------------------------------------------------------------- /core/logic/sm_symtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/sm_symtable.h -------------------------------------------------------------------------------- /core/logic/sm_trie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/sm_trie.cpp -------------------------------------------------------------------------------- /core/logic/sm_trie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/sm_trie.h -------------------------------------------------------------------------------- /core/logic/smn_admin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/smn_admin.cpp -------------------------------------------------------------------------------- /core/logic/smn_adt_array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/smn_adt_array.cpp -------------------------------------------------------------------------------- /core/logic/smn_adt_stack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/smn_adt_stack.cpp -------------------------------------------------------------------------------- /core/logic/smn_adt_trie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/smn_adt_trie.cpp -------------------------------------------------------------------------------- /core/logic/smn_banning.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/smn_banning.cpp -------------------------------------------------------------------------------- /core/logic/smn_console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/smn_console.cpp -------------------------------------------------------------------------------- /core/logic/smn_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/smn_core.cpp -------------------------------------------------------------------------------- /core/logic/smn_database.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/smn_database.cpp -------------------------------------------------------------------------------- /core/logic/smn_datapacks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/smn_datapacks.cpp -------------------------------------------------------------------------------- /core/logic/smn_entitylump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/smn_entitylump.cpp -------------------------------------------------------------------------------- /core/logic/smn_entitylump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/smn_entitylump.h -------------------------------------------------------------------------------- /core/logic/smn_fakenatives.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/smn_fakenatives.cpp -------------------------------------------------------------------------------- /core/logic/smn_filesystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/smn_filesystem.cpp -------------------------------------------------------------------------------- /core/logic/smn_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/smn_float.cpp -------------------------------------------------------------------------------- /core/logic/smn_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/smn_functions.cpp -------------------------------------------------------------------------------- /core/logic/smn_gameconfigs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/smn_gameconfigs.cpp -------------------------------------------------------------------------------- /core/logic/smn_halflife.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/smn_halflife.cpp -------------------------------------------------------------------------------- /core/logic/smn_handles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/smn_handles.cpp -------------------------------------------------------------------------------- /core/logic/smn_lang.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/smn_lang.cpp -------------------------------------------------------------------------------- /core/logic/smn_maplists.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/smn_maplists.cpp -------------------------------------------------------------------------------- /core/logic/smn_menus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/smn_menus.cpp -------------------------------------------------------------------------------- /core/logic/smn_players.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/smn_players.cpp -------------------------------------------------------------------------------- /core/logic/smn_profiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/smn_profiler.cpp -------------------------------------------------------------------------------- /core/logic/smn_sorting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/smn_sorting.cpp -------------------------------------------------------------------------------- /core/logic/smn_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/smn_string.cpp -------------------------------------------------------------------------------- /core/logic/smn_textparse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/smn_textparse.cpp -------------------------------------------------------------------------------- /core/logic/smn_timers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/smn_timers.cpp -------------------------------------------------------------------------------- /core/logic/sprintf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/sprintf.cpp -------------------------------------------------------------------------------- /core/logic/sprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/sprintf.h -------------------------------------------------------------------------------- /core/logic/stringutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/stringutil.cpp -------------------------------------------------------------------------------- /core/logic/stringutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/stringutil.h -------------------------------------------------------------------------------- /core/logic/version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic/version.rc -------------------------------------------------------------------------------- /core/logic_bridge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic_bridge.cpp -------------------------------------------------------------------------------- /core/logic_bridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/logic_bridge.h -------------------------------------------------------------------------------- /core/provider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/provider.h -------------------------------------------------------------------------------- /core/sm_autonatives.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/sm_autonatives.cpp -------------------------------------------------------------------------------- /core/sm_autonatives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/sm_autonatives.h -------------------------------------------------------------------------------- /core/sm_convar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/sm_convar.h -------------------------------------------------------------------------------- /core/sm_fastlink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/sm_fastlink.h -------------------------------------------------------------------------------- /core/sm_globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/sm_globals.h -------------------------------------------------------------------------------- /core/sm_memtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/sm_memtable.h -------------------------------------------------------------------------------- /core/sm_stringutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/sm_stringutil.cpp -------------------------------------------------------------------------------- /core/sm_stringutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/sm_stringutil.h -------------------------------------------------------------------------------- /core/smn_bitbuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/smn_bitbuffer.cpp -------------------------------------------------------------------------------- /core/smn_commandline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/smn_commandline.cpp -------------------------------------------------------------------------------- /core/smn_console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/smn_console.cpp -------------------------------------------------------------------------------- /core/smn_entities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/smn_entities.cpp -------------------------------------------------------------------------------- /core/smn_events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/smn_events.cpp -------------------------------------------------------------------------------- /core/smn_halflife.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/smn_halflife.cpp -------------------------------------------------------------------------------- /core/smn_hudtext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/smn_hudtext.cpp -------------------------------------------------------------------------------- /core/smn_keyvalues.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/smn_keyvalues.cpp -------------------------------------------------------------------------------- /core/smn_keyvalues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/smn_keyvalues.h -------------------------------------------------------------------------------- /core/smn_nextmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/smn_nextmap.cpp -------------------------------------------------------------------------------- /core/smn_player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/smn_player.cpp -------------------------------------------------------------------------------- /core/smn_protobuf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/smn_protobuf.cpp -------------------------------------------------------------------------------- /core/smn_usermsgs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/smn_usermsgs.cpp -------------------------------------------------------------------------------- /core/smn_usermsgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/smn_usermsgs.h -------------------------------------------------------------------------------- /core/smn_vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/smn_vector.cpp -------------------------------------------------------------------------------- /core/sourcemm_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/sourcemm_api.cpp -------------------------------------------------------------------------------- /core/sourcemm_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/sourcemm_api.h -------------------------------------------------------------------------------- /core/sourcemod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/sourcemod.cpp -------------------------------------------------------------------------------- /core/sourcemod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/sourcemod.h -------------------------------------------------------------------------------- /core/version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/version.rc -------------------------------------------------------------------------------- /core/vprof_tool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/vprof_tool.cpp -------------------------------------------------------------------------------- /core/vprof_tool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/core/vprof_tool.h -------------------------------------------------------------------------------- /editor/geshi/sourcepawn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/editor/geshi/sourcepawn.php -------------------------------------------------------------------------------- /editor/npp/create-pawn-npp.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/editor/npp/create-pawn-npp.pl -------------------------------------------------------------------------------- /editor/npp/userDefineLang.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/editor/npp/userDefineLang.xml -------------------------------------------------------------------------------- /editor/textpad/reg_class.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/editor/textpad/reg_class.reg -------------------------------------------------------------------------------- /editor/textpad/sourcepawn.syn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/editor/textpad/sourcepawn.syn -------------------------------------------------------------------------------- /editor/ultraedit/wordfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/editor/ultraedit/wordfile.txt -------------------------------------------------------------------------------- /editor/vim/sourcepawn.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/editor/vim/sourcepawn.vim -------------------------------------------------------------------------------- /editor/vim/vim.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/editor/vim/vim.pl -------------------------------------------------------------------------------- /extensions/bintools/AMBuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/bintools/AMBuilder -------------------------------------------------------------------------------- /extensions/bintools/CallMaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/bintools/CallMaker.h -------------------------------------------------------------------------------- /extensions/bintools/extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/bintools/extension.h -------------------------------------------------------------------------------- /extensions/bintools/version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/bintools/version.rc -------------------------------------------------------------------------------- /extensions/clientprefs/cookie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/clientprefs/cookie.h -------------------------------------------------------------------------------- /extensions/clientprefs/menus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/clientprefs/menus.h -------------------------------------------------------------------------------- /extensions/clientprefs/query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/clientprefs/query.h -------------------------------------------------------------------------------- /extensions/cstrike/AMBuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/cstrike/AMBuilder -------------------------------------------------------------------------------- /extensions/cstrike/RegNatives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/cstrike/RegNatives.h -------------------------------------------------------------------------------- /extensions/cstrike/extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/cstrike/extension.h -------------------------------------------------------------------------------- /extensions/cstrike/forwards.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/cstrike/forwards.cpp -------------------------------------------------------------------------------- /extensions/cstrike/forwards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/cstrike/forwards.h -------------------------------------------------------------------------------- /extensions/cstrike/natives.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/cstrike/natives.cpp -------------------------------------------------------------------------------- /extensions/cstrike/rulesfix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/cstrike/rulesfix.cpp -------------------------------------------------------------------------------- /extensions/cstrike/rulesfix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/cstrike/rulesfix.h -------------------------------------------------------------------------------- /extensions/cstrike/timeleft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/cstrike/timeleft.cpp -------------------------------------------------------------------------------- /extensions/cstrike/timeleft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/cstrike/timeleft.h -------------------------------------------------------------------------------- /extensions/cstrike/version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/cstrike/version.rc -------------------------------------------------------------------------------- /extensions/curl/AMBuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/curl/AMBuilder -------------------------------------------------------------------------------- /extensions/curl/curl-src/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/curl/curl-src/README -------------------------------------------------------------------------------- /extensions/curl/curl-src/include/curl/types.h: -------------------------------------------------------------------------------- 1 | /* not used */ 2 | -------------------------------------------------------------------------------- /extensions/curl/curl-src/packages/AIX/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = RPM 2 | 3 | EXTRA_DIST = Makefile.am 4 | -------------------------------------------------------------------------------- /extensions/curl/curl-src/packages/AIX/RPM/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST = README curl.spec.in 2 | 3 | -------------------------------------------------------------------------------- /extensions/curl/curl-src/packages/DOS/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST = README common.dj 2 | -------------------------------------------------------------------------------- /extensions/curl/curl-src/packages/EPM/Makefile.am: -------------------------------------------------------------------------------- 1 | AUTOMAKE_OPTIONS = foreign 2 | 3 | EXTRA_DIST = README curl.list.in 4 | -------------------------------------------------------------------------------- /extensions/curl/curl-src/packages/Linux/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = RPM 2 | -------------------------------------------------------------------------------- /extensions/curl/curl-src/packages/Win32/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = cygwin 2 | 3 | EXTRA_DIST = README 4 | -------------------------------------------------------------------------------- /extensions/curl/curl-src/packages/vms/axp/README: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /extensions/curl/curl-src/packages/vms/ia64/README: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /extensions/curl/curl-src/packages/vms/vax/README: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /extensions/curl/curl-src/reconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/curl/curl-src/reconf -------------------------------------------------------------------------------- /extensions/curl/curlapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/curl/curlapi.cpp -------------------------------------------------------------------------------- /extensions/curl/curlapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/curl/curlapi.h -------------------------------------------------------------------------------- /extensions/curl/extension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/curl/extension.cpp -------------------------------------------------------------------------------- /extensions/curl/extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/curl/extension.h -------------------------------------------------------------------------------- /extensions/curl/smsdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/curl/smsdk_config.h -------------------------------------------------------------------------------- /extensions/curl/version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/curl/version.rc -------------------------------------------------------------------------------- /extensions/dhooks/AMBuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/dhooks/AMBuilder -------------------------------------------------------------------------------- /extensions/dhooks/extension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/dhooks/extension.cpp -------------------------------------------------------------------------------- /extensions/dhooks/extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/dhooks/extension.h -------------------------------------------------------------------------------- /extensions/dhooks/listeners.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/dhooks/listeners.cpp -------------------------------------------------------------------------------- /extensions/dhooks/listeners.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/dhooks/listeners.h -------------------------------------------------------------------------------- /extensions/dhooks/natives.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/dhooks/natives.cpp -------------------------------------------------------------------------------- /extensions/dhooks/natives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/dhooks/natives.h -------------------------------------------------------------------------------- /extensions/dhooks/sdk-hacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/dhooks/sdk-hacks.h -------------------------------------------------------------------------------- /extensions/dhooks/signatures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/dhooks/signatures.h -------------------------------------------------------------------------------- /extensions/dhooks/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/dhooks/util.cpp -------------------------------------------------------------------------------- /extensions/dhooks/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/dhooks/util.h -------------------------------------------------------------------------------- /extensions/dhooks/version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/dhooks/version.rc -------------------------------------------------------------------------------- /extensions/dhooks/vfunc_call.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/dhooks/vfunc_call.h -------------------------------------------------------------------------------- /extensions/dhooks/vhook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/dhooks/vhook.cpp -------------------------------------------------------------------------------- /extensions/dhooks/vhook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/dhooks/vhook.h -------------------------------------------------------------------------------- /extensions/geoip/AMBuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/geoip/AMBuilder -------------------------------------------------------------------------------- /extensions/geoip/data-pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/geoip/data-pool.c -------------------------------------------------------------------------------- /extensions/geoip/data-pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/geoip/data-pool.h -------------------------------------------------------------------------------- /extensions/geoip/extension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/geoip/extension.cpp -------------------------------------------------------------------------------- /extensions/geoip/extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/geoip/extension.h -------------------------------------------------------------------------------- /extensions/geoip/geoip_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/geoip/geoip_util.cpp -------------------------------------------------------------------------------- /extensions/geoip/geoip_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/geoip/geoip_util.h -------------------------------------------------------------------------------- /extensions/geoip/maxminddb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/geoip/maxminddb.c -------------------------------------------------------------------------------- /extensions/geoip/maxminddb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/geoip/maxminddb.h -------------------------------------------------------------------------------- /extensions/geoip/osdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/geoip/osdefs.h -------------------------------------------------------------------------------- /extensions/geoip/smsdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/geoip/smsdk_config.h -------------------------------------------------------------------------------- /extensions/geoip/version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/geoip/version.rc -------------------------------------------------------------------------------- /extensions/mysql/AMBuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/mysql/AMBuilder -------------------------------------------------------------------------------- /extensions/mysql/extension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/mysql/extension.cpp -------------------------------------------------------------------------------- /extensions/mysql/extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/mysql/extension.h -------------------------------------------------------------------------------- /extensions/mysql/msvc15hack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/mysql/msvc15hack.c -------------------------------------------------------------------------------- /extensions/mysql/smsdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/mysql/smsdk_config.h -------------------------------------------------------------------------------- /extensions/mysql/version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/mysql/version.rc -------------------------------------------------------------------------------- /extensions/pgsql/AMBuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/pgsql/AMBuilder -------------------------------------------------------------------------------- /extensions/pgsql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/pgsql/README.md -------------------------------------------------------------------------------- /extensions/pgsql/extension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/pgsql/extension.cpp -------------------------------------------------------------------------------- /extensions/pgsql/extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/pgsql/extension.h -------------------------------------------------------------------------------- /extensions/pgsql/libpq-fe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/pgsql/libpq-fe.h -------------------------------------------------------------------------------- /extensions/pgsql/postgres_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/pgsql/postgres_ext.h -------------------------------------------------------------------------------- /extensions/pgsql/smsdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/pgsql/smsdk_config.h -------------------------------------------------------------------------------- /extensions/pgsql/version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/pgsql/version.rc -------------------------------------------------------------------------------- /extensions/regex/AMBuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/regex/AMBuilder -------------------------------------------------------------------------------- /extensions/regex/CRegEx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/regex/CRegEx.cpp -------------------------------------------------------------------------------- /extensions/regex/CRegEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/regex/CRegEx.h -------------------------------------------------------------------------------- /extensions/regex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/regex/README.md -------------------------------------------------------------------------------- /extensions/regex/extension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/regex/extension.cpp -------------------------------------------------------------------------------- /extensions/regex/extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/regex/extension.h -------------------------------------------------------------------------------- /extensions/regex/pcre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/regex/pcre.h -------------------------------------------------------------------------------- /extensions/regex/posix_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/regex/posix_map.h -------------------------------------------------------------------------------- /extensions/regex/smsdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/regex/smsdk_config.h -------------------------------------------------------------------------------- /extensions/regex/version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/regex/version.rc -------------------------------------------------------------------------------- /extensions/sdkhooks/AMBuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/sdkhooks/AMBuilder -------------------------------------------------------------------------------- /extensions/sdkhooks/extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/sdkhooks/extension.h -------------------------------------------------------------------------------- /extensions/sdkhooks/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/sdkhooks/macros.h -------------------------------------------------------------------------------- /extensions/sdkhooks/natives.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/sdkhooks/natives.cpp -------------------------------------------------------------------------------- /extensions/sdkhooks/natives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/sdkhooks/natives.h -------------------------------------------------------------------------------- /extensions/sdkhooks/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/sdkhooks/util.cpp -------------------------------------------------------------------------------- /extensions/sdkhooks/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/sdkhooks/util.h -------------------------------------------------------------------------------- /extensions/sdkhooks/version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/sdkhooks/version.rc -------------------------------------------------------------------------------- /extensions/sdktools/AMBuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/sdktools/AMBuilder -------------------------------------------------------------------------------- /extensions/sdktools/extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/sdktools/extension.h -------------------------------------------------------------------------------- /extensions/sdktools/hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/sdktools/hooks.cpp -------------------------------------------------------------------------------- /extensions/sdktools/hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/sdktools/hooks.h -------------------------------------------------------------------------------- /extensions/sdktools/output.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/sdktools/output.cpp -------------------------------------------------------------------------------- /extensions/sdktools/output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/sdktools/output.h -------------------------------------------------------------------------------- /extensions/sdktools/tempents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/sdktools/tempents.h -------------------------------------------------------------------------------- /extensions/sdktools/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/sdktools/util.h -------------------------------------------------------------------------------- /extensions/sdktools/variant-t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/sdktools/variant-t.h -------------------------------------------------------------------------------- /extensions/sdktools/vcaller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/sdktools/vcaller.cpp -------------------------------------------------------------------------------- /extensions/sdktools/vdecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/sdktools/vdecoder.h -------------------------------------------------------------------------------- /extensions/sdktools/version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/sdktools/version.rc -------------------------------------------------------------------------------- /extensions/sdktools/vglobals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/sdktools/vglobals.h -------------------------------------------------------------------------------- /extensions/sdktools/vhelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/sdktools/vhelpers.h -------------------------------------------------------------------------------- /extensions/sdktools/vnatives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/sdktools/vnatives.h -------------------------------------------------------------------------------- /extensions/sdktools/voice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/sdktools/voice.cpp -------------------------------------------------------------------------------- /extensions/sdktools/vsound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/sdktools/vsound.cpp -------------------------------------------------------------------------------- /extensions/sdktools/vsound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/sdktools/vsound.h -------------------------------------------------------------------------------- /extensions/sqlite/AMBuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/sqlite/AMBuilder -------------------------------------------------------------------------------- /extensions/sqlite/extension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/sqlite/extension.cpp -------------------------------------------------------------------------------- /extensions/sqlite/extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/sqlite/extension.h -------------------------------------------------------------------------------- /extensions/sqlite/version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/sqlite/version.rc -------------------------------------------------------------------------------- /extensions/structs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/structs/Makefile -------------------------------------------------------------------------------- /extensions/structs/Struct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/structs/Struct.cpp -------------------------------------------------------------------------------- /extensions/structs/Struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/structs/Struct.h -------------------------------------------------------------------------------- /extensions/structs/extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/structs/extension.h -------------------------------------------------------------------------------- /extensions/structs/natives.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/structs/natives.cpp -------------------------------------------------------------------------------- /extensions/structs/structs.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/structs/structs.inc -------------------------------------------------------------------------------- /extensions/tf2/AMBuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/tf2/AMBuilder -------------------------------------------------------------------------------- /extensions/tf2/RegNatives.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/tf2/RegNatives.cpp -------------------------------------------------------------------------------- /extensions/tf2/RegNatives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/tf2/RegNatives.h -------------------------------------------------------------------------------- /extensions/tf2/conditions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/tf2/conditions.cpp -------------------------------------------------------------------------------- /extensions/tf2/conditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/tf2/conditions.h -------------------------------------------------------------------------------- /extensions/tf2/criticals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/tf2/criticals.cpp -------------------------------------------------------------------------------- /extensions/tf2/criticals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/tf2/criticals.h -------------------------------------------------------------------------------- /extensions/tf2/extension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/tf2/extension.cpp -------------------------------------------------------------------------------- /extensions/tf2/extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/tf2/extension.h -------------------------------------------------------------------------------- /extensions/tf2/gameplayrules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/tf2/gameplayrules.h -------------------------------------------------------------------------------- /extensions/tf2/holiday.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/tf2/holiday.cpp -------------------------------------------------------------------------------- /extensions/tf2/holiday.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/tf2/holiday.h -------------------------------------------------------------------------------- /extensions/tf2/natives.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/tf2/natives.cpp -------------------------------------------------------------------------------- /extensions/tf2/smsdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/tf2/smsdk_config.h -------------------------------------------------------------------------------- /extensions/tf2/teleporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/tf2/teleporter.cpp -------------------------------------------------------------------------------- /extensions/tf2/teleporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/tf2/teleporter.h -------------------------------------------------------------------------------- /extensions/tf2/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/tf2/util.cpp -------------------------------------------------------------------------------- /extensions/tf2/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/tf2/util.h -------------------------------------------------------------------------------- /extensions/tf2/version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/tf2/version.rc -------------------------------------------------------------------------------- /extensions/topmenus/AMBuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/topmenus/AMBuilder -------------------------------------------------------------------------------- /extensions/topmenus/TopMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/topmenus/TopMenu.cpp -------------------------------------------------------------------------------- /extensions/topmenus/TopMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/topmenus/TopMenu.h -------------------------------------------------------------------------------- /extensions/topmenus/extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/topmenus/extension.h -------------------------------------------------------------------------------- /extensions/topmenus/version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/topmenus/version.rc -------------------------------------------------------------------------------- /extensions/updater/AMBuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/updater/AMBuilder -------------------------------------------------------------------------------- /extensions/updater/Updater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/updater/Updater.cpp -------------------------------------------------------------------------------- /extensions/updater/Updater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/updater/Updater.h -------------------------------------------------------------------------------- /extensions/updater/extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/updater/extension.h -------------------------------------------------------------------------------- /extensions/updater/md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/updater/md5.cpp -------------------------------------------------------------------------------- /extensions/updater/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/updater/md5.h -------------------------------------------------------------------------------- /extensions/updater/version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/extensions/updater/version.rc -------------------------------------------------------------------------------- /gamedata/funcommands.games.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/gamedata/funcommands.games.txt -------------------------------------------------------------------------------- /gamedata/sm-tf2.games.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/gamedata/sm-tf2.games.txt -------------------------------------------------------------------------------- /licenses/GPLv2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/licenses/GPLv2.txt -------------------------------------------------------------------------------- /licenses/GPLv3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/licenses/GPLv3.txt -------------------------------------------------------------------------------- /licenses/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/licenses/LICENSE.txt -------------------------------------------------------------------------------- /loader/AMBuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/loader/AMBuilder -------------------------------------------------------------------------------- /loader/loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/loader/loader.cpp -------------------------------------------------------------------------------- /loader/version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/loader/version.rc -------------------------------------------------------------------------------- /plugins/AMBuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/AMBuilder -------------------------------------------------------------------------------- /plugins/admin-flatfile.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/admin-flatfile.sp -------------------------------------------------------------------------------- /plugins/admin-sql-prefetch.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/admin-sql-prefetch.sp -------------------------------------------------------------------------------- /plugins/admin-sql-threaded.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/admin-sql-threaded.sp -------------------------------------------------------------------------------- /plugins/adminhelp.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/adminhelp.sp -------------------------------------------------------------------------------- /plugins/adminmenu.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/adminmenu.sp -------------------------------------------------------------------------------- /plugins/antiflood.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/antiflood.sp -------------------------------------------------------------------------------- /plugins/basebans.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/basebans.sp -------------------------------------------------------------------------------- /plugins/basebans/ban.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/basebans/ban.sp -------------------------------------------------------------------------------- /plugins/basechat.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/basechat.sp -------------------------------------------------------------------------------- /plugins/basecomm.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/basecomm.sp -------------------------------------------------------------------------------- /plugins/basecomm/forwards.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/basecomm/forwards.sp -------------------------------------------------------------------------------- /plugins/basecomm/gag.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/basecomm/gag.sp -------------------------------------------------------------------------------- /plugins/basecomm/natives.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/basecomm/natives.sp -------------------------------------------------------------------------------- /plugins/basecommands.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/basecommands.sp -------------------------------------------------------------------------------- /plugins/basecommands/execcfg.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/basecommands/execcfg.sp -------------------------------------------------------------------------------- /plugins/basecommands/kick.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/basecommands/kick.sp -------------------------------------------------------------------------------- /plugins/basecommands/map.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/basecommands/map.sp -------------------------------------------------------------------------------- /plugins/basecommands/who.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/basecommands/who.sp -------------------------------------------------------------------------------- /plugins/basetriggers.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/basetriggers.sp -------------------------------------------------------------------------------- /plugins/basevotes.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/basevotes.sp -------------------------------------------------------------------------------- /plugins/basevotes/voteban.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/basevotes/voteban.sp -------------------------------------------------------------------------------- /plugins/basevotes/votekick.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/basevotes/votekick.sp -------------------------------------------------------------------------------- /plugins/basevotes/votemap.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/basevotes/votemap.sp -------------------------------------------------------------------------------- /plugins/clientprefs.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/clientprefs.sp -------------------------------------------------------------------------------- /plugins/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/compile.sh -------------------------------------------------------------------------------- /plugins/funcommands.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/funcommands.sp -------------------------------------------------------------------------------- /plugins/funcommands/beacon.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/funcommands/beacon.sp -------------------------------------------------------------------------------- /plugins/funcommands/blind.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/funcommands/blind.sp -------------------------------------------------------------------------------- /plugins/funcommands/drug.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/funcommands/drug.sp -------------------------------------------------------------------------------- /plugins/funcommands/fire.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/funcommands/fire.sp -------------------------------------------------------------------------------- /plugins/funcommands/gravity.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/funcommands/gravity.sp -------------------------------------------------------------------------------- /plugins/funcommands/ice.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/funcommands/ice.sp -------------------------------------------------------------------------------- /plugins/funcommands/noclip.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/funcommands/noclip.sp -------------------------------------------------------------------------------- /plugins/funcommands/timebomb.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/funcommands/timebomb.sp -------------------------------------------------------------------------------- /plugins/funvotes.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/funvotes.sp -------------------------------------------------------------------------------- /plugins/funvotes/votealltalk.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/funvotes/votealltalk.sp -------------------------------------------------------------------------------- /plugins/funvotes/voteburn.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/funvotes/voteburn.sp -------------------------------------------------------------------------------- /plugins/funvotes/voteff.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/funvotes/voteff.sp -------------------------------------------------------------------------------- /plugins/funvotes/votegravity.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/funvotes/votegravity.sp -------------------------------------------------------------------------------- /plugins/funvotes/voteslay.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/funvotes/voteslay.sp -------------------------------------------------------------------------------- /plugins/include/admin.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/include/admin.inc -------------------------------------------------------------------------------- /plugins/include/adminmenu.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/include/adminmenu.inc -------------------------------------------------------------------------------- /plugins/include/adt.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/include/adt.inc -------------------------------------------------------------------------------- /plugins/include/adt_array.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/include/adt_array.inc -------------------------------------------------------------------------------- /plugins/include/adt_stack.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/include/adt_stack.inc -------------------------------------------------------------------------------- /plugins/include/adt_trie.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/include/adt_trie.inc -------------------------------------------------------------------------------- /plugins/include/banning.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/include/banning.inc -------------------------------------------------------------------------------- /plugins/include/basecomm.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/include/basecomm.inc -------------------------------------------------------------------------------- /plugins/include/bitbuffer.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/include/bitbuffer.inc -------------------------------------------------------------------------------- /plugins/include/clientprefs.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/include/clientprefs.inc -------------------------------------------------------------------------------- /plugins/include/clients.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/include/clients.inc -------------------------------------------------------------------------------- /plugins/include/commandline.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/include/commandline.inc -------------------------------------------------------------------------------- /plugins/include/console.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/include/console.inc -------------------------------------------------------------------------------- /plugins/include/convars.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/include/convars.inc -------------------------------------------------------------------------------- /plugins/include/core.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/include/core.inc -------------------------------------------------------------------------------- /plugins/include/cstrike.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/include/cstrike.inc -------------------------------------------------------------------------------- /plugins/include/datapack.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/include/datapack.inc -------------------------------------------------------------------------------- /plugins/include/dbi.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/include/dbi.inc -------------------------------------------------------------------------------- /plugins/include/dhooks.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/include/dhooks.inc -------------------------------------------------------------------------------- /plugins/include/entity.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/include/entity.inc -------------------------------------------------------------------------------- /plugins/include/entitylump.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/include/entitylump.inc -------------------------------------------------------------------------------- /plugins/include/events.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/include/events.inc -------------------------------------------------------------------------------- /plugins/include/files.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/include/files.inc -------------------------------------------------------------------------------- /plugins/include/float.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/include/float.inc -------------------------------------------------------------------------------- /plugins/include/functions.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/include/functions.inc -------------------------------------------------------------------------------- /plugins/include/geoip.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/include/geoip.inc -------------------------------------------------------------------------------- /plugins/include/halflife.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/include/halflife.inc -------------------------------------------------------------------------------- /plugins/include/handles.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/include/handles.inc -------------------------------------------------------------------------------- /plugins/include/helpers.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/include/helpers.inc -------------------------------------------------------------------------------- /plugins/include/keyvalues.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/include/keyvalues.inc -------------------------------------------------------------------------------- /plugins/include/lang.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/include/lang.inc -------------------------------------------------------------------------------- /plugins/include/logging.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/include/logging.inc -------------------------------------------------------------------------------- /plugins/include/mapchooser.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/include/mapchooser.inc -------------------------------------------------------------------------------- /plugins/include/menus.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/include/menus.inc -------------------------------------------------------------------------------- /plugins/include/nextmap.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/include/nextmap.inc -------------------------------------------------------------------------------- /plugins/include/profiler.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/include/profiler.inc -------------------------------------------------------------------------------- /plugins/include/protobuf.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/include/protobuf.inc -------------------------------------------------------------------------------- /plugins/include/regex.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/include/regex.inc -------------------------------------------------------------------------------- /plugins/include/sdkhooks.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/include/sdkhooks.inc -------------------------------------------------------------------------------- /plugins/include/sdktools.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/include/sdktools.inc -------------------------------------------------------------------------------- /plugins/include/sorting.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/include/sorting.inc -------------------------------------------------------------------------------- /plugins/include/sourcemod.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/include/sourcemod.inc -------------------------------------------------------------------------------- /plugins/include/string.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/include/string.inc -------------------------------------------------------------------------------- /plugins/include/testing.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/include/testing.inc -------------------------------------------------------------------------------- /plugins/include/textparse.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/include/textparse.inc -------------------------------------------------------------------------------- /plugins/include/tf2.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/include/tf2.inc -------------------------------------------------------------------------------- /plugins/include/tf2_stocks.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/include/tf2_stocks.inc -------------------------------------------------------------------------------- /plugins/include/timers.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/include/timers.inc -------------------------------------------------------------------------------- /plugins/include/topmenus.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/include/topmenus.inc -------------------------------------------------------------------------------- /plugins/include/vector.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/include/vector.inc -------------------------------------------------------------------------------- /plugins/include/version.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/include/version.inc -------------------------------------------------------------------------------- /plugins/include/version.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/include/version.tpl -------------------------------------------------------------------------------- /plugins/mapchooser.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/mapchooser.sp -------------------------------------------------------------------------------- /plugins/nextmap.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/nextmap.sp -------------------------------------------------------------------------------- /plugins/nominations.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/nominations.sp -------------------------------------------------------------------------------- /plugins/playercommands.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/playercommands.sp -------------------------------------------------------------------------------- /plugins/playercommands/slap.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/playercommands/slap.sp -------------------------------------------------------------------------------- /plugins/playercommands/slay.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/playercommands/slay.sp -------------------------------------------------------------------------------- /plugins/randomcycle.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/randomcycle.sp -------------------------------------------------------------------------------- /plugins/reservedslots.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/reservedslots.sp -------------------------------------------------------------------------------- /plugins/rockthevote.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/rockthevote.sp -------------------------------------------------------------------------------- /plugins/sounds.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/sounds.sp -------------------------------------------------------------------------------- /plugins/sql-admin-manager.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/sql-admin-manager.sp -------------------------------------------------------------------------------- /plugins/testsuite/benchmark.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/testsuite/benchmark.sp -------------------------------------------------------------------------------- /plugins/testsuite/bug4059.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/testsuite/bug4059.sp -------------------------------------------------------------------------------- /plugins/testsuite/capstest.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/testsuite/capstest.sp -------------------------------------------------------------------------------- /plugins/testsuite/filetest.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/testsuite/filetest.sp -------------------------------------------------------------------------------- /plugins/testsuite/findmap.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/testsuite/findmap.sp -------------------------------------------------------------------------------- /plugins/testsuite/floats.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/testsuite/floats.sp -------------------------------------------------------------------------------- /plugins/testsuite/fwdtest1.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/testsuite/fwdtest1.sp -------------------------------------------------------------------------------- /plugins/testsuite/fwdtest2.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/testsuite/fwdtest2.sp -------------------------------------------------------------------------------- /plugins/testsuite/goto_test.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/testsuite/goto_test.sp -------------------------------------------------------------------------------- /plugins/testsuite/keyvalues.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/testsuite/keyvalues.sp -------------------------------------------------------------------------------- /plugins/testsuite/outputtest.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/testsuite/outputtest.sp -------------------------------------------------------------------------------- /plugins/testsuite/ptstest.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/testsuite/ptstest.sp -------------------------------------------------------------------------------- /plugins/testsuite/sorttest.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/testsuite/sorttest.sp -------------------------------------------------------------------------------- /plugins/testsuite/sqltest.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/testsuite/sqltest.sp -------------------------------------------------------------------------------- /plugins/testsuite/sqltest.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/testsuite/sqltest.sql -------------------------------------------------------------------------------- /plugins/testsuite/stacktest.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/testsuite/stacktest.sp -------------------------------------------------------------------------------- /plugins/testsuite/structtest.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/testsuite/structtest.sp -------------------------------------------------------------------------------- /plugins/testsuite/tf2-test.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/testsuite/tf2-test.sp -------------------------------------------------------------------------------- /plugins/testsuite/tries.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/plugins/testsuite/tries.sp -------------------------------------------------------------------------------- /product.version: -------------------------------------------------------------------------------- 1 | 1.12.0 2 | -------------------------------------------------------------------------------- /public/AutoHandleRooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/AutoHandleRooter.h -------------------------------------------------------------------------------- /public/CDetour/detourhelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/CDetour/detourhelpers.h -------------------------------------------------------------------------------- /public/CDetour/detours.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/CDetour/detours.cpp -------------------------------------------------------------------------------- /public/CDetour/detours.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/CDetour/detours.h -------------------------------------------------------------------------------- /public/IADTFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/IADTFactory.h -------------------------------------------------------------------------------- /public/IAdminSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/IAdminSystem.h -------------------------------------------------------------------------------- /public/ICellArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/ICellArray.h -------------------------------------------------------------------------------- /public/IDBDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/IDBDriver.h -------------------------------------------------------------------------------- /public/IExtensionSys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/IExtensionSys.h -------------------------------------------------------------------------------- /public/IForwardSys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/IForwardSys.h -------------------------------------------------------------------------------- /public/IGameConfigs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/IGameConfigs.h -------------------------------------------------------------------------------- /public/IGameHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/IGameHelpers.h -------------------------------------------------------------------------------- /public/IHandleSys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/IHandleSys.h -------------------------------------------------------------------------------- /public/ILibrarySys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/ILibrarySys.h -------------------------------------------------------------------------------- /public/IMemoryUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/IMemoryUtils.h -------------------------------------------------------------------------------- /public/IMenuManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/IMenuManager.h -------------------------------------------------------------------------------- /public/IPlayerHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/IPlayerHelpers.h -------------------------------------------------------------------------------- /public/IPluginSys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/IPluginSys.h -------------------------------------------------------------------------------- /public/IRootConsoleMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/IRootConsoleMenu.h -------------------------------------------------------------------------------- /public/IShareSys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/IShareSys.h -------------------------------------------------------------------------------- /public/ISourceMod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/ISourceMod.h -------------------------------------------------------------------------------- /public/ITextParsers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/ITextParsers.h -------------------------------------------------------------------------------- /public/IThreader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/IThreader.h -------------------------------------------------------------------------------- /public/ITimerSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/ITimerSystem.h -------------------------------------------------------------------------------- /public/ITranslator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/ITranslator.h -------------------------------------------------------------------------------- /public/IUserMessages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/IUserMessages.h -------------------------------------------------------------------------------- /public/ReentrantList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/ReentrantList.h -------------------------------------------------------------------------------- /public/asm/asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/asm/asm.c -------------------------------------------------------------------------------- /public/asm/asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/asm/asm.h -------------------------------------------------------------------------------- /public/compat_wrappers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/compat_wrappers.h -------------------------------------------------------------------------------- /public/extensions/IBinTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/extensions/IBinTools.h -------------------------------------------------------------------------------- /public/extensions/ISDKHooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/extensions/ISDKHooks.h -------------------------------------------------------------------------------- /public/extensions/ISDKTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/extensions/ISDKTools.h -------------------------------------------------------------------------------- /public/extensions/ITopMenus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/extensions/ITopMenus.h -------------------------------------------------------------------------------- /public/extensions/IWebternet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/extensions/IWebternet.h -------------------------------------------------------------------------------- /public/jit/jit_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/jit/jit_helpers.h -------------------------------------------------------------------------------- /public/jit/x86/x86_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/jit/x86/x86_macros.h -------------------------------------------------------------------------------- /public/libudis86/decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/libudis86/decode.c -------------------------------------------------------------------------------- /public/libudis86/decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/libudis86/decode.h -------------------------------------------------------------------------------- /public/libudis86/extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/libudis86/extern.h -------------------------------------------------------------------------------- /public/libudis86/itab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/libudis86/itab.c -------------------------------------------------------------------------------- /public/libudis86/itab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/libudis86/itab.h -------------------------------------------------------------------------------- /public/libudis86/syn-att.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/libudis86/syn-att.c -------------------------------------------------------------------------------- /public/libudis86/syn-intel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/libudis86/syn-intel.c -------------------------------------------------------------------------------- /public/libudis86/syn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/libudis86/syn.c -------------------------------------------------------------------------------- /public/libudis86/syn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/libudis86/syn.h -------------------------------------------------------------------------------- /public/libudis86/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/libudis86/types.h -------------------------------------------------------------------------------- /public/libudis86/udint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/libudis86/udint.h -------------------------------------------------------------------------------- /public/libudis86/udis86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/libudis86/udis86.c -------------------------------------------------------------------------------- /public/libudis86/udis86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/libudis86/udis86.h -------------------------------------------------------------------------------- /public/metamod_wrappers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/metamod_wrappers.h -------------------------------------------------------------------------------- /public/mms_sample_ext/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/mms_sample_ext/Makefile -------------------------------------------------------------------------------- /public/mms_sample_ext/sm_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/mms_sample_ext/sm_ext.h -------------------------------------------------------------------------------- /public/mms_sample_ext/stub_mm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/mms_sample_ext/stub_mm.h -------------------------------------------------------------------------------- /public/sample_ext/AMBuildScript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/sample_ext/AMBuildScript -------------------------------------------------------------------------------- /public/sample_ext/AMBuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/sample_ext/AMBuilder -------------------------------------------------------------------------------- /public/sample_ext/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/sample_ext/Makefile -------------------------------------------------------------------------------- /public/sample_ext/PackageScript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/sample_ext/PackageScript -------------------------------------------------------------------------------- /public/sample_ext/configure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/sample_ext/configure.py -------------------------------------------------------------------------------- /public/sample_ext/extension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/sample_ext/extension.cpp -------------------------------------------------------------------------------- /public/sample_ext/extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/sample_ext/extension.h -------------------------------------------------------------------------------- /public/sample_ext/msvc8/sdk.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/sample_ext/msvc8/sdk.sln -------------------------------------------------------------------------------- /public/sample_ext/msvc9/sdk.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/sample_ext/msvc9/sdk.sln -------------------------------------------------------------------------------- /public/sm_argbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/sm_argbuffer.h -------------------------------------------------------------------------------- /public/sm_invalidparamhandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/sm_invalidparamhandler.h -------------------------------------------------------------------------------- /public/sm_memtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/sm_memtable.h -------------------------------------------------------------------------------- /public/sm_namehashset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/sm_namehashset.h -------------------------------------------------------------------------------- /public/sm_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/sm_platform.h -------------------------------------------------------------------------------- /public/sm_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/sm_queue.h -------------------------------------------------------------------------------- /public/sm_stringhashmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/sm_stringhashmap.h -------------------------------------------------------------------------------- /public/sm_trie_tpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/sm_trie_tpl.h -------------------------------------------------------------------------------- /public/smsdk_ext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/smsdk_ext.cpp -------------------------------------------------------------------------------- /public/smsdk_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/smsdk_ext.h -------------------------------------------------------------------------------- /public/sourcemod_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/sourcemod_version.h -------------------------------------------------------------------------------- /public/vtable_hook_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/public/vtable_hook_helper.h -------------------------------------------------------------------------------- /pushbuild.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/pushbuild.txt -------------------------------------------------------------------------------- /tools/batchtool/compile.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/batchtool/compile.cfg -------------------------------------------------------------------------------- /tools/batchtool/compile.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/batchtool/compile.dpr -------------------------------------------------------------------------------- /tools/batchtool/compile.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/batchtool/compile.exe -------------------------------------------------------------------------------- /tools/batchtool/icon.rc: -------------------------------------------------------------------------------- 1 | SM ICON "pawn.ico" -------------------------------------------------------------------------------- /tools/batchtool/icon.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/batchtool/icon.res -------------------------------------------------------------------------------- /tools/batchtool/pawn.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/batchtool/pawn.ico -------------------------------------------------------------------------------- /tools/batchtool/uFunc.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/batchtool/uFunc.pas -------------------------------------------------------------------------------- /tools/batchtool/version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/batchtool/version.rc -------------------------------------------------------------------------------- /tools/batchtool/version.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/batchtool/version.res -------------------------------------------------------------------------------- /tools/buildbot/BreakpadSymbols: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/buildbot/BreakpadSymbols -------------------------------------------------------------------------------- /tools/buildbot/PackageHelpers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/buildbot/PackageHelpers -------------------------------------------------------------------------------- /tools/buildbot/PackageScript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/buildbot/PackageScript -------------------------------------------------------------------------------- /tools/buildbot/Versioning: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/buildbot/Versioning -------------------------------------------------------------------------------- /tools/buildbot/bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/buildbot/bootstrap.py -------------------------------------------------------------------------------- /tools/buildbot/build_type: -------------------------------------------------------------------------------- 1 | dev 2 | -------------------------------------------------------------------------------- /tools/buildbot/buildconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/buildbot/buildconfig.json -------------------------------------------------------------------------------- /tools/buildbot/helpers.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/buildbot/helpers.pm -------------------------------------------------------------------------------- /tools/buildbot/package.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/buildbot/package.pl -------------------------------------------------------------------------------- /tools/buildbot/startbuild.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/buildbot/startbuild.pl -------------------------------------------------------------------------------- /tools/buildbot/symstore.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/buildbot/symstore.pl -------------------------------------------------------------------------------- /tools/buildbot/trigger_full_rebuild: -------------------------------------------------------------------------------- 1 | August 18, 2020 2 | -------------------------------------------------------------------------------- /tools/checkout-deps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/checkout-deps.ps1 -------------------------------------------------------------------------------- /tools/checkout-deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/checkout-deps.sh -------------------------------------------------------------------------------- /tools/crc32/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/crc32/build.sh -------------------------------------------------------------------------------- /tools/crc32/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/crc32/main.cpp -------------------------------------------------------------------------------- /tools/entlumpparser/AMBuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/entlumpparser/AMBuilder -------------------------------------------------------------------------------- /tools/gamedata_md5/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/gamedata_md5/Makefile -------------------------------------------------------------------------------- /tools/gamedata_md5/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/gamedata_md5/main.cpp -------------------------------------------------------------------------------- /tools/gamedata_md5/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/gamedata_md5/main.h -------------------------------------------------------------------------------- /tools/gamedata_md5/md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/gamedata_md5/md5.cpp -------------------------------------------------------------------------------- /tools/gamedata_md5/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/gamedata_md5/md5.h -------------------------------------------------------------------------------- /tools/gdc-psyfork/DOCS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/gdc-psyfork/DOCS -------------------------------------------------------------------------------- /tools/gdc-psyfork/GameConfigs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/gdc-psyfork/GameConfigs.h -------------------------------------------------------------------------------- /tools/gdc-psyfork/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/gdc-psyfork/Makefile -------------------------------------------------------------------------------- /tools/gdc-psyfork/MemoryUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/gdc-psyfork/MemoryUtils.h -------------------------------------------------------------------------------- /tools/gdc-psyfork/TextParsers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/gdc-psyfork/TextParsers.h -------------------------------------------------------------------------------- /tools/gdc-psyfork/gdc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/gdc-psyfork/gdc.cpp -------------------------------------------------------------------------------- /tools/gdc-psyfork/gdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/gdc-psyfork/gdc.h -------------------------------------------------------------------------------- /tools/gdc-psyfork/sm_symtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/gdc-psyfork/sm_symtable.h -------------------------------------------------------------------------------- /tools/gdc-psyfork/symbols.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/gdc-psyfork/symbols.txt -------------------------------------------------------------------------------- /tools/gdc/DOCS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/gdc/DOCS -------------------------------------------------------------------------------- /tools/gdc/GameConfigs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/gdc/GameConfigs.cpp -------------------------------------------------------------------------------- /tools/gdc/GameConfigs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/gdc/GameConfigs.h -------------------------------------------------------------------------------- /tools/gdc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/gdc/Makefile -------------------------------------------------------------------------------- /tools/gdc/MemoryUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/gdc/MemoryUtils.cpp -------------------------------------------------------------------------------- /tools/gdc/MemoryUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/gdc/MemoryUtils.h -------------------------------------------------------------------------------- /tools/gdc/TextParsers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/gdc/TextParsers.cpp -------------------------------------------------------------------------------- /tools/gdc/TextParsers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/gdc/TextParsers.h -------------------------------------------------------------------------------- /tools/gdc/gdc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/gdc/gdc.cpp -------------------------------------------------------------------------------- /tools/gdc/gdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/gdc/gdc.h -------------------------------------------------------------------------------- /tools/gdc/sm_symtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/gdc/sm_symtable.h -------------------------------------------------------------------------------- /tools/gdc/symbols.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/gdc/symbols.txt -------------------------------------------------------------------------------- /tools/ghidra_scripts/makesig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/ghidra_scripts/makesig.py -------------------------------------------------------------------------------- /tools/ida_scripts/gcc_fpic.idc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/ida_scripts/gcc_fpic.idc -------------------------------------------------------------------------------- /tools/ida_scripts/makesig6.idc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/ida_scripts/makesig6.idc -------------------------------------------------------------------------------- /tools/ida_scripts/makesig7.idc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/ida_scripts/makesig7.idc -------------------------------------------------------------------------------- /tools/incparser/IncParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/incparser/IncParser.cs -------------------------------------------------------------------------------- /tools/incparser/ParseWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/incparser/ParseWriter.cs -------------------------------------------------------------------------------- /tools/incparser/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/incparser/Program.cs -------------------------------------------------------------------------------- /tools/incparser/incparser.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/incparser/incparser.sln -------------------------------------------------------------------------------- /tools/language_check/requirements.txt: -------------------------------------------------------------------------------- 1 | gql[aiohttp] 2 | -------------------------------------------------------------------------------- /tools/pcre/132html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/132html -------------------------------------------------------------------------------- /tools/pcre/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/AUTHORS -------------------------------------------------------------------------------- /tools/pcre/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/CMakeLists.txt -------------------------------------------------------------------------------- /tools/pcre/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/COPYING -------------------------------------------------------------------------------- /tools/pcre/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/ChangeLog -------------------------------------------------------------------------------- /tools/pcre/CheckMan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/CheckMan -------------------------------------------------------------------------------- /tools/pcre/CleanTxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/CleanTxt -------------------------------------------------------------------------------- /tools/pcre/Detrail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/Detrail -------------------------------------------------------------------------------- /tools/pcre/HACKING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/HACKING -------------------------------------------------------------------------------- /tools/pcre/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/INSTALL -------------------------------------------------------------------------------- /tools/pcre/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/LICENCE -------------------------------------------------------------------------------- /tools/pcre/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/Makefile.am -------------------------------------------------------------------------------- /tools/pcre/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/Makefile.in -------------------------------------------------------------------------------- /tools/pcre/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/NEWS -------------------------------------------------------------------------------- /tools/pcre/NON-AUTOTOOLS-BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/NON-AUTOTOOLS-BUILD -------------------------------------------------------------------------------- /tools/pcre/NON-UNIX-USE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/NON-UNIX-USE -------------------------------------------------------------------------------- /tools/pcre/PrepareRelease: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/PrepareRelease -------------------------------------------------------------------------------- /tools/pcre/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/README -------------------------------------------------------------------------------- /tools/pcre/RunGrepTest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/RunGrepTest -------------------------------------------------------------------------------- /tools/pcre/RunTest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/RunTest -------------------------------------------------------------------------------- /tools/pcre/RunTest.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/RunTest.bat -------------------------------------------------------------------------------- /tools/pcre/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/aclocal.m4 -------------------------------------------------------------------------------- /tools/pcre/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/compile -------------------------------------------------------------------------------- /tools/pcre/config-cmake.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/config-cmake.h.in -------------------------------------------------------------------------------- /tools/pcre/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/config.guess -------------------------------------------------------------------------------- /tools/pcre/config.h.generic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/config.h.generic -------------------------------------------------------------------------------- /tools/pcre/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/config.h.in -------------------------------------------------------------------------------- /tools/pcre/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/config.sub -------------------------------------------------------------------------------- /tools/pcre/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/configure -------------------------------------------------------------------------------- /tools/pcre/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/configure.ac -------------------------------------------------------------------------------- /tools/pcre/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/depcomp -------------------------------------------------------------------------------- /tools/pcre/dftables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/dftables.c -------------------------------------------------------------------------------- /tools/pcre/doc/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/doc/html/index.html -------------------------------------------------------------------------------- /tools/pcre/doc/html/pcre.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/doc/html/pcre.html -------------------------------------------------------------------------------- /tools/pcre/doc/html/pcre16.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/doc/html/pcre16.html -------------------------------------------------------------------------------- /tools/pcre/doc/index.html.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/doc/index.html.src -------------------------------------------------------------------------------- /tools/pcre/doc/pcre-config.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/doc/pcre-config.1 -------------------------------------------------------------------------------- /tools/pcre/doc/pcre-config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/doc/pcre-config.txt -------------------------------------------------------------------------------- /tools/pcre/doc/pcre.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/doc/pcre.3 -------------------------------------------------------------------------------- /tools/pcre/doc/pcre.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/doc/pcre.txt -------------------------------------------------------------------------------- /tools/pcre/doc/pcre16.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/doc/pcre16.3 -------------------------------------------------------------------------------- /tools/pcre/doc/pcre32.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/doc/pcre32.3 -------------------------------------------------------------------------------- /tools/pcre/doc/pcre_compile.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/doc/pcre_compile.3 -------------------------------------------------------------------------------- /tools/pcre/doc/pcre_compile2.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/doc/pcre_compile2.3 -------------------------------------------------------------------------------- /tools/pcre/doc/pcre_config.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/doc/pcre_config.3 -------------------------------------------------------------------------------- /tools/pcre/doc/pcre_dfa_exec.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/doc/pcre_dfa_exec.3 -------------------------------------------------------------------------------- /tools/pcre/doc/pcre_exec.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/doc/pcre_exec.3 -------------------------------------------------------------------------------- /tools/pcre/doc/pcre_fullinfo.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/doc/pcre_fullinfo.3 -------------------------------------------------------------------------------- /tools/pcre/doc/pcre_jit_exec.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/doc/pcre_jit_exec.3 -------------------------------------------------------------------------------- /tools/pcre/doc/pcre_refcount.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/doc/pcre_refcount.3 -------------------------------------------------------------------------------- /tools/pcre/doc/pcre_study.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/doc/pcre_study.3 -------------------------------------------------------------------------------- /tools/pcre/doc/pcre_version.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/doc/pcre_version.3 -------------------------------------------------------------------------------- /tools/pcre/doc/pcreapi.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/doc/pcreapi.3 -------------------------------------------------------------------------------- /tools/pcre/doc/pcrebuild.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/doc/pcrebuild.3 -------------------------------------------------------------------------------- /tools/pcre/doc/pcrecallout.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/doc/pcrecallout.3 -------------------------------------------------------------------------------- /tools/pcre/doc/pcrecompat.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/doc/pcrecompat.3 -------------------------------------------------------------------------------- /tools/pcre/doc/pcrecpp.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/doc/pcrecpp.3 -------------------------------------------------------------------------------- /tools/pcre/doc/pcregrep.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/doc/pcregrep.1 -------------------------------------------------------------------------------- /tools/pcre/doc/pcregrep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/doc/pcregrep.txt -------------------------------------------------------------------------------- /tools/pcre/doc/pcrejit.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/doc/pcrejit.3 -------------------------------------------------------------------------------- /tools/pcre/doc/pcrelimits.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/doc/pcrelimits.3 -------------------------------------------------------------------------------- /tools/pcre/doc/pcrematching.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/doc/pcrematching.3 -------------------------------------------------------------------------------- /tools/pcre/doc/pcrepartial.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/doc/pcrepartial.3 -------------------------------------------------------------------------------- /tools/pcre/doc/pcrepattern.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/doc/pcrepattern.3 -------------------------------------------------------------------------------- /tools/pcre/doc/pcreperform.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/doc/pcreperform.3 -------------------------------------------------------------------------------- /tools/pcre/doc/pcreposix.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/doc/pcreposix.3 -------------------------------------------------------------------------------- /tools/pcre/doc/pcreprecompile.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/doc/pcreprecompile.3 -------------------------------------------------------------------------------- /tools/pcre/doc/pcresample.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/doc/pcresample.3 -------------------------------------------------------------------------------- /tools/pcre/doc/pcrestack.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/doc/pcrestack.3 -------------------------------------------------------------------------------- /tools/pcre/doc/pcresyntax.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/doc/pcresyntax.3 -------------------------------------------------------------------------------- /tools/pcre/doc/pcretest.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/doc/pcretest.1 -------------------------------------------------------------------------------- /tools/pcre/doc/pcretest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/doc/pcretest.txt -------------------------------------------------------------------------------- /tools/pcre/doc/pcreunicode.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/doc/pcreunicode.3 -------------------------------------------------------------------------------- /tools/pcre/doc/perltest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/doc/perltest.txt -------------------------------------------------------------------------------- /tools/pcre/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/install-sh -------------------------------------------------------------------------------- /tools/pcre/libpcre.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/libpcre.pc.in -------------------------------------------------------------------------------- /tools/pcre/libpcre16.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/libpcre16.pc.in -------------------------------------------------------------------------------- /tools/pcre/libpcre32.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/libpcre32.pc.in -------------------------------------------------------------------------------- /tools/pcre/libpcrecpp.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/libpcrecpp.pc.in -------------------------------------------------------------------------------- /tools/pcre/libpcreposix.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/libpcreposix.pc.in -------------------------------------------------------------------------------- /tools/pcre/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/ltmain.sh -------------------------------------------------------------------------------- /tools/pcre/m4/ax_pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/m4/ax_pthread.m4 -------------------------------------------------------------------------------- /tools/pcre/m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/m4/libtool.m4 -------------------------------------------------------------------------------- /tools/pcre/m4/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/m4/ltoptions.m4 -------------------------------------------------------------------------------- /tools/pcre/m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/m4/ltsugar.m4 -------------------------------------------------------------------------------- /tools/pcre/m4/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/m4/ltversion.m4 -------------------------------------------------------------------------------- /tools/pcre/m4/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/m4/lt~obsolete.m4 -------------------------------------------------------------------------------- /tools/pcre/makevp.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/makevp.bat -------------------------------------------------------------------------------- /tools/pcre/makevp_c.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/makevp_c.txt -------------------------------------------------------------------------------- /tools/pcre/makevp_l.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/makevp_l.txt -------------------------------------------------------------------------------- /tools/pcre/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/missing -------------------------------------------------------------------------------- /tools/pcre/pcre-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcre-config.in -------------------------------------------------------------------------------- /tools/pcre/pcre.h.generic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcre.h.generic -------------------------------------------------------------------------------- /tools/pcre/pcre.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcre.h.in -------------------------------------------------------------------------------- /tools/pcre/pcre16_byte_order.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcre16_byte_order.c -------------------------------------------------------------------------------- /tools/pcre/pcre16_chartables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcre16_chartables.c -------------------------------------------------------------------------------- /tools/pcre/pcre16_compile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcre16_compile.c -------------------------------------------------------------------------------- /tools/pcre/pcre16_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcre16_config.c -------------------------------------------------------------------------------- /tools/pcre/pcre16_dfa_exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcre16_dfa_exec.c -------------------------------------------------------------------------------- /tools/pcre/pcre16_exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcre16_exec.c -------------------------------------------------------------------------------- /tools/pcre/pcre16_fullinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcre16_fullinfo.c -------------------------------------------------------------------------------- /tools/pcre/pcre16_get.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcre16_get.c -------------------------------------------------------------------------------- /tools/pcre/pcre16_globals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcre16_globals.c -------------------------------------------------------------------------------- /tools/pcre/pcre16_jit_compile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcre16_jit_compile.c -------------------------------------------------------------------------------- /tools/pcre/pcre16_maketables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcre16_maketables.c -------------------------------------------------------------------------------- /tools/pcre/pcre16_newline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcre16_newline.c -------------------------------------------------------------------------------- /tools/pcre/pcre16_ord2utf16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcre16_ord2utf16.c -------------------------------------------------------------------------------- /tools/pcre/pcre16_printint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcre16_printint.c -------------------------------------------------------------------------------- /tools/pcre/pcre16_refcount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcre16_refcount.c -------------------------------------------------------------------------------- /tools/pcre/pcre16_study.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcre16_study.c -------------------------------------------------------------------------------- /tools/pcre/pcre16_tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcre16_tables.c -------------------------------------------------------------------------------- /tools/pcre/pcre16_ucd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcre16_ucd.c -------------------------------------------------------------------------------- /tools/pcre/pcre16_utf16_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcre16_utf16_utils.c -------------------------------------------------------------------------------- /tools/pcre/pcre16_valid_utf16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcre16_valid_utf16.c -------------------------------------------------------------------------------- /tools/pcre/pcre16_version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcre16_version.c -------------------------------------------------------------------------------- /tools/pcre/pcre16_xclass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcre16_xclass.c -------------------------------------------------------------------------------- /tools/pcre/pcre32_byte_order.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcre32_byte_order.c -------------------------------------------------------------------------------- /tools/pcre/pcre32_chartables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcre32_chartables.c -------------------------------------------------------------------------------- /tools/pcre/pcre32_compile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcre32_compile.c -------------------------------------------------------------------------------- /tools/pcre/pcre32_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcre32_config.c -------------------------------------------------------------------------------- /tools/pcre/pcre32_dfa_exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcre32_dfa_exec.c -------------------------------------------------------------------------------- /tools/pcre/pcre32_exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcre32_exec.c -------------------------------------------------------------------------------- /tools/pcre/pcre32_fullinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcre32_fullinfo.c -------------------------------------------------------------------------------- /tools/pcre/pcre32_get.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcre32_get.c -------------------------------------------------------------------------------- /tools/pcre/pcre32_globals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcre32_globals.c -------------------------------------------------------------------------------- /tools/pcre/pcre32_jit_compile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcre32_jit_compile.c -------------------------------------------------------------------------------- /tools/pcre/pcre32_maketables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcre32_maketables.c -------------------------------------------------------------------------------- /tools/pcre/pcre32_newline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcre32_newline.c -------------------------------------------------------------------------------- /tools/pcre/pcre32_ord2utf32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcre32_ord2utf32.c -------------------------------------------------------------------------------- /tools/pcre/pcre32_printint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcre32_printint.c -------------------------------------------------------------------------------- /tools/pcre/pcre32_refcount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcre32_refcount.c -------------------------------------------------------------------------------- /tools/pcre/pcre32_study.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcre32_study.c -------------------------------------------------------------------------------- /tools/pcre/pcre32_tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcre32_tables.c -------------------------------------------------------------------------------- /tools/pcre/pcre32_ucd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcre32_ucd.c -------------------------------------------------------------------------------- /tools/pcre/pcre32_utf32_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcre32_utf32_utils.c -------------------------------------------------------------------------------- /tools/pcre/pcre32_valid_utf32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcre32_valid_utf32.c -------------------------------------------------------------------------------- /tools/pcre/pcre32_version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcre32_version.c -------------------------------------------------------------------------------- /tools/pcre/pcre32_xclass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcre32_xclass.c -------------------------------------------------------------------------------- /tools/pcre/pcre_byte_order.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcre_byte_order.c -------------------------------------------------------------------------------- /tools/pcre/pcre_compile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcre_compile.c -------------------------------------------------------------------------------- /tools/pcre/pcre_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcre_config.c -------------------------------------------------------------------------------- /tools/pcre/pcre_dfa_exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcre_dfa_exec.c -------------------------------------------------------------------------------- /tools/pcre/pcre_exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcre_exec.c -------------------------------------------------------------------------------- /tools/pcre/pcre_fullinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcre_fullinfo.c -------------------------------------------------------------------------------- /tools/pcre/pcre_get.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcre_get.c -------------------------------------------------------------------------------- /tools/pcre/pcre_globals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcre_globals.c -------------------------------------------------------------------------------- /tools/pcre/pcre_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcre_internal.h -------------------------------------------------------------------------------- /tools/pcre/pcre_jit_compile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcre_jit_compile.c -------------------------------------------------------------------------------- /tools/pcre/pcre_jit_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcre_jit_test.c -------------------------------------------------------------------------------- /tools/pcre/pcre_maketables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcre_maketables.c -------------------------------------------------------------------------------- /tools/pcre/pcre_newline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcre_newline.c -------------------------------------------------------------------------------- /tools/pcre/pcre_ord2utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcre_ord2utf8.c -------------------------------------------------------------------------------- /tools/pcre/pcre_printint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcre_printint.c -------------------------------------------------------------------------------- /tools/pcre/pcre_refcount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcre_refcount.c -------------------------------------------------------------------------------- /tools/pcre/pcre_scanner.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcre_scanner.cc -------------------------------------------------------------------------------- /tools/pcre/pcre_scanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcre_scanner.h -------------------------------------------------------------------------------- /tools/pcre/pcre_string_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcre_string_utils.c -------------------------------------------------------------------------------- /tools/pcre/pcre_stringpiece.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcre_stringpiece.cc -------------------------------------------------------------------------------- /tools/pcre/pcre_study.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcre_study.c -------------------------------------------------------------------------------- /tools/pcre/pcre_tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcre_tables.c -------------------------------------------------------------------------------- /tools/pcre/pcre_ucd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcre_ucd.c -------------------------------------------------------------------------------- /tools/pcre/pcre_valid_utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcre_valid_utf8.c -------------------------------------------------------------------------------- /tools/pcre/pcre_version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcre_version.c -------------------------------------------------------------------------------- /tools/pcre/pcre_xclass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcre_xclass.c -------------------------------------------------------------------------------- /tools/pcre/pcrecpp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcrecpp.cc -------------------------------------------------------------------------------- /tools/pcre/pcrecpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcrecpp.h -------------------------------------------------------------------------------- /tools/pcre/pcrecpp_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcrecpp_internal.h -------------------------------------------------------------------------------- /tools/pcre/pcrecpp_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcrecpp_unittest.cc -------------------------------------------------------------------------------- /tools/pcre/pcrecpparg.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcrecpparg.h.in -------------------------------------------------------------------------------- /tools/pcre/pcredemo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcredemo.c -------------------------------------------------------------------------------- /tools/pcre/pcregexp.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcregexp.pas -------------------------------------------------------------------------------- /tools/pcre/pcregrep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcregrep.c -------------------------------------------------------------------------------- /tools/pcre/pcreposix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcreposix.c -------------------------------------------------------------------------------- /tools/pcre/pcreposix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcreposix.h -------------------------------------------------------------------------------- /tools/pcre/pcretest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/pcretest.c -------------------------------------------------------------------------------- /tools/pcre/perltest.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/perltest.pl -------------------------------------------------------------------------------- /tools/pcre/sljit/sljitConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/sljit/sljitConfig.h -------------------------------------------------------------------------------- /tools/pcre/sljit/sljitLir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/sljit/sljitLir.c -------------------------------------------------------------------------------- /tools/pcre/sljit/sljitLir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/sljit/sljitLir.h -------------------------------------------------------------------------------- /tools/pcre/sljit/sljitUtils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/sljit/sljitUtils.c -------------------------------------------------------------------------------- /tools/pcre/testdata/grepbinary: -------------------------------------------------------------------------------- 1 | The quick brown fx jumps over the lazy dog. 2 | -------------------------------------------------------------------------------- /tools/pcre/testdata/grepinput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/testdata/grepinput -------------------------------------------------------------------------------- /tools/pcre/testdata/grepinput3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/testdata/grepinput3 -------------------------------------------------------------------------------- /tools/pcre/testdata/grepinput8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/testdata/grepinput8 -------------------------------------------------------------------------------- /tools/pcre/testdata/grepinputv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/testdata/grepinputv -------------------------------------------------------------------------------- /tools/pcre/testdata/grepinputx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/testdata/grepinputx -------------------------------------------------------------------------------- /tools/pcre/testdata/greplist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/testdata/greplist -------------------------------------------------------------------------------- /tools/pcre/testdata/grepoutput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/testdata/grepoutput -------------------------------------------------------------------------------- /tools/pcre/testdata/grepoutput8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/testdata/grepoutput8 -------------------------------------------------------------------------------- /tools/pcre/testdata/grepoutputN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/testdata/grepoutputN -------------------------------------------------------------------------------- /tools/pcre/testdata/greppatN4: -------------------------------------------------------------------------------- 1 | xxx 2 | jkl -------------------------------------------------------------------------------- /tools/pcre/testdata/saved16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/testdata/saved16 -------------------------------------------------------------------------------- /tools/pcre/testdata/saved16BE-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/testdata/saved16BE-1 -------------------------------------------------------------------------------- /tools/pcre/testdata/saved16BE-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/testdata/saved16BE-2 -------------------------------------------------------------------------------- /tools/pcre/testdata/saved16LE-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/testdata/saved16LE-1 -------------------------------------------------------------------------------- /tools/pcre/testdata/saved16LE-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/testdata/saved16LE-2 -------------------------------------------------------------------------------- /tools/pcre/testdata/saved32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/testdata/saved32 -------------------------------------------------------------------------------- /tools/pcre/testdata/saved32BE-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/testdata/saved32BE-1 -------------------------------------------------------------------------------- /tools/pcre/testdata/saved32BE-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/testdata/saved32BE-2 -------------------------------------------------------------------------------- /tools/pcre/testdata/saved32LE-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/testdata/saved32LE-1 -------------------------------------------------------------------------------- /tools/pcre/testdata/saved32LE-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/testdata/saved32LE-2 -------------------------------------------------------------------------------- /tools/pcre/testdata/saved8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/testdata/saved8 -------------------------------------------------------------------------------- /tools/pcre/testdata/testinput1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/testdata/testinput1 -------------------------------------------------------------------------------- /tools/pcre/testdata/testinput10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/testdata/testinput10 -------------------------------------------------------------------------------- /tools/pcre/testdata/testinput11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/testdata/testinput11 -------------------------------------------------------------------------------- /tools/pcre/testdata/testinput12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/testdata/testinput12 -------------------------------------------------------------------------------- /tools/pcre/testdata/testinput13: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/testdata/testinput13 -------------------------------------------------------------------------------- /tools/pcre/testdata/testinput14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/testdata/testinput14 -------------------------------------------------------------------------------- /tools/pcre/testdata/testinput15: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/testdata/testinput15 -------------------------------------------------------------------------------- /tools/pcre/testdata/testinput16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/testdata/testinput16 -------------------------------------------------------------------------------- /tools/pcre/testdata/testinput17: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/testdata/testinput17 -------------------------------------------------------------------------------- /tools/pcre/testdata/testinput18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/testdata/testinput18 -------------------------------------------------------------------------------- /tools/pcre/testdata/testinput19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/testdata/testinput19 -------------------------------------------------------------------------------- /tools/pcre/testdata/testinput2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/testdata/testinput2 -------------------------------------------------------------------------------- /tools/pcre/testdata/testinput20: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/testdata/testinput20 -------------------------------------------------------------------------------- /tools/pcre/testdata/testinput21: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/testdata/testinput21 -------------------------------------------------------------------------------- /tools/pcre/testdata/testinput22: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/testdata/testinput22 -------------------------------------------------------------------------------- /tools/pcre/testdata/testinput23: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/testdata/testinput23 -------------------------------------------------------------------------------- /tools/pcre/testdata/testinput24: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/testdata/testinput24 -------------------------------------------------------------------------------- /tools/pcre/testdata/testinput25: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/testdata/testinput25 -------------------------------------------------------------------------------- /tools/pcre/testdata/testinput26: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/testdata/testinput26 -------------------------------------------------------------------------------- /tools/pcre/testdata/testinput3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/testdata/testinput3 -------------------------------------------------------------------------------- /tools/pcre/testdata/testinput4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/testdata/testinput4 -------------------------------------------------------------------------------- /tools/pcre/testdata/testinput5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/testdata/testinput5 -------------------------------------------------------------------------------- /tools/pcre/testdata/testinput6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/testdata/testinput6 -------------------------------------------------------------------------------- /tools/pcre/testdata/testinput7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/testdata/testinput7 -------------------------------------------------------------------------------- /tools/pcre/testdata/testinput8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/testdata/testinput8 -------------------------------------------------------------------------------- /tools/pcre/ucp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/pcre/ucp.h -------------------------------------------------------------------------------- /tools/vtable_scanner/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/vtable_scanner/Makefile -------------------------------------------------------------------------------- /tools/vtable_scanner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/tools/vtable_scanner/main.cpp -------------------------------------------------------------------------------- /translations/core.phrases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/translations/core.phrases.txt -------------------------------------------------------------------------------- /translations/th/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /versionlib/AMBuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/versionlib/AMBuilder -------------------------------------------------------------------------------- /versionlib/versionlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/versionlib/versionlib.cpp -------------------------------------------------------------------------------- /versionlib/versionlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliedmodders/source2mod/HEAD/versionlib/versionlib.h --------------------------------------------------------------------------------