Compare commits
1 commit
Author | SHA1 | Date | |
---|---|---|---|
|
a8a1ed1116 |
8 changed files with 15 additions and 5 deletions
Binary file not shown.
Binary file not shown.
|
@ -26,7 +26,7 @@
|
||||||
|
|
||||||
|
|
||||||
///// IMPORTANT !!! THIS IS THE STRING THAT DETERMINES IF YOU CAN JOIN A SERVER - IE YOU HAVE THE RIGHT CLIENT EFFECTS DLL
|
///// IMPORTANT !!! THIS IS THE STRING THAT DETERMINES IF YOU CAN JOIN A SERVER - IE YOU HAVE THE RIGHT CLIENT EFFECTS DLL
|
||||||
char *client_string = {"Heretic II v1.04"};
|
char *client_string = {"Heretic II v1.06"};
|
||||||
|
|
||||||
client_fx_import_t fxi;
|
client_fx_import_t fxi;
|
||||||
|
|
||||||
|
|
|
@ -27,7 +27,7 @@
|
||||||
#if DEMO_CODE
|
#if DEMO_CODE
|
||||||
#define GAMEVERSION "Heretic2Dmo"
|
#define GAMEVERSION "Heretic2Dmo"
|
||||||
#else
|
#else
|
||||||
#define GAMEVERSION "Heretic2v14"
|
#define GAMEVERSION "Heretic2v16"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Protocol bytes that can be directly added to messages.
|
// Protocol bytes that can be directly added to messages.
|
||||||
|
|
|
@ -115,6 +115,10 @@ enum FeatureTypes
|
||||||
#define ROTATE_SIGNALER 0x04
|
#define ROTATE_SIGNALER 0x04
|
||||||
#define ROTATE_ABSOLUTE 0x08
|
#define ROTATE_ABSOLUTE 0x08
|
||||||
|
|
||||||
|
|
||||||
|
// MoveRotate (disk-file command)
|
||||||
|
#define MOVEROTATE_SIGNALER 0x01
|
||||||
|
|
||||||
// Wait
|
// Wait
|
||||||
#define WAIT_CLEAR 0x80
|
#define WAIT_CLEAR 0x80
|
||||||
|
|
||||||
|
|
BIN
Toolkit/Programming/GameCode/heretic2mods.ncb
Normal file
BIN
Toolkit/Programming/GameCode/heretic2mods.ncb
Normal file
Binary file not shown.
BIN
Toolkit/Programming/GameCode/heretic2mods.opt
Normal file
BIN
Toolkit/Programming/GameCode/heretic2mods.opt
Normal file
Binary file not shown.
|
@ -9,9 +9,9 @@
|
||||||
#define BASEDIRNAME "base"
|
#define BASEDIRNAME "base"
|
||||||
|
|
||||||
#define VERSION_MAJOR "1"
|
#define VERSION_MAJOR "1"
|
||||||
#define VERSION_MINOR "05"
|
#define VERSION_MINOR "06"
|
||||||
#define VERSION_LOCAL "01"
|
#define VERSION_LOCAL "01"
|
||||||
#define VERSION_DATE "0412"
|
#define VERSION_DATE "0504"
|
||||||
#define VERSION_ITERATION "01"
|
#define VERSION_ITERATION "01"
|
||||||
|
|
||||||
#define VERSIONDISP (VERSION_MAJOR"."VERSION_MINOR)
|
#define VERSIONDISP (VERSION_MAJOR"."VERSION_MINOR)
|
||||||
|
@ -157,7 +157,7 @@ PROTOCOL
|
||||||
|
|
||||||
// protocol.h -- communications protocols
|
// protocol.h -- communications protocols
|
||||||
|
|
||||||
#define PROTOCOL_VERSION 50
|
#define PROTOCOL_VERSION 51
|
||||||
|
|
||||||
//=========================================
|
//=========================================
|
||||||
|
|
||||||
|
@ -886,6 +886,12 @@ extern cvar_t *host_speeds;
|
||||||
extern cvar_t *log_stats;
|
extern cvar_t *log_stats;
|
||||||
extern cvar_t *player_dll;
|
extern cvar_t *player_dll;
|
||||||
|
|
||||||
|
extern cvar_t *allow_download;
|
||||||
|
extern cvar_t *allow_download_maps;
|
||||||
|
extern cvar_t *allow_download_players;
|
||||||
|
extern cvar_t *allow_download_models;
|
||||||
|
extern cvar_t *allow_download_sounds;
|
||||||
|
|
||||||
extern FILE *log_stats_file;
|
extern FILE *log_stats_file;
|
||||||
|
|
||||||
// host_speeds times
|
// host_speeds times
|
||||||
|
|
Loading…
Reference in a new issue