09.12.2012, 13:34
Estou com um problema, a reduзгo da gasolina nem a remoзгo do player nгo estб acotencendo.
Alguem poderia me ajudar?
Alguem poderia me ajudar?
pawn Код:
public CombustivelVeiculos()
{
for(new i = 0; i < MAX_VEHICLES; i++)
{
new mFile[32] , iState = GetPlayerVehicleSeat(i);
format(mFile, sizeof(mFile), PASTA_CONTAS, GetName(i));
vidc = GetPlayerVehicleID(i);
modeloc = GetVehicleModel(vidc);
if(!(modeloc == 509 || modeloc == 510 || modeloc == 481))
{
GetPlayerState(i);
if(IsPlayerInAnyVehicle(i)) continue;
if(iState == 0) return Gasolina[i]--;//DOF2_SetInt(mFile, "Gasolina", DOF2_GetInt(mFile, "Gasolina") - 1);
if(Gasolina[i] < 2)
{
SendClientMessage(i, Vermelho, "( Info ) O Seu Tanque de Combustнvel estб vazio, vб atй o posto mais prуximo para re-abastecer seu veнculo.");
RemovePlayerFromVehicle(i);
}
}
}
return 1;
}