[FilterScript] Simple Host Name & Mapname Gamemode text changer
#1

Hey guys

this is my new script: Simple Host Name & Mapname Gamemodetext changer!


Код:
#include <a_samp>
Let s start on public OnFilterScriptInit

Код:
}

public OnFilterScriptInit()
{
    SetTimer("RandomsSET",100, true);
    return 1;
}

forward RandomsSET();
public RandomsSET()
{
   switch (random(2)) ///SERVER HOSTNAME
   {
     case 0: SendRconCommand("hostname Welcom to my server(0.3z)");
     case 1: SendRconCommand("hostname Filterscript By SkulleR");
     case 2: SendRconCommand("hostname Visit my website");
     case 3: SendRconCommand("hostname Added  this server to you favorite");
     case 4: SendRconCommand("hostname put something here :l");
   }

   switch (random(2)) /////SERVER GAMEMODE TEXT NAME
   {
     case 0: SendRconCommand("gamemodetext put something here :l");
     case 1: SendRconCommand("gamemodetext put something here :l");
     case 2: SendRconCommand("gamemodetext put something here :l");
     case 3: SendRconCommand("gamemodetext put something here :l");
   }
   switch (random(2)) /////SERVER MAP NAME
   {
     case 0: SendRconCommand("mapname put something here :l");
     case 1: SendRconCommand("mapname put something here :l");
     case 2: SendRconCommand("mapname put something here :l");
     case 3: SendRconCommand("mapname put something here :l");
   }

   return 1;
}
Credits: SkulleR
+Rep if i helped you

Download: Amx - Pwn:
Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: 1 Guest(s)