diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-12-01 22:18:42 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-12-02 21:34:35 +0300 |
commit | 67ec61e2e9e7b6a43219d8b5302c5a25bcfc2344 (patch) | |
tree | e970c52232f5910f54c192f62866f90a4cda109b /src | |
parent | 45f8a245715f185c369095eb7142155947e96899 (diff) | |
download | hercules-67ec61e2e9e7b6a43219d8b5302c5a25bcfc2344.tar.gz hercules-67ec61e2e9e7b6a43219d8b5302c5a25bcfc2344.tar.bz2 hercules-67ec61e2e9e7b6a43219d8b5302c5a25bcfc2344.tar.xz hercules-67ec61e2e9e7b6a43219d8b5302c5a25bcfc2344.zip |
Add configure option --enable-packetver-zero for enable support for zero clients.
Diffstat (limited to 'src')
-rw-r--r-- | src/common/mmo.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/common/mmo.h b/src/common/mmo.h index 6a0e75ca5..aadba9cab 100644 --- a/src/common/mmo.h +++ b/src/common/mmo.h @@ -74,6 +74,13 @@ #undef ENABLE_PACKETVER_RE #endif // DISABLE_PACKETVER_RE +//Uncomment the following line if your client is zero ragexe instead of normal kro clients +//#define ENABLE_PACKETVER_ZERO +#ifdef ENABLE_PACKETVER_ZERO + #define PACKETVER_ZERO + #undef ENABLE_PACKETVER_ZERO +#endif // DISABLE_PACKETVER_ZERO + // Client support for experimental RagexeRE UI present in 2012-04-10 and 2012-04-18 #if defined(PACKETVER_RE) && ( PACKETVER == 20120410 || PACKETVER == 20120418 ) #define PARTY_RECRUIT |