Chamberlain Equipment

Users who are viewing this thread

Yeang Yeah

Banned
How do I change the Chamberlain, the Constable and the Chancellor's equipment? It doesn't work through TweakMB for some reason.
 
Yeang Yeah said:
How do I change the Chamberlain, the Constable and the Chancellor's equipment? It doesn't work through TweakMB for some reason.

EDIT
found the portion of module_scripts that handles the advisers:


Code:
 ("dplmc_appoint_chamberlain",
  [
   (troop_set_auto_equip, "trp_dplmc_chamberlain", 0),
	 (troop_set_inventory_slot, "trp_dplmc_chamberlain", ek_body, "itm_tabard"),
	 (troop_set_inventory_slot, "trp_dplmc_chamberlain", ek_foot, "itm_leather_boots"),
   (assign, "$g_player_chamberlain", "trp_dplmc_chamberlain"),
  ]),

  ("dplmc_appoint_chancellor",
  [
	 (troop_set_inventory_slot, "trp_dplmc_chancellor", ek_body, "itm_nobleman_outfit"),
	 (troop_set_inventory_slot, "trp_dplmc_chancellor", ek_foot, "itm_leather_boots"),
   (assign, "$g_player_chancellor", "trp_dplmc_chancellor"),
  ]),

  ("dplmc_appoint_constable",
  [
	 (troop_set_inventory_slot, "trp_dplmc_constable", ek_body, "itm_dplmc_coat_of_plates_red_constable"),
	 (troop_set_inventory_slot, "trp_dplmc_constable", ek_foot, "itm_leather_boots"),
   (assign, "$g_player_constable", "trp_dplmc_constable"),
  ]),
 
Back
Top Bottom