Posts: 583
Threads: 152
Joined: Sep 2013
Bom meu /gotooff e /gotoon ta bugado se um player por exemplo block o goto com /gotooff e outro player digita /gotoon ele consegue dar goto no que bloqueou o goto! ajudem codigo abaixo ja tentei de tudo.
pawn Код:
if(strcmp(cmd, "/gotooff", true) == 0)
{
for(new i = 0; i < MAX_PLAYERS; i++)
xTravarComando [ i ] = true ;
SendClientMessage ( playerid, BRANCO, "Goto bloqueado{FFFFFF}" ) ;
return 1;
}
if(strcmp(cmd, "/gotoon", true) == 0)
{
for(new i = 0; i < MAX_PLAYERS; i++)
xTravarComando [ i ] = false ;
SendClientMessage ( playerid, BRANCO, "Goto desbloqueado{FFFFFF}!" ) ;
return 1;
}
Posts: 583
Threads: 152
Joined: Sep 2013
if(bloqueado [ PLAYERID_ALVO ] == true) return 0;
deixo assim?
if(bloqueado [ PLAYERID ] == true) return 0;
Posts: 583
Threads: 152
Joined: Sep 2013
ERRO!
error 017: undefined symbol "ALVO"
Posts: 583
Threads: 152
Joined: Sep 2013
entгo meu goto aqui ficaria assim??
pawn Код:
if(strcmp(cmd, "/goto", true) == 0)
{
if(MundoMATAMATA[playerid] == true) return SendClientMessage(playerid, CorCinza, "Comando nгo pode ser usado no mundo Mata Mata {FFFFFF}/Mundos{FFFFFF}!");
if(bloqueado [giveplayerid] == true) return 0; // Ao invйs do 0, vocк poderia colocar alguma mensagem
GetPlayerName(playerid, sendername, sizeof(sendername));
tmp = strtok(cmdtext, idx);
if(!strlen(tmp))
{
SendClientMessage(playerid, Branco, "{FF0000}Uso correto: /Goto id");
return 1;
}
new Float:plocx,Float:plocy,Float:plocz;
giveplayerid = strval(tmp);
if(IsPlayerConnected(giveplayerid))
{
GetPlayerName(giveplayerid, giveplayer, sizeof(giveplayer));
GetPlayerName(playerid, sendername, sizeof(sendername));
format(string, sizeof(string), "Vocк Foi atй o jogador {FFFFFF}%s{00F600}(%i).", giveplayer, giveplayerid);
SendClientMessage(playerid, Branco, string);
GetPlayerPos(giveplayerid, plocx, plocy, plocz);
new intid = GetPlayerInterior(giveplayerid);
SetPlayerInterior(playerid,intid);
if (GetPlayerState(playerid) == 2)
{
new tmpcar = GetPlayerVehicleID(playerid);
SetVehiclePos(tmpcar, plocx, plocy+4, plocz);
}
else
{
SetPlayerPos(playerid,plocx,plocy+2, plocz);
}
}
else
{
format(string, sizeof(string), "%d nгo й um player ativo!", giveplayerid);
SendClientMessage(playerid, Branco, string);
}
return 1;
}