[Ajuda] BLOQUEAR GOTO BUG!!
#2

pawn Код:
new bool:xTravarComando[MAX_PLAYERS];


//--------------------- OPCT
if(strcmp(cmd, "/gotooff", false) == 0){
     xTravarComando[playerid ] = true ;
    SendClientMessage ( playerid, Vermelho, "GOTO BLOQUEADO" ) ;
    return 1;
}
if(strcmp(cmd, "/gotoon", false) == 0){
    xTravarComando[playerid] = false ;
    SendClientMessage ( playerid, Verdecl, "GOTO DESBLOQUEADO" ) ;
    return 1;
}
//-------------------
Sу falta verificar o valor da variбvel no comando /goto <id>
pawn Код:
if (strcmp(cmd, "/goto", false ) == 0){
    tmp = strtok(cmd, idx);

    new pid = strval(tmp); // O vetor "tmp" deve ter passado pelo strtok antes!
   
    if (xTravarComando[pid]){
        SendClientMessage(pid, -1, "Este player desativou o goto/teleport!");
        return 1;
    }

    //...
    //...
    //...
    GetPlayerPos(...);
    SetPlayerPos(...);
    SendClientMessage ( playerid, Verdecl, "Vocк foi atй o jogador iShock!");
    return 1;
}
Reply


Messages In This Thread
BLOQUEAR GOTO BUG!! - by best95 - 25.05.2014, 22:34
Re: BLOQUEAR GOTO BUG!! - by Schocc - 26.05.2014, 05:12

Forum Jump:


Users browsing this thread: 2 Guest(s)