Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // 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;
- }
Advertisement
Add Comment
Please, Sign In to add comment