mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
20 lines
541 B
C++
20 lines
541 B
C++
|
|
class CfgMovesBasic {
|
|
class Default;
|
|
};
|
|
|
|
class CfgMovesMaleSdr: CfgMovesBasic {
|
|
class States {
|
|
// fixes hand being stuck at rifle which is on the back
|
|
class AmovPknlMstpSrasWrflDnon_AinvPknlMstpSlayWrflDnon;
|
|
class AinvPknlMstpSlayWnonDnon_medicOther: AmovPknlMstpSrasWrflDnon_AinvPknlMstpSlayWrflDnon {
|
|
weaponIK = 0;
|
|
};
|
|
|
|
// wake me up inside
|
|
class Unconscious: Default {
|
|
InterpolateTo[] = {"DeadState",0.1,"AmovPpneMstpSnonWnonDnon",0.2};
|
|
};
|
|
};
|
|
};
|