12345678910111213141516171819202122232425262728293031323334 |
- class ACE_SelfActions: ACE_SelfActions {
- class RD501_Style_Changer {
- displayName = "Change Style";
- exceptions[]=
- {
- "isNotInside",
- "isNotSwimming",
- "isNotSitting"
- };
- condition = "!(isNull objectParent player) && (driver (vehicle player)==player)";
- showDisabled = 0;
- priority = 2;
- class RD501_NoseArt_None {
- displayName = "None";
- exceptions[]=
- {
- "isNotInside",
- "isNotSwimming",
- "isNotSitting"
- };
- condition = "!(isNull objectParent player)";
- statement = "_target setObjectTextureGlobal [0,'RD501_Laat\textures\laat\LaatFirstOrder\LaatBodyFirstOrder.paa']";
- showDisabled = 0;
- runOnHover = 1;
- priority = 2.5;
- };
- class RD501_Style_Phantasma : RD501_NoseArt_None {
- displayName = "Phasma";
- statement = "_target setObjectTextureGlobal [0, 'RD501_Laat\textures\laat\LaatFirstOrder\LaatBodyFirstOrder_phasma.paa']";
- };
- }
- }
|