RwC
December 31, 2022, 1:24am
1
Bullrush cannot be cancel by block(holding right click) liek Preacher Chastise The Wicked.
Gridie
December 31, 2022, 1:28am
2
It can by using the ability again
RwC
December 31, 2022, 8:39am
3
You can’t. You should only be able to cancel zealot/ogryn ability by holding block or holding S, but ogryn doesn’t work with block. Most likely because his weapon slot is disabled.
end
if self._moving_backwards and input_extension:get("move").y >= -0.1 then
self._moving_backwards = false
end
local move_back_cancel_valid = not self._moving_backwards
local move_back_cancel_time_threshold = lunge_template and lunge_template.move_back_cancel_time_threshold or 0
local move_back_cancel = lunge_template and lunge_template.move_back_cancel and move_back_cancel_valid and input_extension:get("move").y < -0.1 and move_back_cancel_time_threshold < time_in_lunge
if move_back_cancel then
return "walking"
end
if max_mass_hit then
return "walking"
end
if not still_lunging then
local weapon_template = WeaponTemplate.current_weapon_template(weapon_action_component)
local wants_sprint = Sprint.check(t, unit, self._movement_state_component, self._sprint_character_state_component, input_extension, self._locomotion_component, weapon_action_component, self._combat_ability_action_component, self._alternate_fire_component, weapon_template, self._constants)
1 Like
Gridie
December 31, 2022, 12:20pm
5
Weird, i do it all the time by using the Ability button “F” for me again. Don’t know about the block thing.
Seph
December 31, 2022, 7:22pm
6
Yup, had this problem initially, too. Turns out, you need to be holding backward (S) for it to stop mid-charge. Coming from playing Footknight in V2, I woulda never figured this out until a dev straight up told me in a bug fix post.