Tell me How to Add News IN vcmp server means pawn file plz Help me and Suggest me Plz !
//First at the top add this
new RandomMSG[][] =
{
"Random Message 1",
"Random Message 2",
"Random Message 3"
};
//then on GameMode
SetTimer("SendMSG", 60000, true);
//then add this add the top or at the bottom
forward SendMSG();
//Add this bottom of the script
public SendMSG()
{
new randMSG = random(sizeof(RandomMSG));
SendClientMessageToAll(COLOR, RandomMSG[randMSG]); // Replace the COLOR with your
}
new RandomMSG[][] =
{
"You can add as much",
"of the msg's as you want",
"Random Message 3"
};
"Random Message 5",
"Random Message 6"