As the error says, if you initialize a variable at a set size and are setting a default value, you must set a value for every slot, or make the size smaller.
Here you are sizing both at 11, but only setting 8 values. So you can either change those 11's to 8's, or add 3 more values to each array.
PHP Code:
#define GROUPS_NAME 11
#define GROUPS_ACCESS 11
new GroupNames[GROUPS_NAME][] = {
"---== THE KING==---",
"---= Owner + V.I.P =---",
"---= Co Owner + V.I.P =---",
"---= Moderator =---",
"---= Administrator =---",
"---== VIP ==---",
"---== Helper ==---",
"---== Slot ==---"
}
new GroupFlags[GROUPS_ACCESS][] = {
"abcdefghijklmnopqrstu",
"abcdefghijmnoqprstu",
"abcdefghijmnoqprst",
"bcdefghijm",
"bcfeijoqrt",
"bcdefijm",
"bcfeij",
"b"
}
__________________