04.09.2013, 22:12
Tipo q , quando eu uso /desamarrar , apareceu normal q o player foi libertado e tal ...
mas quando eu tento sair do veiculo meio q ele sai e dps volta ... auguem sabe pq ta assim ?
o Codigo do desamarrar
mas quando eu tento sair do veiculo meio q ele sai e dps volta ... auguem sabe pq ta assim ?
o Codigo do desamarrar
PHP код:
if(strcmp(cmd, "/desamarrarF", true) == 0)
{
if(IsPlayerConnected(playerid))
{
if(PlayerInfo[playerid][pFamilia] == 1 || PlayerInfo[playerid][pLFamilia] == 1)
{
if(PlayerInfo[playerid][pFamilia] < 1)
{
SendClientMessage(playerid, COLOR_GREY, " Vocк precisa ser de Familia para usar esse Comando !");
return 1;
}
if(Sequestrado[playerid] == 1)
{
SendClientMessage(playerid, COLOR_GREY, "Voce esta sendo sequestrado e nao pode usar este Comando!");
return 1;
}
tmp = strtok(cmdtext, idx);
if(!strlen(tmp))
{
SendClientMessage(playerid, COLOR_WHITE, "USE: /desamarrar [id]");
return 1;
}
giveplayerid = ReturnUser(tmp);
if(IsPlayerConnected(giveplayerid))
{
if(giveplayerid != INVALID_PLAYER_ID)
{
if (ProxDetectorS(8.0, playerid, giveplayerid))
{
if(giveplayerid == playerid) { SendClientMessage(playerid, COLOR_GREY, "Vocк nгo pode desamarrar а sн mesmo!"); return 1; }
if(PlayerTied[giveplayerid])
{
GetPlayerName(giveplayerid, giveplayer, sizeof(giveplayer));
GetPlayerName(playerid, sendername, sizeof(sendername));
format(string, sizeof(string), "* Vocк foi libertado por %s.", sendername);
SendClientMessage(giveplayerid, COLOR_LIGHTBLUE, string);
format(string, sizeof(string), "* Vocк libertou %s.", giveplayer);
SendClientMessage(playerid, COLOR_LIGHTBLUE, string);
GameTextForPlayer(giveplayerid, "~g~Libertado", 2500, 3);
TogglePlayerControllable(giveplayerid, 1);
PlayerTied[giveplayerid] = 0;
PlayerInfo[giveplayerid][pMuted] = 0;
}
else
{
SendClientMessage(playerid, COLOR_GREY, " O Jogador nгo estб sequestrado !");
return 1;
}
}
else
{
SendClientMessage(playerid, COLOR_GREY, " O Jogador estб longe de Vocк !");
return 1;
}
}
}
else
{
SendClientMessage(playerid, COLOR_GREY, " O Jogador Estб Offline !");
return 1;
}
}
else
{
SendClientMessage(playerid, COLOR_GREY, " Vocк nгo й da Familia !");
}
}
return 1;
}