-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a92b207
commit 7431cf6
Showing
8 changed files
with
125 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#if defined _mm_checks_included_ | ||
#endinput | ||
#endif | ||
#define _mm_checks_included_ | ||
|
||
// Do NOT modify this file! | ||
|
||
/** | ||
* AMX Mod X version check | ||
*/ | ||
#if AMXX_VERSION_NUM < 200 | ||
#error "Multimod Manager CS requires AMX Mod X 1.10 or higher. Download from: https://www.amxmodx.org/downloads-new.php?branch=master" | ||
#endif | ||
|
||
/** | ||
* ReAPI version check | ||
*/ | ||
#if REAPI_VERSION < 524300 | ||
#error "Multimod Manager CS requires ReAPI 5.24.300 or higher. Download from: https://github.com/s1lentq/reapi/releases/latest" | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
addons/amxmodx/scripting/include/multimod_manager_checks.inc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#if defined _multimod_manager_checks_included_ | ||
#endinput | ||
#endif | ||
#define _multimod_manager_checks_included_ | ||
|
||
// Do NOT modify this file! | ||
|
||
/** | ||
* AMX Mod X version check | ||
*/ | ||
#if defined AMXX_VERSION_NUM | ||
#if AMXX_VERSION_NUM < 200 | ||
#error "[API] Multimod Manager CS requires AMX Mod X 1.10 or higher. Download from: https://www.amxmodx.org/downloads-new.php?branch=master" | ||
#endif | ||
#else | ||
#error "[API] Multimod Manager CS: please include multimod_manager_natives.inc after including amxmodx.inc." | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
/* | ||
* Version declaration dependency file | ||
* | ||
*/ | ||
|
||
#define MM_VERSION_MAJOR 2 | ||
#define MM_VERSION_MINOR 3 | ||
#define MM_VERSION_MAINTENANCE 0 |