("update_volunteer_troops_in_village",
[
(store_script_param, ":center_no", 1),
(party_get_slot, ":player_relation", ":center_no", slot_center_player_relation),
(party_get_slot, ":center_culture", ":center_no", slot_center_culture),
##### Male/Female Nord Recruit Begin
(try_for_range, ":villages", villages_begin,villages_end),
(store_random_in_range, ":random", 1,10),
(assign, ":nord_faction", "fac_kingdom_4"),
(store_faction_of_party, ":faction",":villages"),
(eq, ":faction", ":nord_faction"),
(try_begin),
(ge, ":random", 2),
(assign, ":volunteer_troop", "trp_nord_recruit"),
(party_set_slot, ":villages", slot_center_volunteer_troop_type,":volunteer_troop"),
(else_try),
(lt, ":random", 2),
(assign, ":volunteer_troop", "trp_nord_female_recruit"),
(party_set_slot, ":villages", slot_center_volunteer_troop_type,":volunteer_troop"),
(try_end),
(try_end),
##### Male/Female Nord Recruit End
(faction_get_slot, ":volunteer_troop", ":center_culture", slot_faction_tier_1_troop),
(assign, ":volunteer_troop_tier", 1),
(store_div, ":tier_upgrades", ":player_relation", 10),
(try_for_range, ":unused", 0, ":tier_upgrades"),
(store_random_in_range, ":random_no", 0, 100),
(lt, ":random_no", 10),
(store_random_in_range, ":random_no", 0, 2),
(troop_get_upgrade_troop, ":upgrade_troop_no", ":volunteer_troop", ":random_no"),
(try_begin),
(le, ":upgrade_troop_no", 0),
(troop_get_upgrade_troop, ":upgrade_troop_no", ":volunteer_troop", 0),
(try_end),
(gt, ":upgrade_troop_no", 0),
(val_add, ":volunteer_troop_tier", 1),
(assign, ":volunteer_troop", ":upgrade_troop_no"),
(try_end),