Installer Steam
log på
|
sprog
简体中文 (forenklet kinesisk)
繁體中文 (traditionelt kinesisk)
日本語 (japansk)
한국어 (koreansk)
ไทย (thai)
Български (bulgarsk)
Čeština (tjekkisk)
Deutsch (tysk)
English (engelsk)
Español – España (spansk – Spanien)
Español – Latinoamérica (spansk – Latinamerika)
Ελληνικά (græsk)
Français (fransk)
Italiano (italiensk)
Bahasa indonesia (indonesisk)
Magyar (ungarsk)
Nederlands (hollandsk)
Norsk
Polski (polsk)
Português (portugisisk – Portugal)
Português – Brasil (portugisisk – Brasilien)
Română (rumænsk)
Русский (russisk)
Suomi (finsk)
Svenska (svensk)
Türkçe (tyrkisk)
Tiếng Việt (Vietnamesisk)
Українська (ukrainsk)
Rapporter et oversættelsesproblem








I find the description quite misleading for the option "Point Blank Minimum Bonus Damage Multiplier"
Let's say I set the minimun damage to 0.4 (meaning if i deal 100 dmg to a zombie I will only deal 40). Then, the second setting with no explanation would be multiplied again for this value. Then let's say i set the multiplier to 0.5
Does this mean my damage now would be 40 x 0.5?
Could you please explain both settings when Instakill is disabled?
then, if that damage is less than PointBlankMinimumBonusDamage, it will set that damage to the minimum you've configured in the settings.
finally, it will multiply that damage by your bonus damage multiplier.
here is the full script below
function HF_PointBlank.CalculatePointBlankWeaponDamage(_damage)
if _damage == nil then
local weaponObj = HF_PointBlank.GetPlayerWeapon()
if weaponObj ~= nil and weaponObj:getScriptItem() ~= nil then
_damage = weaponObj:getScriptItem():getMaxDamage()
end
_damage = _damage or .2
end
local prePbValue = _damage
if _damage < HF_PointBlank.SETTINGS.PointBlankMinimumBonusDamage then
_damage = HF_PointBlank.SETTINGS.PointBlankMinimumBonusDamage
end
_damage = HF_PointBlank.SETTINGS.PointBlankBonusDamageMultiplier * _damage;
HF_PointBlank.printLogMsg("CalculatePointBlankWeaponDamage (" .. prePbValue .. ") ==> " .. _damage);
return _damage
end