[Off] Servidor - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: Non-English (
https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (
https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (
https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [Off] Servidor (
/showthread.php?tid=573347)
Servidor -
GuilhermeSimoesPlays - 06.05.2015
Pessoal alguem por favor me ajude.
Eu jб vi alguns servidores que fica tipo um letreiro trocando de nome toda hora exemplo
Brasil Vida Virtual Sua segunda vida vнrtual aqui
Como fazer isso ?
Re: Servidor -
Locky_ - 06.05.2015
PHP код:
new hostName[][] = {
{"Nome do servidor"},
{"Nome do servidor - ah mudo"},
{"Servidor do nome xD"},
{"do nome do servidor xD"}
};
public OnGameModeInit() {
SetTimer("TrocarNome", 2000, true);
}
forward TrocarNome();
public TrocarNome() {
new f[32];
format(f, 32, "hostname %s", hostName[random(sizeof(hostName))]);
SendRconCommand(f);
return 1;
}
acho que funciona isso.. deveria dar uma pesquisada porque tem isso por ai no fуrum.
Re: Servidor -
Krusheer - 06.05.2015
Nгo entendi muito bem, mais se for em TextDraw fiz um exemplo para que vocк possa entender:
PHP код:
new textos[5][] =
{
{"eta porra"},
{"eta porra 2"},
{"eta porra xdddd"},
{"eta porra crl"},
{"eta porra 144"}
}, Text:Letreiro; //Variбveis globais
// em OnGameModeInit:
public OnGameModeInit()
{
/*
Tempo para mudar os textos, coloquei a cada 1min,
caso queira mais tempo modifique '2' pelos minutos que vc quiser
*/
SetTimer("AtualizarLetreiro", 2 * 60 * 1000, true);
//-------------------------------------------------------------------------------
Letreiro = TextDrawCreate(493.714233, 8.533338, " "); // Vocк deve criar uma textdraw na posiзгo que vocк quer, isso й sу para exemplo
TextDrawLetterSize(Letreiro, 0.199333, 1.331200);
TextDrawAlignment(Letreiro, 1);
TextDrawColor(Letreiro, -1);
TextDrawSetShadow(Letreiro, 0);
TextDrawSetOutline(Letreiro, 1);
TextDrawBackgroundColor(Letreiro, 714);
TextDrawFont(Letreiro, 2);
TextDrawSetProportional(Letreiro, 1);
//-------------------------------------------------------------------------------
return 1;
}
forward AtualizarLetreiro();
public AtualizarLetreiro()
{
TextDrawHideForAll(Letreiro); //para o textdraw apagar as infos antigas
TextDrawSetString(Letreiro, textos[random(5)]); //atualizar informaзхes
TextDrawShowForAll(Letreiro); //exibe o text draw com as novas informaзхes
return 1;
}
Re: Servidor -
matheusspohr - 07.05.2015
й assim mesmo como o nick colocou, seria um letreiro no hostname do servidor, alйm do mais no GM Brasil Trucker Life existe essa funзгo.
Abraзos.