Cant get followers camp

Users who are viewing this thread

I have done the following and yet I still can't get the followers camp option.
1. Maintained over the 300 units in party (excluding wounded units)
2.  not rested in a city or fort
3. on campaign.
4. had excellent morale
I feel like I have done all the requirements,is there anything else i am missing? If not is there a way to trigger it in the scripts?
 
IF you are talking about VANILLA VC (not a mod) you can can search and post questions on this thread https://forums.taleworlds.com/index.php/topic,339108.0.html

for followers you need: wait 1-48 hours on world map (you can use ctrl+space); 300+ troops.

if you lose soldiers later (<=290) they will disband. You can recruit them later again.

Code:
  (48,
    [ (map_free), #en mapa
      (eq,"$followers_on",0), #off
      (party_get_num_companion_stacks, ":num_stacks","p_main_party"),
      (assign, ":num_men", 0),
      (try_for_range, ":i_stack", 0, ":num_stacks"),
        (party_stack_get_size, ":stack_size","p_main_party",":i_stack"),
        (val_add, ":num_men", ":stack_size"),
      (try_end),
      (try_begin),
        (ge, ":num_men", 300), #300 men or more need.
        (jump_to_menu, "mnu_followers_camp_begin"),
      (try_end),
  ]),

IF you are using a mod then post on the mod thread (as rules can change with a mod)
 
Im wondering since im hardly ever fielding 300+ troops as it slows you way down so i prefer smaller party size, can the number of troops required for the followers camp to join you be altered??
 
Back
Top Bottom