SA-MP Forums Archive
[Ajuda] reiniciar. - 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: [Ajuda] reiniciar. (/showthread.php?tid=202932)



[Ajuda] reiniciar. - rafael666 - 25.12.2010

Olб
queria saber se tem como fazer um arquivo executavel que da gmx pra deixar dentro da pasta do server,
e se tem como executar ele por comando dentro do server.

obg, e Feliz Natal!


Re: [Ajuda] reiniciar. - Xapita_Halls - 25.12.2010

fecha o samp-server e abre denovo '0'


Re: [Ajuda] reiniciar. - rafael666 - 25.12.2010

err...
quero evitar a fadiga

mas queria saber como faзo pra dar aquele: Server Restart
sabe...

se eu fechar e abrir o sa-mp vai dar: Server closed the connection.
ai vou ter q sair do jogo e entrar denovo :/


Re: [Ajuda] reiniciar. - Chavequinho - 25.12.2010

Esta funзгo:

pawn Код:
Killtimer
Serve para destruir as:

pawn Код:
Settimer
E esta outra funзгo:

pawn Код:
GameModeExit();
Reiniciarб o gamemode. Eu aprendi isto codando Thug por isso talvez funcionarб no seu gamemode.


Re: [Ajuda] reiniciar. - rafael666 - 25.12.2010

vc diz esse comando aqui?

pawn Код:
if(strcmp(cmd, "/gmx", true) == 0)
    {
        if(IsPlayerConnected(playerid))
        {
            if (PlayerInfo[playerid][pAdmin] >= 1)
            {
                    if(admtrampando[playerid] < 1)
                    {
                        SendClientMessage(playerid, COLOR_GRAD1, "Vocк nгo estб trabalhando! (/profadmin)");
                        return 1;
                    }
                    GetPlayerName(playerid,playername,sizeof(playername));
                    format(string, sizeof(string), "%s Deu GMX!",playername);
                    ABroadCast(COLOR_YELLOW,string,1);
                    KillTimer(synctimer);
                    KillTimer(newmistimer);
                    KillTimer(unjailtimer);
                    KillTimer(othtimer);
                    KillTimer(cartimer);
                    KillTimer(Contastimer);
                    KillTimer(checkgastimer);
                    KillTimer(idletimer);
                    KillTimer(pickuptimer);
                    KillTimer(productiontimer);
                    KillTimer(spectatetimer);
                    KillTimer(stoppedvehtimer);
                    KillTimer(turftimer);
                    KillTimer(weaponhacktimer);
                    KillTimer(tempoGranaTR);
                    KillTimer(TempoAdministrador);
                    KillTimer(TempoAn);
                    SaveAdmin();
                    OnPropUpdate();
                    SaveCK();
                    SaveIRC();
                    SavePapers();
                    SaveBoxer();
                    SaveCars();
                    SaveVip();
                    GameModeExit();
            }
            else
            {
                SendClientMessage(playerid, COLOR_GRAD1, "Voce nгo estб autorizado a usar o comando!");
            }
        }
        return 1;
    }
eu to tentando aprender scriptar, to mexendo nos gm q vem com o server pra ver se aprendo alguma coisa.
se puder me dar uma dica como por esse comando por exemplo no gamemode bare eu agradeзo muito.


Re: [Ajuda] reiniciar. - Chavequinho - 25.12.2010

Vocк acha que esse cуdigo sу funciona em Thug?


Re: [Ajuda] reiniciar. - rafael666 - 25.12.2010

nгo sei, como disse sou novato nisso.
e perguntei se vc pudesse colocar esse codigo em um outro gm
ex: o bare q vem junto com o server files


Re: [Ajuda] reiniciar. - Ricop522 - 25.12.2010

Tб aн.
pawn Код:
if(strcmp(cmd, "/gmx", true) == 0)        
    {
        if(!IsPlayerAdmin) return SendClientMessage(playerid, 0xFFFFFFx0, "Vocк nгo й Admin.");
        SendRconCommand("gmx");
        return 1;
 
    }



Re: [Ajuda] reiniciar. - Chavequinho - 25.12.2010

Usa o do Ricop ele usou o comando padrгo! Aliбs Ricop pode usar com outro sistema de administrador?


Re: [Ajuda] reiniciar. - TiagoPS - 25.12.2010

pawn Код:
if(strcmp(cmd, "/gmx", true) == 0)
{
    return GameModeExit();
}