diff --git a/a_npc.inc b/a_npc.inc index 3212508..06b367d 100755 --- a/a_npc.inc +++ b/a_npc.inc @@ -7,6 +7,9 @@ #if defined _INC_a_npc #endinput #endif +#if defined _INC_a_samp + #error Include `` or ``, not both. +#endif #define _INC_a_npc #define _samp_included @@ -236,6 +239,8 @@ open.mp releases can use `A` as the first digit. // Util #if !defined _console_included + #define _console_included + /// Prints a string to the server console (not in-game chat) and logs (server_log.txt). /// The string to print /// diff --git a/a_samp.inc b/a_samp.inc index b8357c8..8521eac 100755 --- a/a_samp.inc +++ b/a_samp.inc @@ -7,6 +7,9 @@ #if defined _INC_a_samp #endinput #endif +#if defined _INC_a_npc + #error Include `` or ``, not both. +#endif #define _INC_a_samp #define _samp_included @@ -333,6 +336,8 @@ open.mp releases can use `A` as the first digit. // Util #if !defined _console_included + #define _console_included + /// Prints a string to the server console (not in-game chat) and logs (server_log.txt). /// The string to print ///