Map Editor And Other Q.

Users who are viewing this thread

SwadianGrunt

Veteran
1. What is the Standard Map editor for Warband? couldn't find it anywhere.

2.How would I go About Deleting Horse Merchant Button on the Town Menu making a no horse mod. (Buy>WEAPONS, ARMOR, HORSE, GOODS).
 
1.  For the mapping stuff... meh, there are not one but two map editors listed in the tools.  You didn't look very hard.  Thorgrim's works with Warband.  Scene editing is done in the engine.

2.  Horse merchant button is defined in module_game_menus, "town_trade".  Just comment out the section dealing with the horse merchant, like so:

Code:
      #("trade_with_horse_merchant",[(party_slot_ge, "$current_town", slot_town_horse_merchant, 1)],
       #"Trade with the horse merchant.",
       #[
           #(party_get_slot, ":merchant_troop", "$current_town", slot_town_horse_merchant),
           #(call_script, "script_rearrange_inventory","trp_player",1),
           #(change_screen_trade, ":merchant_troop"),
        #]),
Voila, no more horse merchant.

 
This is what my code looks like...
Code:
menu_town_trade 0 You_head_towards_the_marketplace. none 0 6
 mno_assess_prices  3 2204 2 1224979098644774912 144115188075856213 2190 3 1224979098644774913 1224979098644774912 432345564227567630 30 2 1224979098644774913 0  Assess_the_local_prices.  1 2060 1 864691128455135368  .  mno_trade_with_arms_merchant  1 561 3 144115188075856213 21 1  Trade_with_the_arms_merchant.  2 521 3 1224979098644774912 144115188075856213 21 2042 1 1224979098644774912  .  mno_trade_with_armor_merchant  1 561 3 144115188075856213 22 1  Trade_with_the_armor_merchant.  2 521 3 1224979098644774912 144115188075856213 22 2042 1 1224979098644774912  .  mno_trade_with_horse_merchant  1 561 3 144115188075856213 24 1  Trade_with_the_horse_merchant.  2 521 3 1224979098644774912 144115188075856213 24 2042 1 1224979098644774912  .  mno_trade_with_goods_merchant  1 561 3 144115188075856213 23 1  Trade_with_the_goods_merchant.  2 521 3 1224979098644774912 144115188075856213 23 2042 1 1224979098644774912  .  mno_back_to_town_menu  0  Head_back.  1 2060 1 864691128455135340  .
Warband- v1.131, Menus.txt
 
Back
Top Bottom