If the map is not showing a name in the instant action listing, you might try the addme LUA which is (unsurprisingly) in the addme folder. Open the addme LUA and one of the first lines should be something along the lines of:
Code: Select all
local newEntry = { mapluafile = "MOD1", showstr = "MOD MAP 1", side_c = 1, side_a = 1, dnldable = 1, }
Change the showstr to whatever you want to show in the instant action list.
For example:
Code: Select all
local newEntry = { mapluafile = "MOD1", showstr = "TATOOINE: MIDDLE OF NOWHERE", side_c = 1, side_a = 1, dnldable = 1, }
It's worth a shot for getting the name to show...