amxmodx
compiler
configs
dlls
editor
installer
plugins
cstrike
dod
esf
include
Vexd_Utilities.inc
amxconst.inc
amxmisc.inc
amxmod.inc
amxmodx.inc
core.inc
csstats.inc
cstrike.inc
csx.inc
dbi.inc
dodconst.inc
dodfun.inc
dodstats.inc
dodx.inc
engine.inc
engine_const.inc
engine_stocks.inc
esf.inc
esf_const.inc
fakemeta.inc
fakemeta_const.inc
fakemeta_stocks.inc
file.inc
float.inc
fun.inc
geoip.inc
lang.inc
ns.inc
ns2amx.inc
ns_const.inc
nvault.inc
regex.inc
sockets.inc
string.inc
tfcconst.inc
tfcstats.inc
tfcx.inc
tsconst.inc
tsfun.inc
tsstats.inc
tsx.inc
vault.inc
xs.inc
xtrafun.inc
lang
ns
tfc
ts
admin.sma
adminchat.sma
admincmd.sma
adminhelp.sma
adminslots.sma
adminvote.sma
amxxpc
amxxpc.exe
amxxpc32.dll
amxxpc32.so
amxxpc64.dll
amxxpc64.so
antiflood.sma
cmdmenu.sma
compile.exe
compile.sh
dlsym
dlsym.c
dlsym64
imessage.sma
mapchooser.sma
mapsmenu.sma
menufront.sma
multilingual.sma
nextmap.sma
pausecfg.sma
plmenu.sma
sasm
sasm.exe
scrollmsg.sma
statscfg.sma
telemenu.sma
timeleft.sma
116 lines
1.7 KiB
PHP
Executable File
116 lines
1.7 KiB
PHP
Executable File
/* DoDX functions
|
|
*
|
|
* (c) 2004, SidLuke
|
|
* This file is provided as is (no warranties).
|
|
*/
|
|
|
|
#if defined _dodconst_included
|
|
#endinput
|
|
#endif
|
|
#define _dodconst_included
|
|
|
|
/* DoD teams */
|
|
#define ALLIES 1
|
|
#define AXIS 2
|
|
|
|
#define FT_NEW 1<<0
|
|
#define FT_OLD 1<<1
|
|
|
|
#define STAMINA_SET 0
|
|
#define STAMINA_RESET 1
|
|
|
|
#define FUSE_SET 0
|
|
#define FUSE_RESET 1
|
|
|
|
#define DODMAX_WEAPONS 46 // 5 slots for custom weapons
|
|
|
|
enum {
|
|
PS_NOPRONE =0,
|
|
PS_PRONE,
|
|
PS_PRONEDEPLOY,
|
|
PS_DEPLOY,
|
|
}
|
|
|
|
/* info types for dod_get_map_info native */
|
|
enum {
|
|
MI_ALLIES_TEAM = 0,
|
|
MI_ALLIES_PARAS,
|
|
MI_AXIS_PARAS,
|
|
}
|
|
|
|
/* DoD weapons */
|
|
enum {
|
|
DODW_AMERKNIFE = 1,
|
|
DODW_GERKNIFE,
|
|
DODW_COLT,
|
|
DODW_LUGER,
|
|
DODW_GARAND,
|
|
DODW_SCOPED_KAR,
|
|
DODW_THOMPSON,
|
|
DODW_STG44,
|
|
DODW_SPRINGFIELD,
|
|
DODW_KAR,
|
|
DODW_BAR,
|
|
DODW_MP40,
|
|
DODW_HANDGRENADE,
|
|
DODW_STICKGRENADE,
|
|
DODW_STICKGRENADE_EX,
|
|
DODW_HANDGRENADE_EX,
|
|
DODW_MG42,
|
|
DODW_30_CAL,
|
|
DODW_SPADE,
|
|
DODW_M1_CARBINE,
|
|
DODW_MG34,
|
|
DODW_GREASEGUN,
|
|
DODW_FG42,
|
|
DODW_K43,
|
|
DODW_ENFIELD,
|
|
DODW_STEN,
|
|
DODW_BREN,
|
|
DODW_WEBLEY,
|
|
DODW_BAZOOKA,
|
|
DODW_PANZERSCHRECK,
|
|
DODW_PIAT,
|
|
DODW_SCOPED_FG42,
|
|
DODW_FOLDING_CARBINE,
|
|
DODW_KAR_BAYONET,
|
|
DODW_SCOPED_ENFIELD,
|
|
DODW_MILLS_BOMB,
|
|
DODW_BRITKNIFE,
|
|
DODW_GARAND_BUTT,
|
|
DODW_ENFIELD_BAYONET,
|
|
DODW_MORTAR,
|
|
DODW_K43_BUTT,
|
|
};
|
|
|
|
/* DoD Classes */
|
|
enum {
|
|
DODC_GARAND = 1,
|
|
DODC_CARBINE,
|
|
DODC_THOMPSON,
|
|
DODC_GREASE,
|
|
DODC_SNIPER,
|
|
DODC_BAR,
|
|
DODC_30CAL,
|
|
DODC_BAZOOKA,
|
|
//DODC_ALLIES_MORTAR,
|
|
DODC_KAR = 10,
|
|
DODC_K43,
|
|
DODC_MP40,
|
|
DODC_MP44,
|
|
DODC_SCHARFSCHUTZE,
|
|
DODC_FG42,
|
|
DODC_SCOPED_FG42,
|
|
DODC_MG34,
|
|
DODC_MG42,
|
|
DODC_PANZERJAGER,
|
|
//DODC_AXIS_MORTAR,
|
|
DODC_ENFIELD = 21,
|
|
DODC_STEN,
|
|
DODC_MARKSMAN,
|
|
DODC_BREN,
|
|
DODC_PIAT,
|
|
//DODC_BRIT_MORTAR,
|
|
};
|
|
|