27/06/2021 20:58
(Esta mensagem foi modificada pela última vez a: 27/06/2021 21:07 por LeleziiN.)
Bom conseguir fazer aqui mais estou tendo problemas com a variável na callback
o erro está nessa variável TCombustivel
Código PHP:
public Speed()
{
new S[128];
new string[128];
foreach(new I : Player)//=
{
new vehicleid = GetPlayerVehicleID(I);
if((IsPlayerConnected(I)) && (GetPlayerState(I) == PLAYER_STATE_DRIVER))
{
if((vehicleid != 594) && (vehicleid != 481) && (vehicleid != 509) && (vehicleid != 510))
{
if(TCombustivel[vehicleid][TiposC] == 1)
{
new teste[70];
format(teste,sizeof(teste),ConverterTexto("%d ~g~~h~~h~L"), TCombustivel[vehicleid][TiposC]);
PlayerTextDrawSetString(I, Gasolinalol[I], teste);
PlayerTextDrawShow(I, Gasolinalol[I]);
if(PrintON[I] == 1) PlayerTextDrawHide(I, Gasolinalol[I]);
}
if(TCombustivel[vehicleid][TiposC] > 1)
{
new teste[70];//, string[180];
format(teste,sizeof(teste),ConverterTexto("%02d ~g~~h~~h~L"), TCombustivel[vehicleid][TiposC]);
PlayerTextDrawSetString(I, Gasolinalol[I], teste);
PlayerTextDrawShow(I, Gasolinalol[I]);
SetProgressBarMaxValue(BGasol[I], 100.0);
SetProgressBarValue(BGasol[I], TCombustivel[vehicleid][TiposC]);
UpdateProgressBar(BGasol[I], I);
PlayerTextDrawShow(I, MarcadorG[I]);
PlayerTextDrawShow(I, MarcadorV[I]);
GetVehicleHealth(GetPlayerVehicleID(I), Latariax);
format(string,sizeof(string), "%0.0f%", Latariax/10);
PlayerTextDrawShow(I, Lataria[I]);
PlayerTextDrawSetString(I, Lataria[I], string);
SetProgressBarMaxValue(BVidaC[I], 100.0);
SetProgressBarValue(BVidaC[I], Latariax/10);
UpdateProgressBar(BVidaC[I], I);
if(PrintON[I] == 1) PlayerTextDrawHide(I, Gasolinalol[I]);
}
}
}
}
return 1;
}
o erro está nessa variável TCombustivel