[AJUDA] /Veiculo Estacionar Bug -
Pedro_Teixeira - 03.07.2011
Oi Gente eu to tendo um problema, eu ja pesquisei sobre ele e encontrei um post de um cara com o mesmo problema mas acabaram por nгo conseguir ajudar ele por isso to criando esse aqui.
o meu problema й que , quando faзo /v estacionar o carro desaparece. e depois se eu fizer /gmx ele volta la pra concessionaria.
esta ai o comando:
Код:
if(strcmp(tmp, "estacionar", true) == 0)
{
new Float:x,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, "Tu nгo tens 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~ Tu estacionaste o teu Veiculo aqui. ~n~");
GameTextForPlayer(playerid, "Agora o teu Veiculo ira fazer spawn aqui.", 10000, 3);
DestroyVehicle(carid);
CreateVehicle(CarInfo[carid][cModel],CarInfo[carid][cLocationx],CarInfo[carid][cLocationy],CarInfo[carid][cLocationz]+1.0,CarInfo[carid][cAngle],CarInfo[carid][cColorOne],CarInfo[carid][cColorTwo],60000);
TogglePlayerControllable(playerid, 1);
SaveCars();
return 1;
}
return 1;
PS: O GM que to editando й o Thug Life city 2.6
Respuesta: [AJUDA] /Veiculo Estacionar Bug -
RedBulL_x - 03.07.2011
Cara jб tive esse problema com o Thug eu Modifiquei uma linha sу.
Excluir essa linha
Код:
if(strcmp(tmp, "estacionar", true) == 0)
E Colocar essa .
Код:
if(strcmp(cmdtext, "/estacionar", true) == 0)
Re: [AJUDA] /Veiculo Estacionar Bug -
Pedro_Teixeira - 03.07.2011
Nгo funcionou,
quando vou na hora de usar o /veiculo estacionar diz Server Unknown Command
Re: [AJUDA] /Veiculo Estacionar Bug -
Ricop522 - 03.07.2011
if(strcmp(x_nr, "estacionar", true) == 0)
Re: [AJUDA] /Veiculo Estacionar Bug -
Pedro_Teixeira - 03.07.2011
Cara Aconteceu isso ai
Код:
C:\Users\Luнs Teixeira\Desktop\NGRPG\W_NorthGames RPG V0.1\gamemodes\NGRPGv0.1.pwn(25532) : error 017: undefined symbol "x_nr"
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
1 Error.
Re: [AJUDA] /Veiculo Estacionar Bug -
Nake01 - 03.07.2011
Tente.
Код:
if(strcmp(x_nr, "estacionar", true) == 0)
{
new x_nr[256];
new Float:x,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, "Tu nгo tens 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~ Tu estacionaste o teu Veiculo aqui. ~n~");
GameTextForPlayer(playerid, "Agora o teu Veiculo ira fazer spawn aqui.", 10000, 3);
DestroyVehicle(carid);
CreateVehicle(CarInfo[carid][cModel],CarInfo[carid][cLocationx],CarInfo[carid][cLocationy],CarInfo[carid][cLocationz]+1.0,CarInfo[carid][cAngle],CarInfo[carid][cColorOne],CarInfo[carid][cColorTwo],60000);
TogglePlayerControllable(playerid, 1);
SaveCars();
return 1;
}
return 1;
}
Espero ter ajudado
Re: [AJUDA] /Veiculo Estacionar Bug -
Pedro_Teixeira - 03.07.2011
Cara aconteceu isso ai
Код:
C:\Users\Luнs Teixeira\Desktop\NGRPG\W_NorthGames RPG V0.1\gamemodes\NGRPGv0.1.pwn(25532) : error 017: undefined symbol "x_nr"
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
1 Error.
Re: [AJUDA] /Veiculo Estacionar Bug -
Sr.Pekeno - 03.07.2011
Acho que o Erro estб no
x_nr > if(strcmp(x_nr, "estacionar", true) == 0)
Tente isso if(strcmp "estacionar", true) == 0)[/B]
Re: [AJUDA] /Veiculo Estacionar Bug -
Pedro_Teixeira - 03.07.2011
Cara aconteceu isso ai
Код:
C:\Users\Luнs Teixeira\Desktop\NGRPG\W_NorthGames RPG V0.1\gamemodes\NGRPGv0.1.pwn(25532) : error 017: undefined symbol "x_nr"
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
1 Error.
Re: [AJUDA] /Veiculo Estacionar Bug -
Sr.Pekeno - 03.07.2011
Arrumou??