DayZ Dance Hacks + Instructions
https://www.youtube.com/watch?v=Tsp-e...layer_embedded
The animations are included by default with ArmA 2:
Code:
ActsPercMstpSnonWnonDnon_DancingDuoIvan
ActsPercMstpSnonWnonDnon_DancingDuoStefan
ActsPercMstpSnonWnonDnon_DancingStefan
To make yourself dance:
Code:
player playMoveNow "ActsPercMstpSnonWnonDnon_DancingDuoIvan"
To make all players dance:
Code:
{
[nil,_x,rSwitchMove, "ActsPercMstpSnonWnonDnon_DancingDuoIvan"] call RE;
} foreach playableUnits;
To make everyone including zombies dance:
Code:
{
[nil,_x,rSwitchMove, "ActsPercMstpSnonWnonDnon_DancingDuoIvan"] call RE;
} foreach allUnits;