Mount & Blade: Warband

Mount & Blade: Warband

Calradia in Endgame
borch retired  [developer] 1 Apr, 2019 @ 12:56am
Version 1.7 alpha released yet!
New features:
~Hire Innocents from Nowhere soldiers as mercenaries
~!!! Decapitation
~Shield taunt
~Sprint (during battle hold left ALT)
~Custom troops improved. Check dialog window when custom troop will reach 55 level
~From the Camp menu you can change Endgame options (call Ancient Warriors, or Call Innocents)
~~~~~~~~
some bug fix, and something there I also forgot...
< >
Showing 1-6 of 6 comments
Malvishas 3 Apr, 2019 @ 3:54am 
How dop i access my cutom troops? or do i have to start a new game?
Weastward 3 Apr, 2019 @ 10:28am 
How do Shield Taunt and Sprint work? Don't seem to be able to use either
borch retired  [developer] 3 Apr, 2019 @ 10:51am 
Sprint works in battles, hold left alt
borch retired  [developer] 3 Apr, 2019 @ 11:08am 
Look at our code.
sprinting_begin = (
1, 0, 10,
[
(eq, "$sprinting", 0),
(neg|main_hero_fallen),
(key_is_down, key_left_alt),
(this_or_next|game_key_is_down, gk_move_forward),
(this_or_next|game_key_is_down, gk_move_backward),
(this_or_next|game_key_is_down, gk_move_left),
(game_key_is_down, gk_move_right),
],
[
(assign, "$sprinting", 1),
(get_player_agent_no, ":player"),
(agent_set_speed_modifier, ":player", 190),
(display_message, "@Sprinting begins"),

])

sprinting_end = (
1, 5, 0, [(eq, "$sprinting", 1),],
[
(get_player_agent_no, ":player"),
(agent_set_speed_modifier, ":player", 100),
(assign, "$sprinting", 0),
(display_message, "@Sprinting ends"),

])
borch retired  [developer] 3 Apr, 2019 @ 11:08am 
I've implemented this, and tested. It works for me btw I'll check this one more time.
Weastward 8 Apr, 2019 @ 10:16am 
Doesn't work for me, oddly- neither do loot menus or duels with party members, currently
< >
Showing 1-6 of 6 comments
Per page: 1530 50