dont work on players that dont have the DLC .
Not working anymore
got a fix for you . just DM me
Located on the line 78
replace this:
foreach (var gesture in player.gestureList.AllGestures)
for this:
for this:
foreach (var gesture in GestureCollection.Instance.AllGestures)
Merged post
or here is other way to get it to work
GestureConfig toPlay = GestureCollection.Instance.IdToGesture(478760625);
pl.ClientRPC(RpcTarget.NetworkGroup("Client_StartGesture"), toPlay.gestureId);
pl.currentGesture = toPlay;