Renaming an era
Moderator: Moderators
-
SkinnyODST
- Lieutenant Colonel

- Posts: 545
- Joined: Mon Jul 04, 2016 10:56 pm
- Location: My other account
- Contact:
Renaming an era
Does anyone know how I would rename an era?
-
thelegend
- Sith

- Posts: 1433
- Joined: Thu Jan 23, 2014 6:01 am
- Projects :: Star Wars - Battlefront III Legacy
- xbox live or psn: El_Fabricio#
- Location: Right behind you :)
Re: Renaming an era
From the 1.3 patch documentation(Change an Era's and Game Mode's Name or Icon or Description):
Hidden/Spoiler:
- CT108
- Rebel Sergeant

- Posts: 186
- Joined: Mon Aug 22, 2016 6:20 am
- Projects :: None
- xbox live or psn: Captain CT108
- Location: Xanadu
Re: Renaming an era
[only for the era's name]
Open editlocalize.bat
Go to : Common -> era -> cw (for the Clone Wars) / gcw for the galactic civil war
Rename your era !
Open editlocalize.bat
Go to : Common -> era -> cw (for the Clone Wars) / gcw for the galactic civil war
Rename your era !
-
Stealchief
- Private Recruit
- Posts: 17
- Joined: Fri Nov 11, 2016 8:41 pm
- Projects :: Order 151 The Fall Of Vader
- xbox live or psn: No gamertag set
- Location: Death Star Trash Compactor
Re: Renaming an era
How Can I Remove The GCW Era??
-
Marth8880
- Resistance Leader
- Posts: 5042
- Joined: Tue Feb 09, 2010 8:43 pm
- Projects :: DI2 + Psychosis
- xbox live or psn: Marth8880
- Location: Edinburgh, UK
- Contact:
Re: Renaming an era
@Stealchief: Off-topic: Would you mind not capitalizing the first letter of every word in your sentences? It'll make your posts much more legible. 
Anyway, in this part of your map's addme.lua file (found in data_ABC\addme):
Remove era_g = 1, mode_con_g = 1, and any other references to mode_<modeID>_g (replacing <modeID> with the game mode's ID) so it looks something like this:
Finally, in this part of the addme:
Remove or comment out the lines that reference a mission script pertaining to the GCW era. In that example, the line to remove/comment out would be:
Because of ABCg_con, which you know references the GCW era because of g after the map's code, ABC.
Anyway, in this part of your map's addme.lua file (found in data_ABC\addme):
Code: Select all
sp_missionselect_listbox_contents[sp_n+1] = { isModLevel = 1, mapluafile = "ABC%s_%s", era_g = 1, era_c = 1, mode_con_g = 1, mode_con_c = 1,}Code: Select all
sp_missionselect_listbox_contents[sp_n+1] = { isModLevel = 1, mapluafile = "ABC%s_%s", era_c = 1, mode_con_c = 1,}Code: Select all
AddDownloadableContent("ABC","ABCg_con",4)
AddDownloadableContent("ABC","ABCc_con",4)Code: Select all
AddDownloadableContent("ABC","ABCg_con",4)
Last edited by Marth8880 on Tue Nov 22, 2016 1:34 am, edited 2 times in total.
-
Stealchief
- Private Recruit
- Posts: 17
- Joined: Fri Nov 11, 2016 8:41 pm
- Projects :: Order 151 The Fall Of Vader
- xbox live or psn: No gamertag set
- Location: Death Star Trash Compactor
Re: Renaming an era
Ok thanks!
