Map Icons

Users who are viewing this thread

murkoiid

Recruit
I made an all desert map for a mod im making, how would I change the map icons so towns that were originally not in the desert such as praven to a map icon from the sarranid faction? same for villages and castles
 
Check 'module_parties'. Associate your icon to field 3 of the tuple (icon_your_icon), it's quite simple.
("town_6","Praven",  icon_town|pf_town, no_menu, pt_none, fac_neutral,0,ai_bhvr_hold,0,(-96, 26.4),[], 155),
To know which icon to associate check 'module_map_icons', (icon_town_desert).
Code:
  ("town",mcn_no_shadow,"map_town_a", 0.35,0),
  ("town_steppe",mcn_no_shadow,"map_town_steppe_a", 0.35,0),
  ("town_desert",mcn_no_shadow,"map_town_desert_a", 0.35,0),
Cross your fingers and compile...
 
Back
Top Bottom