Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* This Filterscript Was Created By, YamakeiStudios */
- // This Filterscript Was Designed For Hostname Changing.
- #define FILTERSCRIPT
- #include <a_samp>
- #if defined FILTERSCRIPT
- public OnFilterScriptInit()
- {
- print("\n--------------------------------------");
- print(" ( )-...Booting Hostname Changer.");
- print("--------------------------------------\n");
- return 1;
- }
- public OnFilterScriptExit()
- {
- print("\n--------------------------------------");
- print(" ( )-...Discharging Hostname Changer");
- print("--------------------------------------\n");
- return 1;
- }
- forward HostNameChanger();
- public HostNameChanger()
- {
- new RandomGo = random(4);
- switch(RandomGo) { //Modify the [Insert Text] for your text.
- case 0: SendRconCommand("hostname [SERVER NAME] [Insert Text]");
- case 1: SendRconCommand("hostname [SERVER NAME] [Insert Text]");
- case 2: SendRconCommand("hostname [SERVER NAME] [Insert Text]");
- case 3: SendRconCommand("hostname [SERVER NAME] [Insert Text]");
- }
- return 1;
- }
- #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement