DayZ 1.27
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 строка 914

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

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