SA-MP Forums Archive
[Ajuda] BUG DESATIVAR CONTADOR DRIFT! - 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] BUG DESATIVAR CONTADOR DRIFT! (/showthread.php?tid=537070)



BUG DESATIVAR CONTADOR DRIFT! - best95 - 13.09.2014

meu bug e o seguinte quando eu desativo para mim o contador ele desativa blz..mais quando eu ativo o contador e alguem ta com ele desativado tbm eu ativo para mim e ativa para quem desativou tbm!!! oque sera nessa bosta de codigo que n consigo resolver...desde ontem ja!!!

pawn Код:
CMD:desativarcont(playerid)
{
    if(GetPVarInt(playerid, "contador") == 0) {
    PlayerTextDrawHide(playerid,ServerTextDrawOne[playerid]);
    PlayerTextDrawHide(playerid,ServerTextDrawTwo[playerid]);
    PlayerTextDrawHide(playerid,ServerTextDrawThree[playerid]);
    PlayerTextDrawHide(playerid,ServerTextDrawFour[playerid]);
    PlayerTextDrawHide(playerid,ServerTextDrawFive[playerid]);
    KillTimer(PlayerTimerOne[playerid]);

    KillTimer(ServerTimerOne);
    KillTimer(ServerTimerTwo);
        SetPVarInt(playerid, "contador", 1);
        Msg(playerid, -1, "Vocк desativou as text draw do contador, use (/desativarcont) novamente para ativalas!");
    }
    else if(GetPVarInt(playerid, "contador") == 1) {
        PlayerTextDrawShow(playerid,ServerTextDrawOne[playerid]);
        PlayerTextDrawShow(playerid,ServerTextDrawTwo[playerid]);
        PlayerTextDrawShow(playerid,ServerTextDrawFour[playerid]);
        ServerTimerOne = SetTimerEx("PlayerUpdate",500,true, "d", playerid);
        ServerTimerTwo = SetTimerEx("PlayerDrift",200,true, "d", playerid);
        SetPVarInt(playerid, "contador", 0);
        Msg(playerid, -1, "Vocк ativou as text draw do contador, use (/desativarcont) novamente para deativalas");
    }
    return 1;
}



Re: BUG DESATIVAR CONTADOR DRIFT! - best95 - 13.09.2014

Alguem ajuda ae...to precisando com urgencia!!!


Re: BUG DESATIVAR CONTADOR DRIFT! - zSuYaNw - 13.09.2014

Vб atй o OnPlayerEnterVehicle ou OnPlayerStateChange e poste.