Other > Survival Guides / Game Help

Game mechanic

<< < (2/6) > >>

farnak:
What multipliers we have for critical with armor-piercing and critical with armor-bypassing?

Crazy:
Critical tables are unknow of the players, but you can still make tests if you want ;p

farnak:
Hell with full table, I wonna know only critical multipliers

farnak:
Devs, if it so secret - close the topic.

cubik2k:

--- Code: ---if armor bypassed critical, and the damage type is not emp:
 dt = armor_dt/5; dr = armor_dr/5 + dr_mod // finesse is skipped in this case
if not armor bypassed critical or armor bypassed with emp, but armor piercing or weapon penetrate perk:
 dt = armor_dt/5; dr = armor_dr + dr_mod + finesse_mod
if none of above:
 dt = armor_dt; dr = armor_dr + dr_mod + finesse_mod

--- End code ---

after 30/08/2010 update probably it should be like this:


--- Code: ---if armor bypassed critical, and the damage type is not emp:
 dt = armor_dt/5; dr = armor_dr/5 + dr_mod // finesse is skipped in this case

if not armor bypassed critical or armor bypassed with emp, but
  if armor piercing:
    dt = armor_dt/3; dr = armor_dr + dr_mod + finesse_mod
  else
    if weapon penetrate perk:
      dt = armor_dt/5; dr = armor_dr + dr_mod + finesse_mod

if none of above:
 dt = armor_dt; dr = armor_dr + dr_mod + finesse_mod

--- End code ---

Navigation

[0] Message Index

[#] Next page

[*] Previous page

Go to full version