├── .gitignore ├── .gitmodules ├── .travis.yml ├── Android.mk ├── Parabot.def ├── Parabot.dsp ├── Parabot.dsw ├── README.md ├── addons └── parabot │ ├── Readme.txt │ └── config │ └── lang │ ├── ChatCzech.txt │ ├── ChatDanish.txt │ ├── ChatEnglish.txt │ ├── ChatFinnish.txt │ ├── ChatFrench.txt │ ├── ChatGerman.txt │ ├── ChatRomanian.txt │ ├── ChatRussian.txt │ ├── ChatSpanish.txt │ └── ChatSwedish.txt ├── android ├── AndroidManifest.xml ├── build-manual.sh ├── build.sh ├── build.xml ├── jni │ ├── Android.mk │ ├── Application.mk │ ├── Parabot │ └── mod_config.mk ├── makepak.py ├── project.properties ├── res │ ├── drawable-hdpi │ │ └── logo_xash_pb.png │ ├── drawable-mdpi │ │ └── logo_xash_pb.png │ ├── drawable-xhdpi │ │ └── logo_xash_pb.png │ ├── drawable-xxhdpi │ │ └── logo_xash_pb.png │ ├── drawable-xxxhdpi │ │ └── logo_xash_pb.png │ ├── drawable │ │ └── logo_xash_pb.png │ ├── layout │ │ └── activity_launcher.xml │ ├── values-ru │ │ └── strings.xml │ └── values │ │ └── strings.xml └── src │ └── su │ └── xash │ └── xash3d │ ├── InstallReceiver.java │ └── LauncherActivity.java ├── bot ├── bot.cpp ├── bot.h ├── bot_client.cpp ├── bot_client.h ├── bot_func.h ├── bot_weapons.h ├── hl_classes.h ├── marker.cpp ├── marker.h ├── parabot.cpp ├── parabot.h ├── pb_action.cpp ├── pb_action.h ├── pb_cell.cpp ├── pb_cell.h ├── pb_chat.cpp ├── pb_chat.h ├── pb_combat.cpp ├── pb_combat.h ├── pb_combatgoals.cpp ├── pb_configuration.cpp ├── pb_configuration.h ├── pb_focus.cpp ├── pb_focus.h ├── pb_global.cpp ├── pb_global.h ├── pb_goalfinder.cpp ├── pb_goalfinder.h ├── pb_goals.cpp ├── pb_goals.h ├── pb_journey.cpp ├── pb_journey.h ├── pb_kills.cpp ├── pb_kills.h ├── pb_mapcells.cpp ├── pb_mapcells.h ├── pb_mapgraph.cpp ├── pb_mapgraph.h ├── pb_mapimport.cpp ├── pb_navpoint.cpp ├── pb_navpoint.h ├── pb_needs.cpp ├── pb_needs.h ├── pb_observer.cpp ├── pb_observer.h ├── pb_path.cpp ├── pb_path.h ├── pb_perception.cpp ├── pb_perception.h ├── pb_roaming.cpp ├── pb_roaming.h ├── pb_sectors.cpp ├── pb_sectors.h ├── pb_team.cpp ├── pb_vistable.cpp ├── pb_vistable.h ├── pb_weapon.cpp ├── pb_weapon.h ├── pb_weaponhandling.cpp ├── pb_weaponhandling.h ├── pbt_dynarray.cpp ├── pbt_dynarray.h ├── pbt_priorityqueue.cpp ├── pbt_priorityqueue.h ├── sounds.cpp ├── sounds.h ├── utilityfuncs.cpp └── utilityfuncs.h ├── common ├── const.h ├── cvardef.h ├── entity_state.h ├── mathlib.h └── usercmd.h ├── dlls ├── Android.mk ├── Makefile ├── cbase.h ├── cdll_dll.h ├── commands.cpp ├── dll.cpp ├── engine.cpp ├── engine.h ├── enginecallback.h ├── exportdef.h ├── extdll.h ├── h_export.cpp ├── linkfunc.cpp ├── monsterevent.h ├── pakextractor.h ├── saverestore.h ├── startframe.cpp ├── utf8_strfunc.h ├── util.cpp ├── util.h └── vector.h ├── engine ├── custom.h ├── edict.h ├── eiface.h └── progdefs.h ├── metamod ├── dllapi.h ├── engine_api.h ├── meta_api.cpp ├── meta_api.h ├── mutil.h └── plinfo.h ├── pm_shared └── pm_info.h └── utils └── dynpq.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/.travis.yml -------------------------------------------------------------------------------- /Android.mk: -------------------------------------------------------------------------------- 1 | include $(call all-subdir-makefiles) 2 | -------------------------------------------------------------------------------- /Parabot.def: -------------------------------------------------------------------------------- 1 | LIBRARY Parabot 2 | EXPORTS 3 | GiveFnptrsToDll @1 4 | SECTIONS 5 | .data READ WRITE 6 | -------------------------------------------------------------------------------- /Parabot.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/Parabot.dsp -------------------------------------------------------------------------------- /Parabot.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/Parabot.dsw -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/README.md -------------------------------------------------------------------------------- /addons/parabot/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/addons/parabot/Readme.txt -------------------------------------------------------------------------------- /addons/parabot/config/lang/ChatCzech.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/addons/parabot/config/lang/ChatCzech.txt -------------------------------------------------------------------------------- /addons/parabot/config/lang/ChatDanish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/addons/parabot/config/lang/ChatDanish.txt -------------------------------------------------------------------------------- /addons/parabot/config/lang/ChatEnglish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/addons/parabot/config/lang/ChatEnglish.txt -------------------------------------------------------------------------------- /addons/parabot/config/lang/ChatFinnish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/addons/parabot/config/lang/ChatFinnish.txt -------------------------------------------------------------------------------- /addons/parabot/config/lang/ChatFrench.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/addons/parabot/config/lang/ChatFrench.txt -------------------------------------------------------------------------------- /addons/parabot/config/lang/ChatGerman.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/addons/parabot/config/lang/ChatGerman.txt -------------------------------------------------------------------------------- /addons/parabot/config/lang/ChatRomanian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/addons/parabot/config/lang/ChatRomanian.txt -------------------------------------------------------------------------------- /addons/parabot/config/lang/ChatRussian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/addons/parabot/config/lang/ChatRussian.txt -------------------------------------------------------------------------------- /addons/parabot/config/lang/ChatSpanish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/addons/parabot/config/lang/ChatSpanish.txt -------------------------------------------------------------------------------- /addons/parabot/config/lang/ChatSwedish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/addons/parabot/config/lang/ChatSwedish.txt -------------------------------------------------------------------------------- /android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/android/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build-manual.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/android/build-manual.sh -------------------------------------------------------------------------------- /android/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/android/build.sh -------------------------------------------------------------------------------- /android/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/android/build.xml -------------------------------------------------------------------------------- /android/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/android/jni/Android.mk -------------------------------------------------------------------------------- /android/jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/android/jni/Application.mk -------------------------------------------------------------------------------- /android/jni/Parabot: -------------------------------------------------------------------------------- 1 | ../../../Parabot -------------------------------------------------------------------------------- /android/jni/mod_config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/android/jni/mod_config.mk -------------------------------------------------------------------------------- /android/makepak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/android/makepak.py -------------------------------------------------------------------------------- /android/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/android/project.properties -------------------------------------------------------------------------------- /android/res/drawable-hdpi/logo_xash_pb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/android/res/drawable-hdpi/logo_xash_pb.png -------------------------------------------------------------------------------- /android/res/drawable-mdpi/logo_xash_pb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/android/res/drawable-mdpi/logo_xash_pb.png -------------------------------------------------------------------------------- /android/res/drawable-xhdpi/logo_xash_pb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/android/res/drawable-xhdpi/logo_xash_pb.png -------------------------------------------------------------------------------- /android/res/drawable-xxhdpi/logo_xash_pb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/android/res/drawable-xxhdpi/logo_xash_pb.png -------------------------------------------------------------------------------- /android/res/drawable-xxxhdpi/logo_xash_pb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/android/res/drawable-xxxhdpi/logo_xash_pb.png -------------------------------------------------------------------------------- /android/res/drawable/logo_xash_pb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/android/res/drawable/logo_xash_pb.png -------------------------------------------------------------------------------- /android/res/layout/activity_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/android/res/layout/activity_launcher.xml -------------------------------------------------------------------------------- /android/res/values-ru/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/android/res/values-ru/strings.xml -------------------------------------------------------------------------------- /android/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/android/res/values/strings.xml -------------------------------------------------------------------------------- /android/src/su/xash/xash3d/InstallReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/android/src/su/xash/xash3d/InstallReceiver.java -------------------------------------------------------------------------------- /android/src/su/xash/xash3d/LauncherActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/android/src/su/xash/xash3d/LauncherActivity.java -------------------------------------------------------------------------------- /bot/bot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/bot/bot.cpp -------------------------------------------------------------------------------- /bot/bot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/bot/bot.h -------------------------------------------------------------------------------- /bot/bot_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/bot/bot_client.cpp -------------------------------------------------------------------------------- /bot/bot_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/bot/bot_client.h -------------------------------------------------------------------------------- /bot/bot_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/bot/bot_func.h -------------------------------------------------------------------------------- /bot/bot_weapons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/bot/bot_weapons.h -------------------------------------------------------------------------------- /bot/hl_classes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/bot/hl_classes.h -------------------------------------------------------------------------------- /bot/marker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/bot/marker.cpp -------------------------------------------------------------------------------- /bot/marker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/bot/marker.h -------------------------------------------------------------------------------- /bot/parabot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/bot/parabot.cpp -------------------------------------------------------------------------------- /bot/parabot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/bot/parabot.h -------------------------------------------------------------------------------- /bot/pb_action.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/bot/pb_action.cpp -------------------------------------------------------------------------------- /bot/pb_action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/bot/pb_action.h -------------------------------------------------------------------------------- /bot/pb_cell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/bot/pb_cell.cpp -------------------------------------------------------------------------------- /bot/pb_cell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/bot/pb_cell.h -------------------------------------------------------------------------------- /bot/pb_chat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/bot/pb_chat.cpp -------------------------------------------------------------------------------- /bot/pb_chat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/bot/pb_chat.h -------------------------------------------------------------------------------- /bot/pb_combat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/bot/pb_combat.cpp -------------------------------------------------------------------------------- /bot/pb_combat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/bot/pb_combat.h -------------------------------------------------------------------------------- /bot/pb_combatgoals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/bot/pb_combatgoals.cpp -------------------------------------------------------------------------------- /bot/pb_configuration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/bot/pb_configuration.cpp -------------------------------------------------------------------------------- /bot/pb_configuration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/bot/pb_configuration.h -------------------------------------------------------------------------------- /bot/pb_focus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/bot/pb_focus.cpp -------------------------------------------------------------------------------- /bot/pb_focus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/bot/pb_focus.h -------------------------------------------------------------------------------- /bot/pb_global.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/bot/pb_global.cpp -------------------------------------------------------------------------------- /bot/pb_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/bot/pb_global.h -------------------------------------------------------------------------------- /bot/pb_goalfinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/bot/pb_goalfinder.cpp -------------------------------------------------------------------------------- /bot/pb_goalfinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/bot/pb_goalfinder.h -------------------------------------------------------------------------------- /bot/pb_goals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/bot/pb_goals.cpp -------------------------------------------------------------------------------- /bot/pb_goals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/bot/pb_goals.h -------------------------------------------------------------------------------- /bot/pb_journey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/bot/pb_journey.cpp -------------------------------------------------------------------------------- /bot/pb_journey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/bot/pb_journey.h -------------------------------------------------------------------------------- /bot/pb_kills.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/bot/pb_kills.cpp -------------------------------------------------------------------------------- /bot/pb_kills.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/bot/pb_kills.h -------------------------------------------------------------------------------- /bot/pb_mapcells.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/bot/pb_mapcells.cpp -------------------------------------------------------------------------------- /bot/pb_mapcells.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/bot/pb_mapcells.h -------------------------------------------------------------------------------- /bot/pb_mapgraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/bot/pb_mapgraph.cpp -------------------------------------------------------------------------------- /bot/pb_mapgraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/bot/pb_mapgraph.h -------------------------------------------------------------------------------- /bot/pb_mapimport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/bot/pb_mapimport.cpp -------------------------------------------------------------------------------- /bot/pb_navpoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/bot/pb_navpoint.cpp -------------------------------------------------------------------------------- /bot/pb_navpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/bot/pb_navpoint.h -------------------------------------------------------------------------------- /bot/pb_needs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/bot/pb_needs.cpp -------------------------------------------------------------------------------- /bot/pb_needs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/bot/pb_needs.h -------------------------------------------------------------------------------- /bot/pb_observer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/bot/pb_observer.cpp -------------------------------------------------------------------------------- /bot/pb_observer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/bot/pb_observer.h -------------------------------------------------------------------------------- /bot/pb_path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/bot/pb_path.cpp -------------------------------------------------------------------------------- /bot/pb_path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/bot/pb_path.h -------------------------------------------------------------------------------- /bot/pb_perception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/bot/pb_perception.cpp -------------------------------------------------------------------------------- /bot/pb_perception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/bot/pb_perception.h -------------------------------------------------------------------------------- /bot/pb_roaming.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/bot/pb_roaming.cpp -------------------------------------------------------------------------------- /bot/pb_roaming.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/bot/pb_roaming.h -------------------------------------------------------------------------------- /bot/pb_sectors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/bot/pb_sectors.cpp -------------------------------------------------------------------------------- /bot/pb_sectors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/bot/pb_sectors.h -------------------------------------------------------------------------------- /bot/pb_team.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/bot/pb_team.cpp -------------------------------------------------------------------------------- /bot/pb_vistable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/bot/pb_vistable.cpp -------------------------------------------------------------------------------- /bot/pb_vistable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/bot/pb_vistable.h -------------------------------------------------------------------------------- /bot/pb_weapon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/bot/pb_weapon.cpp -------------------------------------------------------------------------------- /bot/pb_weapon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/bot/pb_weapon.h -------------------------------------------------------------------------------- /bot/pb_weaponhandling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/bot/pb_weaponhandling.cpp -------------------------------------------------------------------------------- /bot/pb_weaponhandling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/bot/pb_weaponhandling.h -------------------------------------------------------------------------------- /bot/pbt_dynarray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/bot/pbt_dynarray.cpp -------------------------------------------------------------------------------- /bot/pbt_dynarray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/bot/pbt_dynarray.h -------------------------------------------------------------------------------- /bot/pbt_priorityqueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/bot/pbt_priorityqueue.cpp -------------------------------------------------------------------------------- /bot/pbt_priorityqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/bot/pbt_priorityqueue.h -------------------------------------------------------------------------------- /bot/sounds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/bot/sounds.cpp -------------------------------------------------------------------------------- /bot/sounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/bot/sounds.h -------------------------------------------------------------------------------- /bot/utilityfuncs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/bot/utilityfuncs.cpp -------------------------------------------------------------------------------- /bot/utilityfuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/bot/utilityfuncs.h -------------------------------------------------------------------------------- /common/const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/common/const.h -------------------------------------------------------------------------------- /common/cvardef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/common/cvardef.h -------------------------------------------------------------------------------- /common/entity_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/common/entity_state.h -------------------------------------------------------------------------------- /common/mathlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/common/mathlib.h -------------------------------------------------------------------------------- /common/usercmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/common/usercmd.h -------------------------------------------------------------------------------- /dlls/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/dlls/Android.mk -------------------------------------------------------------------------------- /dlls/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/dlls/Makefile -------------------------------------------------------------------------------- /dlls/cbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/dlls/cbase.h -------------------------------------------------------------------------------- /dlls/cdll_dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/dlls/cdll_dll.h -------------------------------------------------------------------------------- /dlls/commands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/dlls/commands.cpp -------------------------------------------------------------------------------- /dlls/dll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/dlls/dll.cpp -------------------------------------------------------------------------------- /dlls/engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/dlls/engine.cpp -------------------------------------------------------------------------------- /dlls/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/dlls/engine.h -------------------------------------------------------------------------------- /dlls/enginecallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/dlls/enginecallback.h -------------------------------------------------------------------------------- /dlls/exportdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/dlls/exportdef.h -------------------------------------------------------------------------------- /dlls/extdll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/dlls/extdll.h -------------------------------------------------------------------------------- /dlls/h_export.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/dlls/h_export.cpp -------------------------------------------------------------------------------- /dlls/linkfunc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/dlls/linkfunc.cpp -------------------------------------------------------------------------------- /dlls/monsterevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/dlls/monsterevent.h -------------------------------------------------------------------------------- /dlls/pakextractor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/dlls/pakextractor.h -------------------------------------------------------------------------------- /dlls/saverestore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/dlls/saverestore.h -------------------------------------------------------------------------------- /dlls/startframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/dlls/startframe.cpp -------------------------------------------------------------------------------- /dlls/utf8_strfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/dlls/utf8_strfunc.h -------------------------------------------------------------------------------- /dlls/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/dlls/util.cpp -------------------------------------------------------------------------------- /dlls/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/dlls/util.h -------------------------------------------------------------------------------- /dlls/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/dlls/vector.h -------------------------------------------------------------------------------- /engine/custom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/engine/custom.h -------------------------------------------------------------------------------- /engine/edict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/engine/edict.h -------------------------------------------------------------------------------- /engine/eiface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/engine/eiface.h -------------------------------------------------------------------------------- /engine/progdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/engine/progdefs.h -------------------------------------------------------------------------------- /metamod/dllapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/metamod/dllapi.h -------------------------------------------------------------------------------- /metamod/engine_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/metamod/engine_api.h -------------------------------------------------------------------------------- /metamod/meta_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/metamod/meta_api.cpp -------------------------------------------------------------------------------- /metamod/meta_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/metamod/meta_api.h -------------------------------------------------------------------------------- /metamod/mutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/metamod/mutil.h -------------------------------------------------------------------------------- /metamod/plinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/metamod/plinfo.h -------------------------------------------------------------------------------- /pm_shared/pm_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/pm_shared/pm_info.h -------------------------------------------------------------------------------- /utils/dynpq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekonomicon/Parabot/HEAD/utils/dynpq.h --------------------------------------------------------------------------------