19.05.2014, 18:35
Hey guys
this is my new script: Simple Host Name & Mapname Gamemodetext changer!
Let s start on public OnFilterScriptInit
Credits: SkulleR
+Rep if i helped you
Download: Amx - Pwn:
this is my new script: Simple Host Name & Mapname Gamemodetext changer!
Код:
#include <a_samp>
Код:
} 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; }
+Rep if i helped you
Download: Amx - Pwn: