Then reversing that if the equipment is damaged.....

I think it can be done the way CSOTB has suggested and I'm trying that route first, if it fails or I get into a blind corner I'll go back to the tiny dummy beacon idea.
Moderators: winston, another_commander
Code: Select all
function ecl_findescapecapsules(entity)
{
return (entity.roles[0] == "ecl_escape_capsule");
}
var targets = system.filteredEntities(this, ecl_findescapecapsules);
entity.roles
is undefined.Code: Select all
function ecl_findescapecapsules(entity)
{
return (entity.hasRole("ecl_escape_capsule"));
}
var targets = system.filteredEntities(this, ecl_findescapecapsules);
entity.hasRole
is not a function.Probably not all found entities are ships. I think planets are also on the entity list. It should be:Capt. Murphy wrote:OK -
can any scripters tell me what's wrong with this?
Code: Select all
return (entity.isShip && entity.roles[0] == "ecl_escape_capsule");
Code: Select all
return ( entity.hasRole && entity.hasRole("ecl_escape_capsule") );
entity.primaryRole == "whatever"
doesn't throw an error in the same construction. (I've just tested it).system.shipsWithPrimaryRole
and system.shipsWithRole
methods which are probably more suited to my purposes.entity.roles[0]
which does throw an error if entity.roles[0]
is undefined. Unless the JS engine is more likely to throw an error for arrays.WithCapt. Murphy wrote:Mmm - I still don't get why that is different from theentity.roles[0]
which does throw an error ifentity.roles[0]
is undefined. Unless the JS engine is more likely to throw an error for arrays.
entity.primaryRole
you only test for a null property. The same would be so when testing for entity.roles
. The problem arrises when testing for entity.roles[0]
because you than request a test for the first member inside a null property.One thought is that the Escape pod locator ought to be restricted to clean pilots only - possibly to the extent of breaking/disappearing should a commander lose their clean legal status. This isn't something you'd want in the hands of pirates or slavers. Not much handwavium needed for pilots disabling the beacons - any high ransom/bounty types could easily prefer to take their chances in a pod than in the hands of pirates or the authorities, and concern about the locator being possessed by such unsavoury types covers other casesCapt. Murphy wrote:There will need to be little handwavium about some NPC pilots disabling/removing their pod's distress beacon to account for other OXP pods with a custom role not being detected by this equipment but overall that is a good thing.
Bit of a shame to miss out on the chance to breathe new life into the Cobra Clipper SAR (one of Murgh's ships I believe), although I suppose going for Moray Medical Boats makes it easier for those trying to keep a consistent Griffyverse.Capt. Murphy wrote:I want to do some more testing before release and also think I'll add in some code to introduce occasional Moray Medical Rescue Ships which inject around the system chasing the custom pods. Don't want to make pod hunting too easy and lucrative for the player.
That ship is by Murgh but could never have worked for Murgh. Murgh used the AI command to search ships by role 'escape-capsule'. But that role search command ignored all 'ships' of type "CARGO' and type 'ROCK'. Effectively it never found a podMakara wrote:Bit of a shame to miss out on the chance to breathe new life into the Cobra Clipper SAR (one of Murgh's ships I believe), although I suppose going for Moray Medical Boats makes it easier for those trying to keep a consistent Griffyverse.
Not my project but I do know one Commander is working on a SAR version of the Chopped Cobra/Cobra S9Makara wrote:Bit of a shame to miss out on the chance to breathe new life into the Cobra Clipper SAR (one of Murgh's ships I believe), although I suppose going for Moray Medical Boats makes it easier for those trying to keep a consistent Griffyverse.
Ok, maybe you'll see what I mean if we go through it step by step:Capt. Murphy wrote:Mmm - I still don't get why that is different from theentity.roles[0]
which does throw an error ifentity.roles[0]
is undefined.
Code: Select all
(entity.roles && entity.roles[0] == "ecl_escape_capsule" )
Code: Select all
( entity.hasRole && entity.hasRole("ecl_escape_capsule") )
A think about this makes me wonder if full-on removal rather than disabling may be the way to go for someone gaining offender status. The in-game justification is simply that a license to use one must be re-applied for after criminality has caused it to be withdrawn (a straight equipment malfunction/damage can be handled as normal) - if they had got a criminal record for slave trading the authorities may think twice (yep, I know that level of detail is not possible, but you get the idea). The pragmatic reason is that it avoids getting it stuck in a loop with the various autorepair stuff around nowCapt. Murphy wrote:The restricting the equipment to clean players makes sense and had crossed my mind. I should be able to script disabling it on the fly for players that do get themselves a record.