10.07.2015, 18:20
O Problema ainda persiste :/
e acada 3 segundos a public e chamada por isso da Flood, mas nгo sei como fazer , o problema pode estar no comando ?
PHP код:
if(strcmp(cmd, "/ttaxi", true) == 0 && IsPlayerConnected(playerid))
{
if(PlayerInfo[ playerid ][pProfissao] == Taxista || IsPlayerAdmin(playerid))
{
new plid;
tmp = strtok(cmdtext, idx);
if(!strlen(tmp)) {
SendClientMessage(playerid, ERRO, "/ttaxi [id]");
return 1;
}
plid = strval(tmp);
if(GetPlayerVehicleID(playerid) == GetPlayerVehicleID(plid) && GetPlayerState(playerid) == PLAYER_STATE_DRIVER)
{
SendClientMessage(plid, 0xE1E100AA, "O Taxista ligou o Taximкtro.");
GivePlayerGrana(playerid,000);
GivePlayerGrana(plid,000);
Taximetro[plid][0] = 1;
Taximetro[plid][1] = playerid;
return 1;
}
else
{
SendClientMessage(playerid, ERRO, " | ERRO | O passageiro nгo estб dentro do seu carro ou vocк nгo й o motorista.");
}
}
return 1;
}