29.04.2012, 19:27
(
Last edited by 'Duallity; 29/04/2012 at 07:59 PM.
Reason: erro ortogrбfico
)
Bom,estou editando um Gamemod а algumas semanas,ja corrigi diversos bugs,mais nao tou conseguindo desbugar esse.
Eu vou na concessionбria e compro um carro,depois digito o comando /carmenu e escolho estacionar,o carro й estacionado mais quando dou respawn nele,ele nao fica no local que estacionei e sim em SAN FIERRO
prints:
http://imageshack.us/g/232/print10a.png/
Code:
Eu vou na concessionбria e compro um carro,depois digito o comando /carmenu e escolho estacionar,o carro й estacionado mais quando dou respawn nele,ele nao fica no local que estacionei e sim em SAN FIERRO
prints:
http://imageshack.us/g/232/print10a.png/
Code:
Code:
if(dialogid == 540) { if(response) { if(listitem == 0) { new vehicleid = GetOwnedVehicleID(playerid); if (vehicleid == INVALID_VEHICLE_ID) return SendClientMessage(playerid, COLOR_RED, "[Erro] Vocк nгo possui Veiculo."); VehicleInfo[vehicleid][vPark] = 1; GetVehiclePos(vehicleid, VehicleInfo[vehicleid][vPX], VehicleInfo[vehicleid][vPY], VehicleInfo[vehicleid][vPZ]); GetVehicleZAngle(vehicleid, VehicleInfo[vehicleid][vPA]); format(string, sizeof string, "[Wang Cars] Vocк estacionou seu Veiculo neste local."); SendClientMessage(playerid, COLOR_YELLOW, string); } else if(listitem == 1) { new vehicleid = GetOwnedVehicleID(playerid); if (vehicleid == INVALID_VEHICLE_ID) return SendClientMessage(playerid, COLOR_RED, "[Erro] Vocк nгo possui Veiculo."); GetVehiclePos(vehicleid, VehicleInfo[vehicleid][vPX], VehicleInfo[vehicleid][vPY], VehicleInfo[vehicleid][vPZ]); SetPlayerCheckpoint(playerid, VehicleInfo[vehicleid][vPX], VehicleInfo[vehicleid][vPY], VehicleInfo[vehicleid][vPZ],5.0); SendClientMessage(playerid, COLOR_YELLOW, "[Wang Cars] Siga o checkpoint para encontrar seu carro."); GPSPos[playerid] = 1; }
Code:
if (strcmp("/carmenu", cmdtext, true, 10) == 0) { new listitems[] = "Estacionar\nLocalizar Carro\nTrancar\nDestrancar\nVender\nResetar Tuning\nSpawnar Carro"; ShowPlayerDialog(playerid,540,DIALOG_STYLE_LIST,"Menu do Carro:",listitems,"Selecionar","Sair"); return 1; }