Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* Orjinal Wiki sayfası için : http://wiki.sa-mp.com/wiki/Random_Messages */
- #include <a_samp>
- #define FILTERSCRIPT
- new RastgeleMesaj [][] =
- {
- "Mesaj 1",
- "Mesaj 2",
- "Mesaj 3",
- "Mesaj 4",
- "Mesaj 5"
- };
- public OnFilterScriptInit()
- {
- SetTimer("MesajYolla", 60000, true); // 600000 = 60 saniye.
- return 1;
- }
- public OnFilterScriptExit()
- {
- return 1;
- }
- forward MesajYolla();
- public MesajYolla()
- {
- new rastgelemsj = random(sizeof(RastgeleMesaj));
- SendClientMessageToAll(-1, RastgeleMesaj[rastgelemsj]);
- }
Advertisement
Add Comment
Please, Sign In to add comment