Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //Automatic Messages by iLcke
- //This is just a simple script for beginners using automatic messages on there server
- #define FILTERSCRIPT
- #define COLOR_LIGHTBLUE 0x33CCFFAA
- #include <a_samp>
- forward Messages();
- new Message[][] =
- {
- "www.sa-mp.com",
- "Download sa-mp RC7 at www.sa-mp.com/download.php!",
- "Automatic messages by iLcke!"
- };
- public OnFilterScriptInit()
- {
- print("\n--------------------------------------");
- print(" Automatic Messages by iLcke");
- print("--------------------------------------\n");
- return 1;
- }
- public OnFilterScriptExit()
- {
- return 1;
- }
- public OnGameModeInit()
- {
- SetTimer("Messages", 120000, true); // 120000 = 2 minutes
- return 1;
- }
- public Messages()
- {
- SendClientMessageToAll(COLOR_LIGHTBLUE, Message[random(sizeof(Message))]);
- }
Advertisement
Add Comment
Please, Sign In to add comment