Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Copyright stuff:I hate them too lol,please read this
- // You can modify this thingy how you like
- //Just please don't remove these 3 lines and don't claim this script thingy as yours.Thanks.
- #include <a_samp>
- #if defined FILTERSCRIPT
- public OnFilterScriptInit()
- {
- print("\n--------------------------------------");
- print(" Random Messages by NaziHotdog ");
- print("--------------------------------------\n");
- return 1;
- }
- public OnFilterScriptExit()
- {
- return 1;
- }
- new RandomMSG[][] =
- { "Fak ju spoodermin",
- "<=========3",
- "Soviet narnia"
- // Completely random messages lol,you can add new ones or modify these however you want
- };
- forward SendMSG();
- public SendMSG()
- {
- SendClientMessageToAll(0x33CCFFAA, RandomMSG[random(sizeof(RandomMSG))]);
- return 1;
- }
- #endif
- public OnGameModeInit()
- {
- SetTimer("SendMSG",100000,1); // timer
- return 1;
- }
Advertisement
Add Comment
Please, Sign In to add comment