DayZ 1.29
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 строка 918

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

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