Bueno les traigo un sistema de cambio de nombre. Es 100% mio.
- Codigo:
#include <a_samp>
#define NombreServer1 "hostname (Nombre de tu SV)"//No Borres el hostname porque no cambiara nombre!
#define NombreServer2 "hostname (Nombre de tu SV)"
#define NombreServer3 "hostname (Nombre de tu SV)"
new cambionombre;
public OnFilterScriptInit()
{
print("\n----------------------------------------------------");
print(" Sistema de Cambio de nombre por GinooD ");
print("------------------------------------------------------\n");
cambionombre = SetTimer("Cambiandonombre",3000,1);
return 1;
}
public OnFilterScriptExit()
{
KillTimer(cambionombre);
return 1;
}
forward Cambiandonombre();
public Cambiandonombre()
{
new rsrcm = random(4);
switch(rsrcm)
{
case 0: SendRconCommand(NombreServer1);
case 1: SendRconCommand(NombreServer2);
case 2: SendRconCommand(NombreServer3);
case 3: SendRconCommand(NombreServer3);
}
return 1;
}