21.03.2017, 14:55
PHP код:
function LoadVehicle(fileid, name[], value[])
{
INI_Int("KeyID",VehicleInfo[fileid][vKeyID]);
INI_Int("HasKey",VehicleInfo[fileid][vHasKey]);
INI_Int("Model",VehicleInfo[fileid][vModel]);
INI_Int("Fuel",VehicleInfo[fileid][vFuel]);
INI_Int("UsingFuel",VehicleInfo[fileid][vUsingFuel]);
INI_Int("Oil",VehicleInfo[fileid][vOil]);
INI_Int("CanRun",VehicleInfo[fileid][vCanRun]);
INI_Int("Insured",VehicleInfo[fileid][vInsured]);
INI_Float("X",VehicleInfo[fileid][vX]);
INI_Float("Y",VehicleInfo[fileid][vY]);
INI_Float("Z",VehicleInfo[fileid][vZ]);
INI_Float("A",VehicleInfo[fileid][vA]);
INI_Int("Color1",VehicleInfo[fileid][vColor1]);
INI_Int("Color2",VehicleInfo[fileid][vColor2]);
INI_Int("Faction",VehicleInfo[fileid][vFaction]);
INI_String("Owner",VehicleInfo[fileid][vOwner], MAX_PLAYER_NAME);
INI_Int("PrevOwners",VehicleInfo[fileid][vPrevOwners]);
INI_String("RegDate",VehicleInfo[fileid][vRegdate], 30);
INI_Int("Cash",VehicleInfo[fileid][vCash]);
INI_Int("Weapon",VehicleInfo[fileid][vWeapon]);
INI_Int("Pot",VehicleInfo[fileid][vPot]);
INI_Int("Crack",VehicleInfo[fileid][vCrack]);
return 1;
}