Bug no /v faзo veiculo e o outro some -
MineiroH - 16.05.2014
oi pessoal, d boua? ja cansei de procurar mas nao achei nada que ajudasse
seguinte, eu esto usando aquele fs que vem com o samp "vspawner" so que toda vez que crio um veiculo , o carro do outro play some.
Como eu faзo pra
>NAO< sumir o carro deles quando eu criar o meu?
Meu CMD й:
if(strcmp("/v", cmd, true) == 0)
{
for(new i = 0; i < MAX_PLAYERS; i ++)
{
if(carrocriado[i] != 0) DestroyVehicle(carrocriado[i]);
}
// If there was a previously created selection menu, destroy it
DestroySelectionMenu(playerid);
SetPVarInt(playerid, "vspawner_active", 1);
//SetPVarInt(playerid, "vspawner_page", 0); // will reset the page back to the first
CreateSelectionMenu(playerid);
SelectTextDraw(playerid, 0xACCBF1FF);
return 1;
}
}
Eu ja tentei tirar o loop e usar playerid, mas mesmo assim da o mesmo problema alguem ajuda pf ? vale rep!!
Re: Bug no /v faзo veiculo e o outro some -
Cleyson - 16.05.2014
PHP код:
if(strcmp("/v", cmd, true) == 0)
{
// If there was a previously created selection menu, destroy it
DestroySelectionMenu(playerid);
SetPVarInt(playerid, "vspawner_active", 1);
//SetPVarInt(playerid, "vspawner_page", 0); // will reset the page back to the first
CreateSelectionMenu(playerid);
SelectTextDraw(playerid, 0xACCBF1FF);
return 1;
}
Re: Bug no /v faзo veiculo e o outro some -
MineiroH - 16.05.2014
mas se eu deixar do geito que voce falou ai, os carros nao somem ai enche de carro no server. eu quero um que deleta o veiculo anterior que eu tenha criado entendeu?
Re: Bug no /v faзo veiculo e o outro some -
driftpower - 16.05.2014
Quote:
Originally Posted by MineiroH
mas se eu deixar do geito que voce falou ai, os carros nao somem ai enche de carro no server. eu quero um que deleta o veiculo anterior que eu tenha criado entendeu?
|
Tive o mesmo bug mas nгo era com seleзгo, apenas tipo /car nome cor1 cor2
Nunca descobri porquк...
jб tentou com o [MAX_PLAYERS] ? tipo cara[playerid] = createvehicle.. etc depois destroyvehicle(cara[playerid]);
Re: Bug no /v faзo veiculo e o outro some -
Cleyson - 16.05.2014
Entгo esta certo o seu comando, mais tenta assim
PHP код:
if(strcmp("/v", cmd, true) == 0)
{
for(new i = 0; i < MAX_PLAYERS; i ++)
{
if(carrocriado[i] == 1) DestroyVehicle(carrocriado[i]);
}
// If there was a previously created selection menu, destroy it
DestroySelectionMenu(playerid);
SetPVarInt(playerid, "vspawner_active", 1);
//SetPVarInt(playerid, "vspawner_page", 0); // will reset the page back to the first
CreateSelectionMenu(playerid);
SelectTextDraw(playerid, 0xACCBF1FF);
return 1;
}
Re: Bug no /v faзo veiculo e o outro some -
MineiroH - 17.05.2014
entao, esta certo mas esse comando ai ta deletando o meu carro anterior e o carro que outros plays criam