Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- Napravio BrunoHP
- Posjetite: www.cromafia-samp.com
- NEMOJTE OBRISATI KREDITE!!!
- */
- #include <a_samp>
- forward Poruka();
- #define FILTERSCRIPT
- #define COLOR_LIGHTBLUE 0x33CCFFAA
- public OnFilterScriptInit()
- {
- print("\n--------------------------------------");
- print(" ~Auto poruka~");
- print("--------------------------------------\n");
- SetTimer("Poruka", 13, 1);
- return 1;
- }
- public OnFilterScriptExit()
- {
- return 1;
- }
- public Poruka()
- {
- new rnd = random(120000); //2 minute
- switch(rnd)
- {
- case 0:
- {
- SendClientMessageToAll(COLOR_LIGHTBLUE,"SERVER: Ako ste novi i trebate pomoc, koristite /airc .");
- }
- case 1:
- {
- SendClientMessageToAll(COLOR_LIGHTBLUE,"SERVER: Vidjeli ste cheatera? Prijavite ga na /report .");
- }
- case 2:
- {
- SendClientMessageToAll(COLOR_LIGHTBLUE,"SERVER: Ne mozete se snaci u gradu? Koristite /map .");
- }
- case 3:
- {
- SendClientMessageToAll(COLOR_LIGHTBLUE,"SERVER: Za listu Admina koristite /admins .");
- }
- case 4:
- {
- SendClientMessageToAll(COLOR_LIGHTBLUE,"SERVER: Za prijevoz koristite /service taxi .");
- }
- case 5:
- {
- SendClientMessageToAll(COLOR_LIGHTBLUE,"SERVER: Za listu animacija koristite /animlist .");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement