Yes you can. its called player tools. You would write something like this or add this to your onmodenter event script:
#include "x2_inc_itemprop"
void main()
{
object oPC = GetEnteringObject();
object oSkin = GetItemInSlot (INVENTORY_SLOT_CARMOUR, oPC);
itemproperty ipSkin = ItemPropertyBonusFeat (IP_CONST_FEAT_PLAYER_TOOL_01);
IPSafeAddItemProperty(oSkin, ipSkin, 0.0f, X2_IP_ADDPROP_POLICY_KEEP_EXISTING, FALSE, FALSE);
}
Then there is a script called x3_pl_tool01 that you would modify to do what ever it was you wanted the players to do. I believe there are a total of 9 or 10 of these player tools you can use.