port weapon select

This commit is contained in:
commy2
2015-01-17 18:26:51 +01:00
parent e216a33574
commit 7a6d0eefe3
46 changed files with 923 additions and 1008 deletions

View File

@ -99,16 +99,16 @@ class ACE_Parameters_Boolean {
};
class ACE_canInteractConditions {
class ACE_Interaction_isNotEscorting {
class GVAR(isNotEscorting) {
condition = QUOTE( !(_player getVariable ['ACE_isEscorting', false]) );
};
class ACE_Interaction_isNotCaptive {
class GVAR(isNotCaptive) {
condition = QUOTE( !(_player getVariable ['ACE_isCaptive', false]) );
};
class ACE_Interaction_isNotSurrendering {
class GVAR(isNotSurrendering) {
condition = QUOTE( !(_player getVariable ['ACE_isSurrender', false]) );
};
class ACE_Interaction_isNotSwimming {
class GVAR(isNotSwimming) {
condition = QUOTE( !underwater _player );
};
};