20.08.2014, 10:25 
	
	
	
		Introduction:
This is a filterscript which sends at x minutes an editable text to all players!
Code:
Pastebin link:
http://pastebin.com/VJfRtE7G
Easy to code but nice results! Correct me if i made any mistake!
	
	
	
This is a filterscript which sends at x minutes an editable text to all players!
Code:
Код:
// Auto Announce System
// Credits: khalifakk
// 2014
// Includes
#include <a_samp>
#include <sscanf>
public OnFilterScriptInit()
{
  SetTimer("announce",200000, true);
  return 1;
}
forward announce(playerid,text[]);
public announce(playerid,text[])
{
		new string[128];
        {
                GameTextForPlayer(playerid, "~g~Text Text Text", 5001, 6);
                SendClientMessageToAll(-1, string);
        }
        return 1;
}
http://pastebin.com/VJfRtE7G
Easy to code but nice results! Correct me if i made any mistake!







