02.04.2016, 04:19
One of your defines such as:
has more 11 characters (you made an array to hold 12 characters (11 + the null character)).
To get rid of this error, either shorten your defined strings or increase your "sCommand" array inside of your enumerator to hold the length of the string + the null character.
pawn Код:
#define RegisterCommand "yoloyoloyolo"
To get rid of this error, either shorten your defined strings or increase your "sCommand" array inside of your enumerator to hold the length of the string + the null character.

