27.03.2011, 19:34
Quote:
Example:
pawn Код:
|
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 )
This is from your code
pawn Код:
SendClientMessageToAll(Messege,Announcements[0]);
//Change with this
SendClientMessageToAll(Messege, Announcements[Msg]);
Msg ++;
pawn Код:
if (Msg == sizeof(Announcements))
{
Msg = 0;
}