Noticias:

Debes de estar registrado para poder ver el contenido indicado. Registrate o Conectate

Menú Principal

Varios Nombres para el hostname (By GROVE4L)

Iniciado por Swarlog, Ene 30, 2023, 04:36 PM

Tema anterior - Siguiente tema

Swarlog

Información Adicional:

Un script muy buscado, es para que el nombre de vuestro servidor cambie en la ventana del samp.exe cada x tiempo. El tiempo es configurable, asi como la descripcion del servidor

Código:

// By GROVE4L

#include <a_samp>

forward Nombre();
forward Nombre2();
forward Nombre3();
forward Nombre4();

public OnFilterScriptInit()
{
SetTimer("Nombre",100,false);
return 1;
}

public Nombre()
{
SendRconCommand("hostname |•|U3GAMES |•| Rol en Español |•|");
  SetTimer("Nombre2",30,false);
}


public Nombre2()
{
SendRconCommand("hostname |•|U3GAMES|•|Vos Elégis tu Camino.|•|");
  SetTimer("Nombre3",30,false);
}

public Nombre3()
{
SendRconCommand("hostname  |•|U3GAMES|•|El Futuro Ya Esta Aquí!|•|");
  SetTimer("Nombre",30,false);
}

public Nombre4()
{
SendRconCommand("hostname  |•|U3GAMES [ESP/RP]|•|Los esperamos a todos!|•|");
  SetTimer("Nombre4",30,false);
}

// By GROVE4L