22.10.2013, 03:55
I am use this :
How to make Space on Hostname ?
I want my hostname on Center
Help me +Rep1
PHP код:
////===========================================///
////==Hostname Changer by Second / Geerdinho8==///
////===========================================///
#include <a_samp>
forward hostname();
public OnFilterScriptInit()
{
SetTimer("hostname",1000,1);//(" "); <<< You can change the ammount of time the hostname stays till it changes(1000 = 1 second)
return 1;
}
public hostname()
{
new var = random(2); //If you want less or more messages you can change the random(5); for example to random(8); if you have 8 different messages but dont forget to edit the cases too!! switch (var)
switch (var)
{
case 0: SendRconCommand("hostname .: » Venom Gaming xTreme Freeroam « (0.3x) :.");
case 1: SendRconCommand("hostname .: VGxF » DM/Freeroam/Stunt/Race « (0.3x) :.");
//case 2: SendRconCommand("hostname www.sa-mp.com");
//case 3: SendRconCommand("hostname Don't be afraid to join.");
///case 4: SendRconCommand("hostname Hostname changer by Second"); // if you edit the texts, dont remove "hostname", otherwise it wont work!!
}}
I want my hostname on Center
Help me +Rep1