SA-MP Forums Archive
[ajuda] sv off - 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] sv off (/showthread.php?tid=295113)



[ajuda] sv off - Cristhian - 05.11.2011

quando coloco um determinado fs o server fica off, quando eu tiro ele volta, mas quando ligo de casa pega tudo numa boa, o que pode ser?


Re: [ajuda] sv off - [O.z]Caroline - 05.11.2011

poste o FS.
talvez eu acho o erro.


Re: [ajuda] sv off - Cristhian - 05.11.2011

o que pode causar isso?
OBS: nгo posso posta-lo, tenso...


Re: [ajuda] sv off - Dr_Pawno - 05.11.2011

procura por

GameModeExit()

e por

SendRconCommand("exit")


This forum requires that you wait 120 seconds between posts. Please try again in 4 seconds.


Re: [ajuda] sv off - Cristhian - 05.11.2011

nгo й isso, eu que criei o FS, e nгo coloquei isso nele..

This forum requires that you wait 120 seconds between posts. Please try again in 23 seconds.


Re: [ajuda] sv off - [O.z]Caroline - 05.11.2011

descreva como fica off. poste o sever.log.


Re: [ajuda] sv off - Dr_Pawno - 05.11.2011

Talvez um Loop que nunca pare?

Talvez um fopen em um Arquivo que nao Existe?


Re: [ajuda] sv off - Cristhian - 05.11.2011

pawn Код:
for(new i = 0; i <= MAX_PLAYERS; i++)
        {
            if(!evento[i]) return SendClientMessage(playerid, -1, "[BDP] Evento nгo estб aberto");
            if(!damas[0][i])
            {
                SetPlayerPos(playerid, 2139.7417,-4206.8960,14.7203);
                SetTimerEx("colocarcarro", 1000, false, "d", playerid);
                damas[0][i] = true;
                format(msg, sizeof(msg), "[BDP] %s foi para o evento Damas {00FF00}1/12", pname);
                SendClientMessage(i, -1, msg);
                Block[playerid] = true;
                return 1;//aqui pode atrapalhar o loop ?
            }



Re: [ajuda] sv off - [O.z]Caroline - 05.11.2011

poste a public "colocarcarro".


Re: [ajuda] sv off - Cristhian - 05.11.2011

pawn Код:
public colocarcarro(playerid)
{
    temcarro[playerid] = true;
    new Float:x, Float:y, Float:z, Float:ang;
    GetPlayerFacingAngle(playerid, ang);
    GetPlayerPos(playerid, x, y, z);
    car = CreateVehicle(495, x, y, z, ang, 7, 5, 60);
    return PutPlayerInVehicle(playerid, car, 0);
}