It's probably a 'fussy Mac' thing. It works fine for me on Linux...no excuse of course as it should work well on everything.
Each equipment item should have a comma after the last bracket, except (I think) the last on in the list which is why I suggested you delete it. The others should be there.
I have just spotted a semi-colon that may be wrong as well
Let's try replacing the whole thing. Can you copy and paste this into the equipment.plist - delete all the original code and insert this
Code: Select all
(
(
0,
400,
"Refill external fuel tank",
"EQ_LQG_CHARGE",
"Liquified Quirium Gas refill for external fuel tanks (for Python and Boa Clipper models).",
{
"available_to_all" = yes;
"requires_equipment" = "EQ_LQG_TANK_EMPTY";
"visible" = no; // not listed on the F5F5 screen.
}
),
(
9,
5000,
"External Fuel Tanks - Full",
"EQ_LQG_TANK",
"Cost-price upgrade to fit external fuel tanks for existing Boa Clipper players.",
{
"available_to_all" = no;
"incompatible_with_equipment" =
(
"EQ_LQG_TANK_EMPTY",
"EQ_LQG_TANK_DAMAGED"
);
"script_info" = {
canBeDamaged = "no";
}
script = "clipper_LQG_script.js"
}
),
(
99,
5000,
"External Fuel Tanks - Empty",
"EQ_LQG_TANK_EMPTY",
"External fuel tank.",
{
"available_to_all" = yes;
}
)
)
Let me know if that's working, and perhaps if anyone else spots any errors, please let me know as well.