DayZ 1.28
DayZ Explorer by KGB
 
Загрузка...
Поиск...
Не найдено

◆ DetermineFinisherAmmo()

string DetermineFinisherAmmo ( int finisher_type)
protected

Picks a specific finisher ammo fot the hit type. This gets synchronized and guides further behaviour of the target.

См. определение в файле DayZPlayerMeleeFightLogic_LightHeavy.c строка 920

921 {
922 string ret = "";
923
924 switch (finisher_type)
925 {
926 case EMeleeHitType.FINISHER_NECKSTAB:
927 ret = "FinisherHitNeck";
928 break;
929
930 default:
931 ret = "FinisherHit";
932 break;
933 }
934
935 return ret;
936 }
EMeleeHitType
Определения DayZPlayerImplementMeleeCombat.c:2

Используется в EvaluateFinisherAttack().