
My trouble is, I'm used to the sort of game that has a million levels of security and copyright. I don't suppose I'll sleep much in the next few days/months/years/ever with all these new possibilities

Moderators: winston, another_commander
Ha, no. You have come over to the Dark Side and been seduced by OXPs. Your life will never be the same again - you are doomed I fear.HAL wrote:My trouble is, I'm used to the sort of game that has a million levels of security and copyright. I don't suppose I'll sleep much in the next few days/months/years/ever with all these new possibilities
That may be true, but I hear the cookies are goodSmivs wrote:Ha, no. You have come over to the Dark Side and been seduced by OXPs. Your life will never be the same again - you are doomed I fear.HAL wrote:My trouble is, I'm used to the sort of game that has a million levels of security and copyright. I don't suppose I'll sleep much in the next few days/months/years/ever with all these new possibilities
Code: Select all
15:05:35.795 [plist.parse.failed]: Failed to parse /Users/.../Documents/Oolite 1.77/AddOns/gilgalad_0_0_1.oxp/Config/shipyard.plist as a property list.
Unexpected character " at line 2
15:05:35.941 [plist.parse.failed]: Failed to parse /Users/.../Documents/Oolite 1.77/AddOns/gilgalad_0_0_1.oxp/Config/demoships.plist as a property list.
Unexpected character ( at line 1
Code: Select all
(
"gilgalad21213"
"gilgalad21213-player"
)
Code: Select all
"gilgalad21213-player" =
{
chance = 1;
"optional_equipment" =
(
"EQ_ECM",
"EQ_FUEL_SCOOPS",
"EQ_ESCAPE_POD",
"EQ_ENERGY_BOMB",
"EQ_ENERGY_UNIT",
"EQ_NAVAL_ENERGY_UNIT",
"EQ_DOCK_COMP",
"EQ_WEAPON_PULSE_LASER",
"EQ_WEAPON_BEAM_LASER",
"EQ_WEAPON_MINING_LASER",
"EQ_WEAPON_MILITARY_LASER",
"EQ_FUEL_INJECTION",
"EQ_SCANNER_SHOW_MISSILE_TARGET",
"EQ_MULTI_TARGET",
"EQ_GAL_DRIVE",
"EQ_SHIELD_BOOSTER"
"EQ_NAVAL_SHIELD_BOOSTER"
);
price = 650;
"standard_equipment" =
{
extras =
(
"EQ_HEAT_SHIELD"
);
"forward_weapon_type" = "EQ_WEAPON_PULSE_LASER";
missiles = 1;
};
techlevel = 1;
"weapon_facings" = 1;
};
You need a comma after the first entry in it, to separate the entries (though, unless the NPC and player versions are very visually distinct, you probably only need to put one of them into the demoships list anyway)HAL wrote:demoships.plist looks like this:
You deleted a little too much: the original list has aHAL wrote:and shipyard.plist looks like this:
{
at the start and a }
at the end enclosing all the entries within the list. If you put those back it should work.Code: Select all
"EQ_SHIELD_BOOSTER"
"EQ_NAVAL_SHIELD_BOOSTER"
Code: Select all
{
"gilgalad21213-player" =
{
chance = 1;
"optional_equipment" =
(
"EQ_ECM",
"EQ_FUEL_SCOOPS",
"EQ_ESCAPE_POD",
"EQ_ENERGY_BOMB",
"EQ_ENERGY_UNIT",
"EQ_NAVAL_ENERGY_UNIT",
"EQ_DOCK_COMP",
"EQ_WEAPON_PULSE_LASER",
"EQ_WEAPON_BEAM_LASER",
"EQ_WEAPON_MINING_LASER",
"EQ_WEAPON_MILITARY_LASER",
"EQ_FUEL_INJECTION",
"EQ_SCANNER_SHOW_MISSILE_TARGET",
"EQ_MULTI_TARGET",
"EQ_GAL_DRIVE",
"EQ_SHIELD_BOOSTER",
"EQ_NAVAL_SHIELD_BOOSTER"
);
price = 650;
"standard_equipment" =
{
extras =
(
"EQ_HEAT_SHIELD"
);
"forward_weapon_type" = "EQ_WEAPON_PULSE_LASER";
missiles = 1;
};
techlevel = 1;
"weapon_facings" = 1;
};
};
Should it start with something else? It seems to be right, compared with another OXP's shipyard.plist, but PlistEditPro won't save it.It also didn't start with: xxx =