25.07.2011, 20:42
eae Galera blz ? to editando um GM de RP aqui e to com um problema na opзгo estacionar do carro !
tipo o cara poem /Veiculo estacionar, ai nao acontece nada mesmo dando GMX o carro nao fica naquela coordenada, sу algumas vezes que da, OLHA O COD AE:
VLW AE !!!
tipo o cara poem /Veiculo estacionar, ai nao acontece nada mesmo dando GMX o carro nao fica naquela coordenada, sу algumas vezes que da, OLHA O COD AE:
Quote:
if(strcmp(tmp, "estacionar", true) == 0) { new Float,Float:y,Float:z; new Float:a; new carid; new getcarid; new Veiculo = PlayerInfo[playerid][pVeiculo]; if(GetPlayerVehicleID(playerid) == PlayerInfo[playerid][pCarKey]) { carid = PlayerInfo[playerid][pCarKey]; } if(IsPlayerInVehicle(playerid,carid) && CarInfo[Veiculo][cOwned] == 1) { getcarid = GetPlayerVehicleID(playerid); GetPlayerName(playerid, playername, sizeof(playername)); GetVehiclePos(carid, x, y, z); GetVehicleZAngle(carid, a); if(PlayerInfo[playerid][pCarKey] == 0) { SendClientMessage(playerid, COLOR_GREY, "Vocк nгo tem um Veiculo!"); return 1; } if(getcarid == carid) { CarInfo[Veiculo][cLocationx] = x; CarInfo[Veiculo][cLocationy] = y; CarInfo[Veiculo][cLocationz] = z; CarInfo[Veiculo][cAngle] = a; format(string, sizeof(string), "~n~ Voce estacionou seu Veiculo aqui. ~n~"); GameTextForPlayer(playerid, "Agora seu Veiculo ira dar respawn aqui, ou seja nascer aqui.", 10000, 3); DestroyVehicle(carid); CreateVehicle(CarInfo[Veiculo][cModel],CarInfo[Veiculo][cLocationx],CarInfo[Veiculo][cLocationy],CarInfo[Veiculo][cLocationz]+1.0,CarInfo[Veiculo][cAngle],CarInfo[Veiculo][cColorOne],CarInfo[Veiculo][cColorTwo],60000); TogglePlayerControllable(playerid, 1); SaveCars(); return 1; } return 1; } |