I don't get those errors. But they generally happen when doing this:
Code:
new var[4] = { 1, 2, 3, 4, 5 } // 5 entries trying to fit into 4 slots. It's like trying to fit 5 people in a Hyundai i10.
What you do is either increase MAX_GROUPS or make it more dynamic by replacing all of the MAX_GROUPS with "sizeof sNames" and "sizeof sFlags" in the code and removing the fixed number of indexes
Code:
new sFlags[][] =
{
"abcdefghijklmnopqrstuv", // Founder + VIP
"abcdefghijklmnopqrsuv", // Founder
"abcdefghijkmnopqrstu", // Owner + VIP
// And so on ...
};
// ...
for(new i = 0; i < sizeof sFlags ; i++)
sFlagsValue[i] = read_flags(sFlags[i]);
You do have these errors though.
Code:
// Line 78 & 95:
client_print(id, "----- <a href="http://www..ro" target="_blank" rel="nofollow noopener">www..ro</a> -----");
// -->
client_print(id, print_chat, "----- <a href="http://www..ro" target="_blank" rel="nofollow noopener">www..ro</a> -----"); // can also be print_center, print_notify, print_console
__________________