12.01.2014, 04:05
show us your 50 , 51 line press ctrl + g and type 50 in it and copy that line paste it here.... and about that last error its cuz you didnt use that announcement variable, you can use that in timer so that it repeats and shows the messages again and again. If you want random messages to be shown up you can do something like
pawn Код:
public OnGameModeInit()
{
SetTimer("AnnouncementMessages",60000,1);
return 1;
}
forward AnnouncementMessages();
public AnnouncementMessages()
{
new rand = random(sizeof(AutoMessages));
SendClientMessageToAll(0xFF0000FF,AutoMessages[rand]);
return 1;
}