Page 1 of 1
How to localize an era name? [Solved]
Posted: Sat Jan 27, 2018 9:02 pm
by noctisspector
I have a new era and it defaults to "BFX". I have looked at the localize edit and I cant find anything that changes it. Please help!
Re: How to localize an era name?
Posted: Sat Jan 27, 2018 11:24 pm
by SkinnyODST
Add the bolded and underlined lines into your addme LUA (data_ABC/addme)
sp_missionselect_listbox_contents[sp_n+1] = {
isModLevel = 1,
mapluafile = "ABC%s_%s",
era_c = 1,
mode_con_c = 1,
change = {
era_c = { name="Add custom name here" },
Note: I kinda rearranged my addme lua so the layout may be different to yours, but it`s still got the same stuff in it
Note 2: Change "ABC" to your 3 letter map name
Note 3: "Era c" = Clone Wars
Re: How to localize an era name?
Posted: Sun Jan 28, 2018 11:12 am
by noctisspector
Thank you!