0 Members and 1 Guest are viewing this topic.
When using a 2h weapon from horseback (example: longsword, katana) without a shield, is there a penalty to the speed or damage?Sorry, not much experience with 2h weapons...
if (weapon_type == 'two_handed' or weapon_type == 'polearm') and (has_shield or mounted): raw_damage *= 0.85 if weapon_type == 'polearm': raw_damage *= 0.85 if weapon_flags & itp_two_handed: raw_damage *= 0.9
Code: [Select] if (weapon_type == 'two_handed' or weapon_type == 'polearm') and (has_shield or mounted): raw_damage *= 0.85 if weapon_type == 'polearm': raw_damage *= 0.85 if weapon_flags & itp_two_handed: raw_damage *= 0.9That says polearms get a 0.85 twice and twohanders get 0.85 and then 0.9 unless I'm wrong.
Also 2h weapons use 1h animations on horse which makes them slower in my eyes (Excluding the thrust).