;set from the CK property editorcell property Destination auto;set (currently) from the CK property editor but would prefer to do it in the scriptfaction factPlayer property auto;elsewhere in the scriptif (Destination.GetFactionOwner() == factPlayer) ;do stuff hereendifIs it possible to get at the PlayerFaction without having to set it in a property in the Property Editor?
What I'm after is something like this
cell property Destination autofaction factPlayer property auto hiddenfactPlayer = (what goes here?)if (Destination.GetFactionOwner() == factPlayer) ;do stuff hereendif
Does it even need to be a Property or would a variable suffice? Or even better, inline code to get the PlayerFaction and dispense with the need for a property/variable altogether?