Correct example:
pawn Код:
new Announcements[9][128] = { // Also You can add more !
"[BOT] Want to come again? Add server IP: xx.xxx.xxx.xx: xxxx",
"[BOT] (Add anything here)" //No , on the last line
}; //Should be } instaid of )
EDIT:
This is from your code
pawn Код:
SendClientMessageToAll(Messege,Announcements[0]);
//Change with this
SendClientMessageToAll(Messege, Announcements[Msg]);
Msg ++;
After that add a check
pawn Код:
if (Msg == sizeof(Announcements))
{
Msg = 0;
}